/* ART OF AUPP STYLING  */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background: rgba(120,0,0,0.9); /* Darker background to let the red silk pop */
  color: white;
  font-family: 'Montserrat', sans-serif;
}
.art-of-aupp-page {
  position: relative;
  width: 100%;
  margin: 0 auto;
  background: #680002;
  overflow: hidden;
  
}
.art-of-aupp-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;

  height: 560px; /* control hero height */
  z-index: 0;

  background-image:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.75) 0%,
      rgba(120, 0, 0, 0.6) 60%,
      #680002 100%
    ),
    url("/media/art-of-aupp/art-of-aupp-background-img.png");

  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}

/* NAVIGATION BAR */
.navbar,
.art-of-aupp-title,
.art-of-aupp-links,
.footer {
  position: relative;
  z-index: 7;
}

/* Navbar */
.navbar {
  position: relative;
  z-index: 50;
  width: min(100% - 120px, 1120px);
  margin: 0 auto;
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.filmmakers-logo {
  width: 32px;
  height: auto;
  display: block;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 56px;
}

.nav-toggle,
.nav-toggle-label,
.nav-item-contact-mobile {
  display: none;
}

.hamburger-icon {
  display: block;
  font-size: 24px;
  line-height: 1;
  color: #ffffff;
}

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

.nav-item-home,
.nav-item-about-us,
.nav-item-our-work,
.nav-item-our-service {
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  color: #fbfbfb;
  text-transform: uppercase;
  transition: all 0.5s ease;
}

.nav-menu a.active {
  color: #fbfbfb;
  text-decoration: none;
}

.nav-contact-button.active {
  background: #0f255c;
}

.nav-item-home:hover,
.nav-item-about-us:hover,
.nav-item-our-work:hover,
.nav-item-our-service:hover,
.nav-contact-button:hover {
  transform: scale(1.08); /* zoom in a bit */
  color: lightblue
}

.nav-contact-button {
  min-width: 130px;
  height: 42px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #18357b;
  border-radius: 999px;
  transition: all 0.5s ease;
}

.nav-contact-button:active {
  background: #2a4d98;
}

.button-label {
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  color: #fbfbfb;
  text-transform: uppercase;
}

/* Title Logo and description */
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0;
  z-index: 7;
}

.hero-content p {
  font-size: 18px;
  line-height: auto;
  letter-spacing: 0;
  opacity: 0.8;
  font: 'Montserrat', sans-serif;;
}


.hero-logo {
  width: 520px; 
  max-width: 90%;
  height: auto;
  margin-bottom: 10px;
  z-index: 7;
}

.hero-tagline {
  font-size: 20px;
  margin-bottom: 40px;
  opacity: 0.9;
}

.description {
  max-width: 1093px; 
  font-size: 20px;
  line-height: auto;
  margin: 50px auto;
}

/* Gallery Container */
.gallery-container {
  padding: 80px 5%;
  background: #680002; 
  padding: 0px 0; 
  background: #680002;
  max-width: 1120px;
  margin: 0 auto;
  position: relative; 
  z-index: 5; 
}


.film-row {
  display: flex;
  justify-content: center;
  gap: 180px;
  margin-bottom: 80px;
}

.film-card {
  flex: 1;
  max-width: 350px;
  text-align: center; 
}

.category-title {
  color: #d4af37; 
  font-size: 18px;
  margin-bottom: 15px;
  text-align: center;
  opacity: 100%;
}

.film-card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 15px;
  transition: transform 0.3s;
}

/* Winner Effect */
.winners img {
  box-shadow: 0 0 25px #FFD700;
  border: 1px solid rgba(255, 215, 0, 0.5);
}

.film-info {
  font-size: 16px;
  line-height: auto;
  letter-spacing: 0;
  opacity: 0.8;
  font: 'Montserrat', sans-serif;;
}

/* Footer Styling*/
.footer {
  width: 100%;
  margin-top: 88px;
  padding-bottom: 14px;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  margin-bottom: 24px;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  transition: background-color 0.5s ease, transform 0.5s ease;
}

.footer-social-link:hover {
  background: #355486;
}

.footer-social-link img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.footer-social-link:hover img {
  transform: scale(1.05);
}


.footer-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
  padding: 8px 24px;
  background: rgba(255, 255, 255, 0.92);
  margin-bottom: 14px;
}

.footer-menu a {
  font-size: 11px;
  font-weight: 700;
  color: #002868;
  text-transform: uppercase;
  transition: all 0.5s ease;
}

.footer-menu a:hover {
  color: lightblue;
}


.footer-copyright {
  text-align: center;
  font-size: 9px;
  font-weight: 400;
  line-height: 1;
  color: #ffffff;
}



/* Responsive Styling for tablets and small laptops > 1200px */
@media only screen and (min-width: 834px) and (max-width: 1194px) {

    /* 1. Prevent the navbar from overlapping the logo */
    .hero {
        padding-top: 140px; 
    }
    .navbar ul {
        gap: 25px; 
    }
    .nav-links {
        font-size: 14px;
    }
    .description {
        max-width: 90%; 
        font-size: 18px;
        line-height: 1.5;
    }
    .film-row {
        gap: 30px; 
        padding: 0 30px;
        justify-content: center;
    }
    .film-card {
        flex: 1;
        max-width: 250px;
    }
    .category-title {
        font-size: 15px;
    }
    .footer-nav {
        height: auto;
        padding: 10px 0;
    }
    .footer-nav a {
        margin: 0 10px;
        font-size: 12px;
    }
}

@media (max-width: 768px) {
  .nav-toggle-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    cursor: pointer;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: min(220px, calc(100vw - 24px));
    padding: 16px;
    border-radius: 16px;
    background: rgba(104, 0, 2, 0.96);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    z-index: 25;
  }

  .nav-toggle:checked ~ .nav-menu {
    display: flex;
  }

  .nav-menu .nav-item-contact-mobile {
    display: inline-flex;
  }

  .nav-menu a {
    color: #fbfbfb;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
  }

  .nav-menu a.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    padding: 6px 12px;
    text-decoration: none;
  }

  .hamburger-icon {
    color: #ffffff;
  }

  .nav-contact-button {
    display: none;
  }

  .navbar {
    width: calc(100% - 24px);
    padding-top: 16px;
  }

  .filmmakers-logo {
    width: 24px;
  }

  .nav-menu {
    gap: 14px;
  }

  .nav-item-home,
  .nav-item-about-us,
  .nav-item-our-work,
  .nav-item-our-service {
    font-size: 8px;
  }

  .nav-contact-button {
    min-width: 86px;
    height: 30px;
    padding: 0 14px;
  }

  .button-label {
    font-size: 7px;
  }

  .hero-logo {
    width: min(86vw, 320px);
  }

  .hero-tagline {
    font-size: 12px;
    margin-bottom: 18px;
  }

  .hero-content p,
  .description,
  .film-info {
    font-size: 10px;
    line-height: 1.5;
  }

  .description {
    margin: 24px auto;
    padding: 0 16px;
  }

  .gallery-container {
    padding: 0 12px;
  }

  .film-row {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
  }

  .film-card {
    max-width: 100%;
  }

  .category-title {
    font-size: 14px;
  }

  .footer-social-link {
    width: 32px;
    height: 32px;
  }

  .footer-social-link img {
    width: 14px;
    height: 14px;
  }

  .footer-menu {
    gap: 14px;
    padding: 6px 12px;
  }

  .footer-menu a {
    font-size: 7px;
  }

  .footer-copyright {
    font-size: 6px;
  }
}
