/*! HTML5 Boilerplate v8.0.0 | MIT License | https://html5boilerplate.com/ */

/* main.css 3.0.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html {
  color: whitesmoke;
  background-color: #191919;
  font-size: 1em;
  line-height: 1.4;
  font-family: 'Special Elite', cursive;
  scroll-behavior: smooth;
  transition: background-color 1.3s ease;
  -webkit-scroll-snap-type: y mandatory;
  -ms-scroll-snap-type: y mandatory;
  scroll-snap-type: y mandatory;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
  background: #A91B29;
  color:whitesmoke;
  text-shadow: none;
}

::selection {
  background: #A91B29;
  color:whitesmoke;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
  resize: vertical;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */
#logo { 
  font-size: 88px;
  border-bottom: solid 1px #191919;
  padding: 1.5rem 1rem 0.5rem 1rem;
  line-height: 1;
  color: #191919;
  transition: 150ms ease-in-out;
}
#logo.small { 
  font-size: 44px;
}
#logo.big { 
  font-size: 88px;
}
@media (max-width: 640px){
  #logo.small { 
    font-size: 33px;
    padding: 1rem 1rem 0.5rem 1rem;
  }
  #logo.big { 
    font-size: 44px;
    padding: 1rem 1rem 0.5rem 1rem;
  }
}
#fotos {
  max-width: 80%;
  margin: auto;
  padding-top: 200px;
  scroll-snap-align: start;
}
@media (max-width: 640px){
  #fotos {
    max-width: 90%;
    padding-top: 140px;
  }
}
.photo {
  background-color: aqua;
  border-radius: 4px;
  overflow: hidden;
}
.photo img {
  object-fit: contain;
  max-width: 100%;
}
#musica {
  text-align: center;
  scroll-snap-align: start;
}

header {
  text-align: center;
  position: fixed;
  top:0;
  left:0;
  right:0;
  color: whitesmoke;
  background-color: rgba(255,255,255,.5);
  transition: background-color 300ms;
  backdrop-filter: blur(10px);
}

header ul.social-links {
  list-style: none;
  margin: 0;
  padding: 10px 0 0 0;
  font-size: 0;
}
header ul.social-links li {
  display: inline-block;
  padding: 0 .3rem;
}
header ul.social-links li a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #191919;
  padding: .2rem;
  text-decoration: none;
  background: transparent;
  border-radius: 100px;
  border: solid 1px #848484;
  width: 20px;
  height: 20px;
}
header ul.social-links svg {
  height: 12px;
  max-width: 12px;
  fill: #191919;
}
nav ul {
  list-style: none;
  border-bottom: solid 1px #191919;
  margin: 0;
  padding: 0;
  font-size: 0;
}
nav li {
  display: inline-block;
}
nav li a {
  font-size: 1rem;
  display: block;
  color: #191919;
  padding: 1rem;
  text-decoration: none;
  border-right: solid 1px #191919;
}
nav li:first-of-type a {
  border-left: solid 1px #191919;
}
nav li a:hover {
  color: whitesmoke;
  background-color: #A91B29;
}
@media (max-width: 640px){
  nav li a {
    font-size: .8rem;
    padding: .25rem .5rem;
  }
}

svg {
  height: 20px;
  max-width: 20px;
  fill: #191919;
}
div[data-name="empty"] {
  padding-top: 0px;
  scroll-snap-align:unset;
}
.album {
	margin-bottom: 30px;
  padding-top: 140px;
  max-width: 500px;
  margin: auto;
  scroll-snap-align: start;
}
@media (max-width: 640px){
  .album {
    max-width: 90%;
  }
}

.album h3 {
	margin-bottom: 10px;
	font-size: 24px;
}
iframe {
	border: none;
}
/* grid images */
.row {
  display: flex;
  flex-wrap: wrap;
  padding: 0 4px;
  box-sizing: border-box;
}

/* Create four equal columns that sits next to each other */
.column {
  flex: 25%;
  max-width: 25%;
  padding: 0 4px;
  box-sizing: border-box;
}

.column img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
  box-sizing: border-box;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
  .column {
    flex: 50%;
    max-width: 50%;
  }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  /* .column {
    flex: 100%;
    max-width: 100%;
  } */
}
#tienda,
#contacto {
  max-width: 90%;
  text-align: center;
  margin: 0 auto 100px;
  padding-top: 140px;
}
#tienda .button {
  padding: 1rem 2rem;
  font-weight: bold;
  text-decoration: none;
  background-color: white;
  color: #191919;
  border: solid 1px #191919;
  border-radius: 5px;
  transition: background-color 350ms ease;
}
#tienda .button:hover {
  background-color: #191919;
  color: white;
  border: solid 1px #ffffff;
}
#contacto {
  scroll-snap-align: start;
}
.producto {
  scroll-snap-align: start;
  margin: 0 auto 100px;
  padding-top: 140px;
}
.producto p {
  margin-bottom: 2rem;
}
ul.social-links {
  list-style: none;
  margin: 0;
  padding: 40px 0 0 0;
  font-size: 0;
}
ul.social-links li {
  display: inline-block;
  font-size: 1rem;
  padding: 0 .3rem;
}
ul.social-links li a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #191919;
  padding: 1rem;
  text-decoration: none;
  background: white;
  border-radius: 100px;
  width: 25px;
  height: 25px;
}
/* ==========================================================================
   Helper classes
   ========================================================================== */
   .color-red {color:#A91B29;}
   
.flex{ display:-webkit-box; display:-webkit-flex; display:-ms-flexbox; display:flex }
.inline-flex{ display:-webkit-box; display:-webkit-inline-flex; display:-ms-inline-flexbox; display:inline-flex }
/* Avoids issues with btrz-pill using inline-block */
  .flex.inline-block{ display:-webkit-box; display:-webkit-inline-flex; display:-ms-inline-flexbox; display:inline-flex }
/* End of Avoids issues ... */

@media (min-width: 641px){
  .sm-flex{ display:-webkit-box; display:-webkit-flex; display:-ms-flexbox; display:flex }
  .sm-flex-column{ -webkit-box-orient:vertical; -webkit-box-direction:normal; -webkit-flex-direction:column; -ms-flex-direction:column; flex-direction:column }
  .sm-justify-between{ -webkit-box-pack:justify; -webkit-justify-content:space-between; -ms-flex-pack:justify; justify-content:space-between }
}

@media (min-width: 833px){
  .md-flex{ display:-webkit-box; display:-webkit-flex; display:-ms-flexbox; display:flex }
}

@media (min-width: 1025px){
  .lg-flex{ display:-webkit-box; display:-webkit-flex; display:-ms-flexbox; display:flex }
}

.flex-column{ -webkit-box-orient:vertical; -webkit-box-direction:normal; -webkit-flex-direction:column; -ms-flex-direction:column; flex-direction:column }
.flex-wrap{ -webkit-flex-wrap:wrap; -ms-flex-wrap:wrap; flex-wrap:wrap }
@media (max-width: 640px){
  .xs-flex-wrap{ -webkit-flex-wrap:wrap; -ms-flex-wrap:wrap; flex-wrap:wrap }
  .xs-flex-column{ -webkit-box-orient:vertical; -webkit-box-direction:normal; -webkit-flex-direction:column; -ms-flex-direction:column; flex-direction:column }
  .xs-justify-around{ -webkit-justify-content:space-around; -ms-flex-pack:distribute; justify-content:space-around }
}

.column-reverse {-webkit-flex-direction:column-reverse; -ms-flex-direction:column-reverse; flex-direction: column-reverse;}
.row-reverse {-webkit-flex-direction:row-reverse; -ms-flex-direction:row-reverse; flex-direction: row-reverse;}

.items-start{ -webkit-box-align:start; -webkit-align-items:flex-start; -ms-flex-align:start; -ms-grid-row-align:flex-start; align-items:flex-start }
.items-end{ -webkit-box-align:end; -webkit-align-items:flex-end; -ms-flex-align:end; -ms-grid-row-align:flex-end; align-items:flex-end }
.items-center{ -webkit-box-align:center; -webkit-align-items:center; -ms-flex-align:center; -ms-grid-row-align:center; align-items:center }
.items-baseline{ -webkit-box-align:baseline; -webkit-align-items:baseline; -ms-flex-align:baseline; -ms-grid-row-align:baseline; align-items:baseline }
.items-stretch{ -webkit-box-align:stretch; -webkit-align-items:stretch; -ms-flex-align:stretch; -ms-grid-row-align:stretch; align-items:stretch }

.self-start{ -webkit-align-self:flex-start; -ms-flex-item-align:start; align-self:flex-start }
.self-end{ -webkit-align-self:flex-end; -ms-flex-item-align:end; align-self:flex-end }
.self-center{ -webkit-align-self:center; -ms-flex-item-align:center; align-self:center }
.self-baseline{ -webkit-align-self:baseline; -ms-flex-item-align:baseline; align-self:baseline }
.self-stretch{ -webkit-align-self:stretch; -ms-flex-item-align:stretch; align-self:stretch }

.justify-start{ -webkit-box-pack:start; -webkit-justify-content:flex-start; -ms-flex-pack:start; justify-content:flex-start }
.justify-end{ -webkit-box-pack:end; -webkit-justify-content:flex-end; -ms-flex-pack:end; justify-content:flex-end }
.justify-center{ -webkit-box-pack:center; -webkit-justify-content:center; -ms-flex-pack:center; justify-content:center }
.justify-between{ -webkit-box-pack:justify; -webkit-justify-content:space-between; -ms-flex-pack:justify; justify-content:space-between }
.justify-around{ -webkit-justify-content:space-around; -ms-flex-pack:distribute; justify-content:space-around }

.content-start{ -webkit-align-content:flex-start; -ms-flex-line-pack:start; align-content:flex-start }
.content-end{ -webkit-align-content:flex-end; -ms-flex-line-pack:end; align-content:flex-end }
.content-center{ -webkit-align-content:center; -ms-flex-line-pack:center; align-content:center }
.content-between{ -webkit-align-content:space-between; -ms-flex-line-pack:justify; align-content:space-between }
.content-around{ -webkit-align-content:space-around; -ms-flex-line-pack:distribute; align-content:space-around }
.content-stretch{ -webkit-align-content:stretch; -ms-flex-line-pack:stretch; align-content:stretch }
.flex-auto{
  -webkit-box-flex:1;
  -webkit-flex:1 1 auto;
      -ms-flex:1 1 auto;
          flex:1 1 auto;
  min-width:0;
  min-height:0;
}
.flex-none{ -webkit-box-flex:0; -webkit-flex:none; -ms-flex:none; flex:none }

.flex-grow-0{ -webkit-box-flex-grow:0; -webkit-flex-grow:0; -ms-flex-grow:0; flex-grow:0; }
.flex-grow{ -webkit-box-flex-grow:1; -webkit-flex-grow:1; -ms-flex-grow:1; flex-grow:1; }
.flex-shrink-0{ -webkit-box-flex-shrink:0; -webkit-flex-shrink:0; -ms-flex-shrink:0; flex-shrink:0; }
.flex-shrink{  -webkit-box-flex-shrink:1; -webkit-flex-shrink:1; -ms-flex-shrink:1; flex-shrink:1;  }

    @media (max-width: 640px){
      .xs-hide{ display:none !important }
    }
    
    @media (min-width: 641px) and (max-width: 832px){
      .sm-hide{ display:none !important }
    }
    
    @media (min-width: 833px) and (max-width: 1024px){
      .md-hide{ display:none !important }
    }
    
    @media (min-width: 1025px){
      .lg-hide{ display:none !important }
    }
/*
 * Hide visually and from screen readers
 */

.hidden,
[hidden] {
  display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */

.visually-hidden {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

/*
 * Extends the .visually-hidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.visually-hidden.focusable:active,
.visually-hidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * The use of `table` rather than `block` is only necessary if using
 * `::before` to contain the top-margins of child elements.
 */

.clearfix::before,
.clearfix::after {
  content: "";
  display: table;
}

.clearfix::after {
  clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
}

@media print,
  (-webkit-min-device-pixel-ratio: 1.25),
  (min-resolution: 1.25dppx),
  (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]::after {
    content: " (" attr(href) ")";
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}

