/*
Theme Name: Geetanum Studios
Theme URI: https://geetanum.co
Author: Geetanum Studios
Description: A dark, gold-accented WordPress theme built for Geetanum Studios — a video production studio. Features a timecode-inspired design system: a scroll-progress "scrubber" bar, live ticking timecode in the hero, and section labels styled like editing timecodes.
Version: 1.0
Requires PHP: 7.4
Text Domain: geetanum-studios
*/

:root{
  --bg: #0D0D0D;
  --surface: #161512;
  --surface-2: #1D1B17;
  --gold: #C9A24B;
  --amber: #E8B84B;
  --ivory: #F2F0EB;
  --muted: #9A9488;
  --line: #2A2822;
  --container: 1180px;
  --nav-h: 76px;
  --scrubber-h: 4px;
}

*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto;}
  *{animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important;}
}

body{
  background:var(--bg);
  color:var(--ivory);
  font-family:'Work Sans', sans-serif;
  font-size:16px;
  line-height:1.6;
  position:relative;
  overflow-x:hidden;
}

body::before{
  content:"";
  position:fixed; inset:0;
  pointer-events:none;
  z-index:9999;
  opacity:0.035;
  mix-blend-mode:overlay;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

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

.container{max-width:var(--container); margin:0 auto; padding:0 28px;}

.eyebrow{
  font-family:'IBM Plex Mono', monospace;
  font-size:13px;
  letter-spacing:0.08em;
  color:var(--gold);
  display:flex; align-items:center; gap:10px;
  margin-bottom:18px;
}
.eyebrow::before{
  content:""; width:8px; height:8px; border-radius:50%;
  background:var(--amber); box-shadow:0 0 8px var(--amber); flex-shrink:0;
}

h1,h2,h3,.display{
  font-family:'Bebas Neue', sans-serif;
  font-weight:400; letter-spacing:0.01em; line-height:0.95;
  color:var(--ivory);
}
h2{font-size:clamp(34px,4.5vw,56px); margin-bottom:20px;}
h3{font-size:clamp(22px,2.4vw,28px); letter-spacing:0.02em;}
p{color:var(--muted); max-width:60ch;}

.btn{
  display:inline-flex; align-items:center; gap:10px;
  font-family:'IBM Plex Mono', monospace;
  font-size:14px; letter-spacing:0.04em;
  padding:14px 26px; border-radius:2px;
  border:1px solid var(--gold);
  transition:background .25s ease, color .25s ease, transform .2s ease;
  white-space:nowrap;
}
.btn-solid{background:var(--gold); color:#0D0D0D;}
.btn-solid:hover{background:var(--amber); transform:translateY(-2px);}
.btn-ghost{color:var(--ivory); border-color:var(--line);}
.btn-ghost:hover{border-color:var(--gold); color:var(--gold); transform:translateY(-2px);}

#scrubber{position:fixed; top:0; left:0; right:0; height:var(--scrubber-h); background:var(--line); z-index:1001;}
#scrubber-fill{height:100%; width:0%; background:linear-gradient(90deg,var(--gold),var(--amber)); box-shadow:0 0 10px var(--amber); transition:width .05s linear;}

header.site-header{
  position:fixed; top:var(--scrubber-h); left:0; right:0; height:var(--nav-h); z-index:1000;
  background:rgba(13,13,13,0.82); backdrop-filter:blur(10px); border-bottom:1px solid var(--line);
}
nav.main-nav{max-width:var(--container); margin:0 auto; height:100%; padding:0 28px; display:flex; align-items:center; justify-content:space-between;}
.wordmark{display:flex; flex-direction:column; line-height:1;}
.wordmark .g1{font-family:'Bebas Neue', sans-serif; font-size:22px; letter-spacing:0.06em; color:var(--ivory);}
.wordmark .g1 span{color:var(--gold);}
.wordmark .g2{font-family:'IBM Plex Mono', monospace; font-size:9px; letter-spacing:0.35em; color:var(--muted); margin-top:2px;}

.nav-links{display:flex; gap:36px; font-family:'IBM Plex Mono', monospace; font-size:13px; letter-spacing:0.05em;}
.nav-links a{color:var(--muted); position:relative; padding:6px 0; transition:color .2s ease;}
.nav-links a:hover, .nav-links .current-menu-item a{color:var(--ivory);}
.nav-links .current-menu-item a::after{content:""; position:absolute; left:0; right:0; bottom:0; height:2px; background:var(--gold);}
.nav-cta{font-family:'IBM Plex Mono', monospace; font-size:13px; padding:10px 18px; border:1px solid var(--gold); color:var(--gold); transition:.2s ease;}
.nav-cta:hover{background:var(--gold); color:#0D0D0D;}

.nav-toggle{display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:8px;}
.nav-toggle span{width:24px; height:2px; background:var(--ivory);}

.mobile-menu{display:none; position:fixed; top:calc(var(--nav-h) + var(--scrubber-h)); left:0; right:0; bottom:0; background:var(--bg); z-index:999; padding:40px 28px; flex-direction:column; gap:28px;}
.mobile-menu.open{display:flex;}
.mobile-menu a{font-family:'Bebas Neue', sans-serif; font-size:32px; color:var(--ivory); border-bottom:1px solid var(--line); padding-bottom:16px;}

.page-header{padding:calc(var(--nav-h) + 120px) 0 60px; border-bottom:1px solid var(--line);}
.page-header h1{font-size:clamp(42px,7vw,84px);}
.page-header p{margin-top:18px; font-size:18px;}

.hero{position:relative; min-height:100vh; display:flex; align-items:center; padding-top:var(--nav-h); overflow:hidden;}
.hero-bg{position:absolute; inset:0; background:radial-gradient(circle at 50% 20%, rgba(201,162,75,0.16), transparent 55%), var(--bg); z-index:0;}
.hero-content{position:relative; z-index:1; max-width:var(--container); margin:0 auto; padding:60px 28px; width:100%;}
.timecode-live{font-family:'IBM Plex Mono', monospace; font-size:14px; color:var(--gold); display:flex; align-items:center; gap:10px; margin-bottom:28px; letter-spacing:0.05em;}
.timecode-live .dot{width:9px; height:9px; border-radius:50%; background:#e14b3f; animation:pulse 1.4s infinite;}
@keyframes pulse{0%,100%{opacity:1;} 50%{opacity:0.25;}}
.hero h1{font-size:clamp(64px,12vw,150px); display:flex; flex-direction:column;}
.hero h1 .line2{color:var(--gold); margin-left:0.6em;}
.hero h1 .line3{margin-left:1.2em;}
.hero-sub{margin-top:28px; font-size:clamp(16px,2vw,20px); max-width:46ch;}
.hero-actions{display:flex; gap:18px; margin-top:40px; flex-wrap:wrap;}

.marquee{border-top:1px solid var(--line); border-bottom:1px solid var(--line); padding:22px 0; overflow:hidden; white-space:nowrap; background:var(--surface);}
.marquee-track{display:inline-flex; gap:48px; animation:scroll-left 26s linear infinite;}
@keyframes scroll-left{0%{transform:translateX(0);} 100%{transform:translateX(-50%);}}
.marquee-track span{font-family:'Bebas Neue', sans-serif; font-size:26px; letter-spacing:0.03em; color:var(--muted); display:inline-flex; align-items:center; gap:48px;}
.marquee-track span em{color:var(--gold); font-style:normal; margin-right:48px;}

section{padding:110px 0;}
.section-head{max-width:640px; margin-bottom:60px;}

.grid-3{display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--line); border:1px solid var(--line);}
.card{background:var(--bg); padding:44px 34px; transition:background .3s ease;}
.card:hover{background:var(--surface);}
.card .tc{font-family:'IBM Plex Mono', monospace; font-size:12px; color:var(--gold); letter-spacing:0.1em; margin-bottom:22px; display:block;}
.card h3{margin-bottom:14px;}
.card p{font-size:15px; margin-bottom:20px;}
.card .more{font-family:'IBM Plex Mono', monospace; font-size:13px; color:var(--ivory); border-bottom:1px solid var(--gold); padding-bottom:3px; display:inline-block;}

.grid-2{display:grid; grid-template-columns:1fr 1fr; gap:2px;}
.shot{position:relative; aspect-ratio:4/5; overflow:hidden; background:var(--surface);}
.shot img{width:100%; height:100%; object-fit:cover; filter:grayscale(0.15) contrast(1.05); transition:transform .5s ease, filter .5s ease;}
.shot:hover img{transform:scale(1.06); filter:grayscale(0) contrast(1.1);}
.shot-caption{position:absolute; left:0; right:0; bottom:0; padding:22px; background:linear-gradient(transparent, rgba(0,0,0,0.85));}
.shot-caption .tc{font-family:'IBM Plex Mono', monospace; font-size:11px; color:var(--amber); letter-spacing:0.08em; display:block; margin-bottom:6px;}
.shot-caption h4{font-family:'Bebas Neue',sans-serif; font-size:22px; color:var(--ivory); font-weight:400;}

.split{display:grid; grid-template-columns:1fr 1fr; gap:70px; align-items:center;}
.split img{width:100%; aspect-ratio:4/3; object-fit:cover; filter:contrast(1.05) saturate(1.05);}
.split .eyebrow{margin-bottom:22px;}
.split p{margin-bottom:18px;}

.tc-list{border-top:1px solid var(--line);}
.tc-row{display:grid; grid-template-columns:140px 1fr; gap:30px; padding:34px 0; border-bottom:1px solid var(--line); align-items:baseline;}
.tc-row .tc{font-family:'IBM Plex Mono', monospace; color:var(--gold); font-size:14px;}
.tc-row h3{margin-bottom:10px;}
.tc-row p{max-width:64ch;}

.cta-band{background:var(--gold); color:#0D0D0D; padding:90px 0; text-align:center;}
.cta-band h2{color:#0D0D0D;}
.cta-band p{color:#3a2f16; margin:0 auto 34px; max-width:50ch;}
.cta-band .btn-solid{background:#0D0D0D; color:var(--ivory); border-color:#0D0D0D;}
.cta-band .btn-solid:hover{background:#1D1B17;}

footer.site-footer{border-top:1px solid var(--line); padding:60px 0 34px;}
.footer-top{display:flex; justify-content:space-between; flex-wrap:wrap; gap:40px; margin-bottom:50px;}
.footer-links{display:flex; gap:60px; flex-wrap:wrap;}
.footer-col h4{font-family:'IBM Plex Mono', monospace; font-size:12px; letter-spacing:0.1em; color:var(--gold); margin-bottom:16px;}
.footer-col a, .footer-col p{display:block; font-size:14px; color:var(--muted); margin-bottom:10px;}
.footer-col a:hover{color:var(--ivory);}
.footer-bottom{display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px; padding-top:26px; border-top:1px solid var(--line); font-family:'IBM Plex Mono', monospace; font-size:12px; color:var(--muted);}

.contact-grid{display:grid; grid-template-columns:1.1fr 0.9fr; gap:70px;}
.field{margin-bottom:24px;}
.field label{display:block; font-family:'IBM Plex Mono', monospace; font-size:12px; letter-spacing:0.08em; color:var(--muted); margin-bottom:10px;}
.field input, .field textarea{width:100%; background:var(--surface); border:1px solid var(--line); color:var(--ivory); padding:14px 16px; font-family:'Work Sans', sans-serif; font-size:15px; border-radius:2px;}
.field input:focus, .field textarea:focus{outline:none; border-color:var(--gold);}
.contact-info .item{padding:24px 0; border-bottom:1px solid var(--line);}
.contact-info .item .tc{font-family:'IBM Plex Mono', monospace; font-size:12px; color:var(--gold); display:block; margin-bottom:8px;}
.contact-info .item a, .contact-info .item span{font-family:'Bebas Neue', sans-serif; font-size:24px; color:var(--ivory);}

.reveal{opacity:0; transform:translateY(24px); transition:opacity .7s ease, transform .7s ease;}
.reveal.in{opacity:1; transform:none;}

/* WP default content fallback (blog posts etc.) */
.entry-content{padding:calc(var(--nav-h) + 60px) 0 100px;}
.entry-content .container{max-width:760px;}
.entry-content img{margin:24px 0; border-radius:2px;}
.entry-content h2,.entry-content h3{margin-top:34px;}

/* ==========================================================================
   Native Gutenberg block styling — so content typed in the normal WordPress
   editor (Page editor) automatically matches the Geetanum brand.
   ========================================================================== */

.entry-content.wide .container{max-width:var(--container);}

.entry-content p{color:var(--ivory); max-width:70ch; margin-bottom:18px;}
.entry-content h1{font-size:clamp(42px,7vw,84px); margin-bottom:20px;}
.entry-content h2{margin-top:50px;}
.entry-content h3{margin-top:30px;}
.entry-content ul, .entry-content ol{color:var(--ivory); margin:0 0 20px 22px;}
.entry-content li{margin-bottom:8px;}

.entry-content .wp-block-button__link{
  font-family:'IBM Plex Mono', monospace;
  font-size:14px;
  letter-spacing:0.04em;
  padding:14px 26px;
  border-radius:2px;
  background:var(--gold);
  color:#0D0D0D !important;
  border:1px solid var(--gold);
  transition:background .25s ease, transform .2s ease;
}
.entry-content .wp-block-button__link:hover{background:var(--amber); transform:translateY(-2px);}
.entry-content .is-style-outline .wp-block-button__link{
  background:transparent;
  color:var(--ivory) !important;
  border-color:var(--line);
}
.entry-content .is-style-outline .wp-block-button__link:hover{border-color:var(--gold); color:var(--gold) !important;}

.entry-content .wp-block-columns{
  gap:60px;
  align-items:center;
  margin:60px 0;
}
.entry-content .wp-block-column img{
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
  filter:contrast(1.05) saturate(1.05);
  margin:0;
}

.entry-content .wp-block-gallery{
  gap:2px !important;
  margin:40px 0;
}
.entry-content .wp-block-gallery .wp-block-image{margin:0;}
.entry-content .wp-block-gallery .wp-block-image img{
  filter:grayscale(0.15) contrast(1.05);
  transition:transform .5s ease, filter .5s ease;
  aspect-ratio:4/5;
  object-fit:cover;
}
.entry-content .wp-block-gallery .wp-block-image img:hover{
  transform:scale(1.04);
  filter:grayscale(0) contrast(1.1);
}
.entry-content .wp-block-gallery figcaption{
  font-family:'IBM Plex Mono', monospace;
  font-size:12px;
  color:var(--amber);
  letter-spacing:0.05em;
}

.entry-content .wp-block-group.has-background{
  padding:60px 40px;
  margin:60px 0;
  border-radius:2px;
}
.entry-content .wp-block-group.has-geetanum-gold-background-color{color:#0D0D0D;}
.entry-content .wp-block-group.has-geetanum-gold-background-color p{color:#3a2f16;}
.entry-content .wp-block-group.has-geetanum-gold-background-color h2,
.entry-content .wp-block-group.has-geetanum-gold-background-color h3{color:#0D0D0D;}

.entry-content .wp-block-quote{
  border-left:3px solid var(--gold);
  padding-left:24px;
  margin:34px 0;
  font-family:'IBM Plex Mono', monospace;
  color:var(--gold);
  font-size:15px;
}

.entry-content .wp-block-separator{border-color:var(--line); margin:50px 0;}

.page-header .page-subtitle{margin-top:18px; font-size:18px; color:var(--muted); max-width:60ch;}

@media (max-width:860px){
  .nav-links, .nav-cta{display:none;}
  .nav-toggle{display:flex;}
  .grid-3{grid-template-columns:1fr;}
  .grid-2{grid-template-columns:1fr;}
  .split{grid-template-columns:1fr; gap:34px;}
  .contact-grid{grid-template-columns:1fr;}
  .footer-top{flex-direction:column;}
  .tc-row{grid-template-columns:1fr; gap:8px;}
}
