/* ============================================================
   FLEMING ENTERTAINMENT — Global Stylesheet
   Palette: Gold #C49A1A | Navy #1A2744 | White #FFFFFF
   ============================================================ */

/* ── Google Fonts loaded in HTML ── */

/* ── CSS Custom Properties ───────────────────────────────── */
:root {
  --gold:        #C49A1A;
  --gold-light:  #DDB82A;
  --gold-dark:   #9C7B15;
  --navy:        #1A2744;
  --navy-dark:   #111B30;
  --navy-mid:    #233362;
  --white:       #FFFFFF;
  --off-white:   #F5F3EE;
  --text-light:  #CCCCCC;

  --font-heading: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --max-width: 1200px;
  --header-h:  80px;

  --transition: 0.25s ease;
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--navy);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

/* ── Typography ──────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

/* ── Utility ─────────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}

.divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 1rem 0 1.5rem;
}

.divider--center { margin-left: auto; margin-right: auto; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.85rem 2.4rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}

.btn--gold {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
}

.btn--outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn--outline-gold:hover {
  background: var(--gold);
  color: var(--navy-dark);
  transform: translateY(-2px);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn--outline-white:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
}

/* ════════════════════════════════════════════════════════════
   HEADER / NAV
   ════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: var(--navy-dark);
  border-bottom: 2px solid var(--gold);
  display: flex;
  align-items: center;
}

.site-header .container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.site-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

/* Nav */
.site-nav { display: flex; align-items: center; gap: 2rem; }

.site-nav a {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  padding-bottom: 4px;
  transition: color var(--transition);
}

.site-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--gold);
}

.site-nav a:hover::after,
.site-nav a.active::after {
  width: 100%;
}

.nav-cta {
  margin-left: 1rem;
  color: var(--white) !important;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.flag-link {
  font-size: 1.6rem;
  line-height: 1;
  margin-left: 0.6rem;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: transform var(--transition);
}
.flag-link:hover { transform: scale(1.2); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gold);
  transition: transform var(--transition), opacity var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: var(--navy-dark);
  border-bottom: 2px solid var(--gold);
  padding: 1.5rem 24px 2rem;
  z-index: 999;
  flex-direction: column;
  gap: 1.2rem;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--gold); }

/* ════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  padding-top: var(--header-h);
  background: var(--navy-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Subtle texture overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(196,154,26,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(26,39,68,0.6) 0%, transparent 50%);
  pointer-events: none;
}

/* Gold accent line left */
.hero::after {
  content: '';
  position: absolute;
  left: 0; top: 15%; bottom: 15%;
  width: 4px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.hero__eyebrow {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero__eyebrow::before {
  content: '';
  display: inline-block;
  width: 40px;
  height: 2px;
  background: var(--gold);
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.hero__title em {
  font-style: normal;
  color: var(--gold);
}

.hero__tagline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-light);
  max-width: 580px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__logo-img {
  display: block;
  width: 96vw;
  max-width: 5632px;
  aspect-ratio: 5069 / 2765;
  object-fit: contain;
  margin: 0 auto;
  filter: drop-shadow(0 4px 24px rgba(196,154,26,0.25));
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
  animation: bounce 2s infinite;
}

.hero__scroll svg { width: 20px; height: 20px; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ════════════════════════════════════════════════════════════
   INTRO / ABOUT PREVIEW
   ════════════════════════════════════════════════════════════ */
.intro {
  padding: 7rem 0;
  background: var(--white);
}

.intro__centered {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.intro__heading {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--navy);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

/* Framed text box */
.intro__frame {
  position: relative;
  padding: 2.8rem 3rem;
  margin-top: 2rem;
  background: var(--off-white);
  border-top: 1px solid rgba(196,154,26,0.25);
  border-bottom: 1px solid rgba(196,154,26,0.25);
  text-align: left;
}

.intro__frame p {
  color: #444;
  font-size: 1.02rem;
  line-height: 1.8;
}

.intro__frame p + p {
  margin-top: 1.2rem;
}

/* Gold corner brackets */
.intro__frame-corner {
  position: absolute;
  width: 24px;
  height: 24px;
}
.intro__frame-corner--tl { top: -1px;  left: -1px;  border-top: 3px solid var(--gold); border-left: 3px solid var(--gold); }
.intro__frame-corner--tr { top: -1px;  right: -1px; border-top: 3px solid var(--gold); border-right: 3px solid var(--gold); }
.intro__frame-corner--bl { bottom: -1px; left: -1px;  border-bottom: 3px solid var(--gold); border-left: 3px solid var(--gold); }
.intro__frame-corner--br { bottom: -1px; right: -1px; border-bottom: 3px solid var(--gold); border-right: 3px solid var(--gold); }

@media (max-width: 600px) {
  .intro__frame { padding: 2rem 1.5rem; }
}

/* ════════════════════════════════════════════════════════════
   SERVICES PREVIEW (3-up cards)
   ════════════════════════════════════════════════════════════ */
.services-preview {
  padding: 7rem 0;
  background: var(--navy-dark);
}

.services-preview__header {
  text-align: center;
  margin-bottom: 4rem;
}

.services-preview__header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

a.service-card {
  text-decoration: none;
  display: block;
  cursor: pointer;
}

.service-card {
  background: var(--navy-mid);
  border: 1px solid rgba(196,154,26,0.2);
  padding: 2.5rem 2rem;
  transition: border-color var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card__icon {
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
}

.service-card__title {
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.service-card__desc {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

.services-preview__footer {
  text-align: center;
  margin-top: 3rem;
}

/* ════════════════════════════════════════════════════════════
   CLIENTS STRIP
   ════════════════════════════════════════════════════════════ */
.clients-strip {
  padding: 5rem 0;
  background: var(--off-white);
  text-align: center;
}

.clients-strip h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.clients-strip p {
  color: #666;
  margin-bottom: 3rem;
  font-size: 1rem;
}

.clients-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2.5rem 4rem;
}

.client-placeholder {
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #999;
  border: 1px solid #ddd;
  padding: 0.6rem 1.4rem;
  transition: color var(--transition), border-color var(--transition);
}

.client-placeholder:hover {
  color: var(--navy);
  border-color: var(--navy);
}

/* ════════════════════════════════════════════════════════════
   OUR PROJECTS
   ════════════════════════════════════════════════════════════ */
.our-projects {
  padding: 7rem 0;
  background: var(--navy-dark);
}

.our-projects__header {
  text-align: center;
  margin-bottom: 4rem;
}

.our-projects__header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
}

.our-projects__sub {
  color: var(--text-light);
  font-size: 1.05rem;
  margin-top: 0.75rem;
}

/* Featured project */
.project-featured {
  position: relative;
  margin-bottom: 5rem;
  overflow: hidden;
}

.project-featured__img img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  display: block;
}

.project-featured__info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem 2.5rem;
  background: linear-gradient(to top, rgba(17,27,48,0.95) 0%, transparent 100%);
}

.project-featured__title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 0.2rem;
}

.project-featured__subtitle {
  font-size: 1rem;
  color: var(--text-light);
  font-style: italic;
}

/* Status badges */
.project-status {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  margin-bottom: 0.6rem;
}

.project-status--produced {
  background: var(--gold);
  color: var(--navy-dark);
}

.project-status--dev {
  background: rgba(196,154,26,0.15);
  color: var(--gold);
  border: 1px solid rgba(196,154,26,0.4);
}

/* In Development subsection */
.in-development__header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.in-development__label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}

.in-development__header::before,
.in-development__header::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(196,154,26,0.3);
}

/* Project cards grid */
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.project-card {
  background: var(--navy-mid);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.4);
}

.project-card__img img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.project-card__info {
  padding: 1rem 1.2rem 1.3rem;
}

.project-card__title {
  font-size: 1.05rem;
  color: var(--white);
  margin-top: 0.25rem;
}

@media (max-width: 720px) {
  .project-grid { grid-template-columns: 1fr; }
  .project-featured__img img { aspect-ratio: 16 / 9; }
}

/* ════════════════════════════════════════════════════════════
   CTA BANNER
   ════════════════════════════════════════════════════════════ */
.cta-banner {
  padding: 6rem 0;
  background: var(--gold);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: 'FLEMING ENTERTAINMENT';
  position: absolute;
  font-family: var(--font-heading);
  font-size: 10rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: rgba(26,39,68,0.06);
  white-space: nowrap;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
}

.cta-banner h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--navy-dark);
  margin-bottom: 1rem;
}

.cta-banner p {
  color: var(--navy-dark);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  opacity: 0.85;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* ════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--navy-dark);
  border-top: 2px solid var(--gold);
  padding: 3.5rem 0 2rem;
  color: var(--text-light);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 2rem;
}

.footer__brand img {
  height: 44px;
  margin-bottom: 1rem;
}

.footer__brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
  color: #aaa;
}

.footer__nav h4,
.footer__contact h4 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer__nav ul,
.footer__contact ul { display: flex; flex-direction: column; gap: 0.5rem; }

.footer__nav a,
.footer__contact li {
  font-size: 0.9rem;
  color: #aaa;
  transition: color var(--transition);
}

.footer__nav a:hover { color: var(--gold); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #666;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .services-grid          { grid-template-columns: 1fr 1fr; }
  .footer__grid           { grid-template-columns: 1fr 1fr; }
  .footer__brand          { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  :root { --header-h: 66px; }

  .site-nav               { display: none; }
  .hamburger              { display: flex; }
  .services-grid          { grid-template-columns: 1fr; }
  .footer__grid           { grid-template-columns: 1fr; }
  .hero__actions          { flex-direction: column; align-items: flex-start; }
  .cta-banner::before     { font-size: 5rem; }
}
