body {
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
  color: white;
  scroll-behavior: smooth;
}

h1 {
  font-family: "Rye", serif;
  color: gold;
}

h2 {
  font-family: "Rye", serif;
  color: #fcf2b7;
}

.img-full {
  width: 80%;
  border-radius: 15px;
}

.img-medium {
  width: 600px;
  border-radius: 15px;
  text-align: center;
}

.img-logo {
  width: 200px;
}

@media (max-width: 768px) {
  .img-full {
    width: 100%;
  }
  .img-medium {
    width: 100%;
  }
}

.btn-unavailable {
  cursor: not-allowed;
}

.btn-orange {
  display: inline-block;
  background: #bd2d02;
  color: white;
  padding: 0.9rem 1.8rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  transition: background 0.3s;
}

.btn-orange:hover {
  background: #e65a2b;
  color: white;
}

.btn-blue {
  display: inline-block;
  background: #2e2edc;
  color: white;
  padding: 0.9rem 1.8rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  transition: background 0.3s;
}

.btn-blue:hover {
  background: #1a1acf;
}

.btn-green {
  display: inline-block;
  background: rgb(32, 177, 66);
  color: white;
  padding: 0.9rem 1.8rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  transition: background 0.3s;
}

.btn-green:hover {
  background: rgb(19, 123, 43);
}

/* HERO SECTION */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: -1;
}

.hero .content {
  max-width: 800px;
  padding: 2rem;
}

.hero-logo {
  width: 300px;
  max-width: 60%;
  margin-bottom: 1rem;
}

.hero-social {
  position: absolute;
  bottom: 20px;
  right: 20px;

  display: flex;
  flex-direction: row;
  gap: 12px;

  z-index: 10;
}

.hero-social img {
  width: 38px;
  height: 38px;
  filter: drop-shadow(0 0 4px black);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero-social img:hover {
  transform: scale(1.12);
  opacity: 0.85;
}

@media (max-width: 768px) {
  .hero-social {
    bottom: 15px;
    right: 15px;
    flex-direction: row; /* horizontal on mobile */
  }
}

/* COUNTDOWN CONTAINER */
#countdown {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  margin-bottom: 10px;
  text-align: center;
  font-family: "Rye", serif;
}

.countdown-container {
  background: white;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 2px 2px 6px black;
  color: black;
}

@media (max-width: 768px) {
  #countdown {
    font-size: 16px;
    flex-wrap: wrap;
  }
  .countdown-container {
    padding: 8px 6px;
  }
}

/* SECTIONS */
.section-black {
  padding: 15px;
  background-color: black;
  text-align: center;
}

section {
  scroll-margin-top: 70px;
}

footer {
  background: #000;
  padding: 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: #aaa;
}

/* BOOTSTRAP NAVBAR */
.navbar {
  background: rgba(0, 0, 0, 0.6) !important;
  backdrop-filter: blur(8px);
  font-weight: bold;
}

.navbar-brand img {
  height: 45px;
  width: auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-right: 0;
}

.navbar-brand img:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.navbar-nav .nav-link {
  color: white !important;
  transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
  color: #fcbc64 !important;
}

.navbar-toggler {
  border-color: white;
}

.navbar-toggler-icon {
  filter: invert(1);
}
@media (max-width: 768px) {
  .nav-date-location {
    font-size: 12px;
  }

  .navbar-brand img {
    height: 30px;
  }
}

/* FLEX LAYOUT */
.flex-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  text-align: left;
}

.flex-section {
  flex: 1 1 50%;
  box-sizing: border-box;
  padding: 20px;
}

.flex-section2 {
  flex: 1 1 50%;
  box-sizing: border-box;
  padding: 20px;
}

@media (max-width: 768px) {
  .flex-section {
    flex: 1 1 100%;
  }

  .flex-section2 {
    flex: 1 1 100%;
  }

  .flex-section2:first-child {
    order: 2;
  }

  .flex-section2:last-child {
    order: 1;
  }
}

/* BOLETOS */
.boleto-container {
  width: 90%;
  background: white;
  margin: auto;
  color: black;
  border-radius: 5px;
  padding: 15px;
  margin: 20px auto;
}
.boleto-flex-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.boleto-flex-section1 {
  text-align: left;
}

.boleto-flex-section2 {
  text-align: right;
}

.boleto-description {
  color: #9333ea;
  text-transform: uppercase;
  font-size: small;
  font-weight: bold;
}

.boleto-type {
  font-weight: bold;
  font-size: large;
}

@media (max-width: 768px) {
  .boleto-flex-container {
    justify-content: center;
  }

  .boleto-flex-section1 {
    text-align: center;
    flex: 1 1 100%;
  }

  .boleto-flex-section2 {
    text-align: center;
    flex: 1 1 100%;
  }
}

summary {
  font-size: 14px;
  font-weight: bold;
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

summary::after {
  content: "➤";
  display: inline-block;
  transition: transform 0.3s ease;
}

details[open] summary::after {
  transform: rotate(90deg);
}

/* GALLERY SECTION */
.gallery-6 {
  width: 100%;
  background: black;
}

.gallery-grid {
  display: grid;
  width: 100%;
  margin: auto;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 400px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.gallery-grid img {
  transition: transform 0.35s ease, filter 0.35s ease;
}

.gallery-grid img:hover {
  transform: scale(1.02);
  cursor: pointer;
}

/* MOBILE STACK */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }
}

/* BUTTON OVERLAY */
.highlight-button {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;

  background: white;
  border-radius: 14px;
  padding: 16px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  text-decoration: none;
  color: black;
  font-size: 18px;
  font-weight: 600;

  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.3s ease;
}

.highlight-button:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  background: yellow;
}

/* ARROW */
.highlight-button .arrow {
  width: 32px;
  height: 32px;
  border: 2px solid #22c55e; /* green-500 */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* SCROLL ANIMATIONS */
.scroll-fade {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.scroll-fade.show {
  opacity: 1;
  transform: translateY(0);
}

/* MORE INFO */
.info-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  padding: 20px;
  flex-wrap: wrap;
}

.info-card {
  background: white;
  padding: 20px 30px;
  border-radius: 6px;
  text-decoration: none;
  color: #2b2b4d;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 260px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
  color: #ed362b;
}

.info-card .arrow {
  font-size: 20px;
}

/* MOBILE STACK */
@media (max-width: 768px) {
  .info-buttons {
    flex-direction: column;
    align-items: center;
  }

  .info-card {
    width: 100%;
    max-width: 360px;
  }
}
.info-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  padding: 20px;
  flex-wrap: wrap;
}

.info-card {
  background: white;
  padding: 28px 36px;
  border-radius: 8px;
  text-decoration: none;
  color: #2b2b4d;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 340px;
  min-height: 100x;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  font-size: 1rem;
}

.info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

.info-card .arrow {
  font-size: 20px;
}

/* MOBILE STACK */
@media (max-width: 768px) {
  .info-buttons {
    flex-direction: column;
    align-items: center;
  }

  .info-card {
    width: 100%;
    max-width: 360px;
  }
}

/* FOOTER */
.footer {
  position: relative;
  padding: 64px 0;
  color: white;
  background-image: url("../images/michelada festival footer.jpg");
  background-position: center;
  opacity: 0.9;
}

.footer-content {
  position: relative;
  background: rgba(0, 0, 0, 0.7);
  width: fit-content;
  max-width: 90%;
  margin: 0 auto;
  padding: 10px 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.footer-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.footer-logos img {
  height: 80px;
}

@media (min-width: 768px) {
  .footer-logos img {
    height: 100px;
  }
}

.footer-social {
  margin-top: 20px;
}

.footer-social img {
  width: 38px;
  height: 38px;
  filter: drop-shadow(0 0 4px black);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer-social img:hover {
  transform: scale(1.12);
  opacity: 0.85;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: bold;
  font-size: 1.2rem;
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: #f7e27a;
}

.footer-copy {
  margin-top: 10px;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-size: 0.95rem;
}
