/* Base / Reset */
:root {
  --gold: #d6a94a;
  --gold-dark: #b9852f;
  --black: #0b0b0b;
  --muted: #bfbfbf;
  --glass: rgba(255, 255, 255, 0.04);
  --radius: 14px;
  --container: 1100px;
  --gap: 24px;
}

* {
  box-sizing: border-box
}

html,
body {
  height: 100%
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(180deg, #050505 0%, #0b0b0b 100%);
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  font-size: 16px;
}

/* Accessibility helpers */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 10px;
  top: 10px;
  width: auto;
  height: auto;
  padding: 8px;
  background: #fff;
  color: #000;
  z-index: 9999;
  border-radius: 4px;
}

/* Header */
.site-header {
  background: linear-gradient(90deg, rgba(16, 12, 8, 0.9) 0%, rgba(5, 3, 2, 0.6) 100%);
  border-bottom: 3px solid rgba(214, 169, 74, 0.12);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(214, 169, 74, 0.06), transparent);
  padding: 6px
}

.brand-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 14px;
  color: var(--gold)
}

.brand-tag {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px
}

/* Nav */
.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 10px;
  align-items: center
}

.site-nav a.nav-link {
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  background: transparent;
  border: 1px solid transparent;
}

.site-nav a.nav-link:hover,
.site-nav a.nav-link.active {
  background: linear-gradient(90deg, rgba(214, 169, 74, 0.12), rgba(214, 169, 74, 0.06));
  border-color: rgba(214, 169, 74, 0.12);
  color: var(--gold);
}

.btn {
  cursor: pointer;
  border-radius: 10px;
  padding: 8px 12px;
  font-weight: 700;
  font-size: 14px
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #fff
}

.btn-primary {
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  color: #000;
  border: none;
  padding: 10px 18px;
  border-radius: 10px;
  text-decoration: none;
  display: inline-block
}

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px
}

.translate {
  min-width: 120px
}

/* Mobile toggle */
.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.04);
  color: #fff;
  padding: 8px;
  border-radius: 8px
}

/* Hero */
.hero {
  padding: 28px 0 0
}

.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 30px;
  align-items: center;
  padding: 18px;
}

.hero-left {
  z-index: 10
}

.topline {
  font-size: 13px;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 10px
}

.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  letter-spacing: 2px;
  margin: 0 0 18px;
  color: #fff;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.6)
}

.hero-countdown .film-badge {
  display: inline-block;
  background: linear-gradient(180deg, #111 0%, #0b0b0b 100%);
  border: 4px solid var(--gold);
  padding: 18px 22px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6)
}

.film-number {
  display: block;
  font-size: 48px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 1px
}

.film-monthz {
  display: block;
  background: var(--gold);
  color: #000;
  padding: 6px 10px;
  border-radius: 6px;
  margin-top: 10px;
  font-weight: 800;
  font-size: 12px
}

/* Carousel / visual hero */
.hero-carousel {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 320px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7)
}

.carousel-slides {
  display: flex;
  height: 100%;
  width: 300%;
  transition: transform 1s ease-in-out
}

.carousel-slide {
  flex: 0 0 33.3333%;
  background-position: center;
  background-size: cover;
  height: 320px;
  min-height: 320px
}

.carousel-overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.55));
  pointer-events: none;
}

/* Sections */
.section {
  padding: 40px 0
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px
}

.grid {
  display: grid;
  gap: 20px
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr)
}

/* Profile cards */
.card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  border-radius: 16px;
  padding: 16px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6)
}

.profile-photo {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  border: 4px solid rgba(214, 169, 74, 0.12)
}

.profile-name {
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
  margin: 0;
  color: var(--gold);
  letter-spacing: 0.6px;
  font-size: 32px
}

.profile-role {
  font-weight: 700;
  color: #fff;
  margin: 4px 0;
  font-size: 22px
}

.profile-text {
  color: var(--muted);
  margin-top: 8px
}

/* About preview */
.about-grid {
  display: flex;
  gap: 20px;
  align-items: center
}

.about-text {
  flex: 1
}

.about-media {
  width: 360px;
  display: flex;
  align-items: center;
  justify-content: center
}

.camera-graphic img {
  max-width: 100%;
  display: block;
  border-radius: 14px
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding: 28px 0;
  margin-top: 36px;
  background: transparent
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px
}

.footer-logo {
  width: 64px;
  height: auto
}

.social a img {
  width: 36px;
  height: 36px;
  margin-left: 8px;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.6))
}

.small {
  font-size: 13px;
  color: var(--muted)
}

.link-gold {
  color: var(--gold);
  text-decoration: none
}

/* Scroll Up */
#scrollUpBtn {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--gold);
  color: #000;
  border: none;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 18px;
  display: none;
  z-index: 1200;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6)
}

/* Responsive */
@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr 1fr
  }

  .carousel-slide {
    min-height: 280px;
    height: 280px
  }

  .about-media {
    display: none
  }
}

@media (max-width: 760px) {
  .header-inner {
    padding: 12px
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: -320px;
    height: 100%;
    width: 300px;
    background: #070707;
    padding: 24px;
    transition: right .28s ease-in-out;
    display: block;
    box-shadow: -6px 0 30px rgba(0, 0, 0, 0.6)
  }

  .site-nav.open {
    right: 0
  }

  .site-nav ul {
    flex-direction: column;
    gap: 12px
  }

  .menu-toggle {
    display: inline-block
  }

  .header-actions {
    display: none
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-bottom: 8px
  }

  .hero-left {
    text-align: center
  }

  .film-number {
    font-size: 44px
  }

  .carousel-slide {
    height: 200px;
    min-height: 200px
  }

  .grid-2 {
    grid-template-columns: 1fr
  }

  .profile-photo {
    width: 200px;
    height: 200px
  }
}

/* small screens */
@media (max-width:420px) {
  .brand-text {
    display: none
  }

  .logo {
    width: 46px;
    height: 46px
  }

  .hero-title {
    font-size: 22px
  }

  .film-number {
    font-size: 36px
  }
}

/* Hero Section */
.hero-small {
  position: relative;
  height: 400px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f0c040;
  text-align: center;
}

.hero-small::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.hero-text {
  position: relative;
  z-index: 2;
}

.hero-text h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  text-shadow: 0 0 15px #f0c040;
}

.hero-text p {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  text-shadow: 0 0 10px black;
}

/* Executive Cards Grid */
.executive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  padding: 50px 20px;
}

.executive-card {
  background-color: #111;
  border: 2px solid #f0c040;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}

.executive-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 20px #f0c040;
}

.executive-img {
  width: 100%;
  object-fit: contain;
  height: 250px;
}

.executive-info {
  padding: 20px;
  color: #fff;
}

.executive-info h3 {
  font-family: 'Montserrat', sans-serif;
  color: #f0c040;
  margin-bottom: 10px;
  font-size: 1.8rem;
}

.executive-info p {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}

/* Scroll Up Button */
#scrollUpBtn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #f0c040;
  color: #111;
  border: none;
  padding: 12px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 0 15px #f0c040;
  display: none;
  /* show via JS on scroll */
  z-index: 1000;
}

/* Responsive */
@media (max-width: 768px) {
  .executive-img {
    height: 180px;
  }
}



/* ---------------------------
  ABOUT SECTION CARDS
--------------------------- */
.about-sections.container {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.about-card {
  background-color: #111;
  border: 2px solid #f0c040;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  color: #fff;
}

.about-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 20px #f0c040;
}

.about-card img.about-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.about-card .about-content {
  padding: 20px;
}

.about-card .about-content h3 {
  font-family: 'Montserrat', sans-serif;
  color: #f0c040;
  margin-bottom: 10px;
  font-size: 1.8rem;
}

.about-card .about-content p {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}

/* Full-width card */
.about-card.full-width {
  grid-column: 1 / -1;
}

/* ---------------------------
  PARTNERSHIP LOGO CAROUSEL
--------------------------- */
.carousel-container {
  margin: 60px auto;
  max-width: 1200px;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 0;
}

.carousel-slide {
  flex: 0 0 auto;
  width: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.carousel-slide img {
  max-width: 100%;
  filter: grayscale(100%);
  transition: filter 0.3s, transform 0.3s;
}

.carousel-slide img:hover {
  filter: grayscale(0%);
  transform: scale(1.1);
}

/* ---------------------------
  ATTRIBUTION SECTION
--------------------------- */
.attribution-section {
  background-color: #111;
  padding: 40px 20px;
  text-align: center;
  color: #fff;
}

.attribution-section .attribution-img {
  max-width: 300px;
  border-radius: 12px;
  margin-bottom: 15px;
}

.attribution-section .attribution-text a {
  color: #f0c040;
  text-decoration: none;
}

.attribution-section .attribution-text a:hover {
  text-decoration: underline;
}

/* ---------------------------
  RESPONSIVE
--------------------------- */
@media (max-width: 768px) {
  .about-card img.about-image {
    height: 180px;
  }

  .hero-page .hero-text h1 {
    font-size: 2.2rem;
  }
}

.executive-card {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.camera-graphic img {
  width: 100%;
  max-width: 320px;
  display: block;
  margin: 0 auto;
  animation: floatCamera 6s ease-in-out infinite;
  filter: drop-shadow(0 0 10px rgba(214,169,74,0.3));
}

@keyframes floatCamera {
  0%   { transform: translateY(0px) rotate(0deg); }
  50%  { transform: translateY(-12px) rotate(1deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

.developer-credit {
  text-align: center;
  margin-top: 20px;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 215, 0, 0.15);
}

.intold-logo {
  width: 50px;
  opacity: 0.7;
  transition: opacity 0.3s ease, transform 0.3s ease;
  filter: drop-shadow(0 0 6px rgba(214, 169, 74, 0.3));
}

.intold-logo:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* Make the video fit the container perfectly */
.video-player {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9; /* Standard video shape */
  border-radius: 14px;  /* Matches your --radius variable */
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  border: 1px solid var(--gold-dark); /* Optional gold border */
}

/* Ensure the container handles the video size */
.camera-graphic {
  width: 100%;
  display: flex;
  justify-content: center;
  overflow: hidden;
}