/* ================= VARIABLE TWEAKS ================= */
:root {
  --logo-min: 48px;
  --logo-max: 120px;
  --center-gap-large: 64px;
  --center-gap-small: 24px;
  --center-font-size-large: 48px;
  --center-font-size-small: 20px;
  --center-letter-spacing: 0.06em;
  --blur-strength: 0px;
}

/* ================= RESET & BASE ================= */
*{box-sizing:border-box;margin:0;padding:0}
html,body{height:100%}
body.serac {
  font-family: "orpheus-pro", Montserrat, Arial, sans-serif;
  color: #fff;
  background: #000;
  overflow: hidden;
}

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

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: blur(var(--blur-strength));
}

.hero::after { 
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0); /* optional overlay */
  z-index: 0;
}

.center-links {
  position: relative;
  z-index: 1;
}




/* ================= HEADER ================= */
.site-header {
  position: absolute;
  top:0; left:0; right:0;
  padding: 10px 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  background:none !important;
  backdrop-filter:none !important;
  box-shadow:none !important;
  z-index:1200;
}
/* .brand-logo {
  height: clamp(var(--logo-min), 8vw, var(--logo-max));
  width:auto;
} */

.brand-title {
  position: absolute;
  left:50%; transform: translateX(-50%);
  font-family: "Playfair Display", serif;
  font-weight:700;
  font-size: clamp(20px, 3.4vw, 44px);
  color:#fff; 
  text-align:center;
  text-shadow: 0 4px 12px rgba(0,0,0,0.45);
  z-index:1250;
  pointer-events:none;
}

 .brand-logo { */
    position: absolute;      /* Keep it relative to top-left */ 
    top: 30px;               /* Margin from top edge */  
    left: 20px;              /* Margin from left edge to keep distance from brand name */ 
    height: clamp(80px, 10vw, 200px); /* Responsive height: grows/shrinks */ 
    width: auto;             /* Maintain aspect ratio */ 
    z-index: 1300;           /* Above background */ 
}


.header-right {
  display:flex;
  align-items:center;
  gap:12px;
}
              
.header-right .home-link,
.header-right .social-link {
  color:#fff;
  text-decoration:none;
  font-size:14px;
}
              
.header-right .social-link i { font-size:18px; }

/* Hamburger */
.hamburger {
  display:none;
  background:none; 
  border:none;
  padding:8px; 
  cursor:pointer;
  width:44px; 
  height:40px;
  position:relative;
}
              
.hamburger span {
  display:block;
  height:2.5px; 
  width:22px;
  background:#fff; 
  margin:6px auto;
  border-radius:2px;
  transition: transform .28s ease, opacity .28s ease;
}
              
.hamburger.is-active span:nth-child(1){ transform: translateY(8px) rotate(45deg); }
.hamburger.is-active span:nth-child(2){ opacity:0; transform: scaleX(.2); }
.hamburger.is-active span:nth-child(3){ transform: translateY(-8px) rotate(-45deg); }


/* ================= HERO CENTER LINKS ================= */ 
.center-links {
  z-index: 1100;
  display: flex;
  flex-direction: row;              /* Horizontal by default */
  align-items: center;              /* Vertically aligned in hero */
  justify-content: center;          /* Center horizontally */
  gap: 180px;                        /* Flexible spacing between links */
  flex-wrap: nowrap;                 /* Keep horizontal until mobile */
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;               /* Remove top offset */
  box-sizing: border-box;
}

.center-link {
  font-family: orpheus-pro;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  text-decoration: underline;
  text-underline-offset: .3em;
  text-decoration-thickness: 1px;
  line-height: 1;
  letter-spacing: 0.05em;
  white-space: nowrap;
  text-align: center;
  display: inline-block;
  transform: scaleY(2);                /* Tall letters */
  font-size: clamp(20px, 3vw, 70px);   /* Responsive scaling */
}


/* ================= RIGHT SIDE OVERLAY MENU ================= */
.right-nav-overlay {
  position: fixed;
  top:0; right:0;
  height:100%; 
  width:260px;
  background: rgba(0,0,0,0.95);
  display:flex;
  flex-direction: column;
  align-items:flex-start;
  padding:60px 25px;
  gap:24px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index:1500;
}
              
.right-nav-overlay.open { transform: translateX(0); }
.right-nav-overlay a {
  color:#fff;
  font-size:18px;
  text-decoration:none;
  display:flex;
  align-items:center;
  gap:12px;
}
              
.right-nav-overlay a:hover { opacity:0.7; }
.right-nav-overlay .overlay-close {
  position:absolute; 
  top:18px; right:18px;
  background:none; border:none;
  color:#fff; font-size:36px;
  cursor:pointer;
}

/* ================= FOOTER ================= */
.site-footer {
  position:absolute;
  bottom:0; left:0; right:0;
  padding:10px 20px;
  display:flex;
  flex-direction: column;
  align-items:center;
  justify-content:center;
  gap:6px;
  z-index:1200;
}
              
.site-footer .tagline{ 
  font-family: "Playfair Display", serif; 
  font-style:italic; 
  font-size:16px; 
  color: rgba(255,255,255,0.95); 
}
              
.site-footer .copyright{ 
  font-size:13px; 
  color: rgba(255,255,255,0.75); 
}

              
/* ================= RESPONSIVE ================= */
 @media (max-width: 900px){
  .hamburger{ display:inline-block; }
  .header-right .home-link,
  .header-right .social-link{ display:none; }
  .brand-title{ font-size: clamp(18px, 5.8vw, 34px); }
} 

/* --------mobile reponsive------------ */
 @media (max-width: 600px) {
    .hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover; /* keeps it cropped nicely */
  z-index: 0;
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35); /* dark tint for readability */
  z-index: 1;
}

.center-links {
  position: relative;
  z-index: 2;
}

@media (max-width: 420px){
  :root{ --center-font-size-small: 18px; }
  .brand-logo{ height: clamp(36px, 12vw, 72px); }
  .brand-title{ font-size: clamp(16px, 7vw, 22px); }
}

@media (max-width: 600px) {
  .brand-logo { 
    height: clamp(50px, 15vw, 120px); /* Shrink more on mobile */
     left: 10px;                        /* Maintain some margin */
    top: 10px;} 
}
              

@media (max-width: 420px){
  :root{ --center-font-size-small: 18px; }
  .brand-logo{ height: clamp(36px, 12vw, 72px); }
  .brand-title{ font-size: clamp(16px, 7vw, 22px); }
}


@media (max-width: 600px) {
  .center-links {
    flex-direction: column;      
    gap: 40px;
  }
}
