@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,600;1,400&family=Montserrat:wght@300;500&display=swap");

:root {
  --bg: #f8f6f200; /* Not pure white, "Museum White" */
  --gold: #c5a059;
  --dark: #1a1a1a;
}

body {
  background: var(--bg);
  font-family: "Montserrat", sans-serif;
  color: var(--dark);
  overflow-x: hidden;
  cursor: none; /* For custom cursor */
}



/* Cursor Elements */
#cursor {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
}
#cursor-follower {
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.1s ease;
}


@media (hover: none) {
  body {
    cursor: auto;
  }
  #cursor,
  #cursor-follower {
    display: none;
  }
}







/* updatewd navbar  */
/* Navbar Base State */
.main-nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999; /* Ensure it's on top of everything */
    padding: 30px 0;
    transition: all 0.4s ease-in-out;
    background: transparent;
}

/* Glassmorphism Effect on Scroll */
.main-nav.scrolled {
    padding: 15px 0;
    background: rgba(253, 251, 247, 0.7); /* Semi-transparent */
    backdrop-filter: blur(15px); /* The Glass Blur */
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 5px;
    color: #FFFFFF;
    text-decoration: none;
}

/* Desktop Links */
.nav-links { gap: 40px; }
.n-link {
    text-decoration: none;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #FFFFFF;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.nav-btn {
    padding: 10px 20px;
    border: 1px solid #c5a059;
    color: #c5a059;
    text-decoration: none;
    font-size: 0.7rem;
    letter-spacing: 2px;
}

/* Hamburger Icon */
.nav-toggle {
    background: transparent;
    border: none;
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
    z-index: 10001;
}

.line {
    position: absolute;
    height: 2px;
    width: 100%;
    background: #C5A059;
    left: 0;
    transition: 0.3s;
}

.line-1 { top: 0; }
.line-2 { bottom: 0; width: 70%; left: 30%; }

/* Hamburger X State */
.nav-toggle.active .line-1 { transform: translateY(9px) rotate(45deg); }
.nav-toggle.active .line-2 { transform: translateY(-9px) rotate(-45deg); width: 100%; left: 0; }

/* Mobile Overlay Menu */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fdfbf7;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden; /* Hidden by default */
    opacity: 0;
    transition: all 0.5s ease;
}

.mobile-overlay.active {
    visibility: visible;
    opacity: 1;
}

.overlay-content { text-align: center; }
.m-link {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: #1a1a1a;
    text-decoration: none;
    margin-bottom: 20px;
}



/* Navbar color change AFTER hero */
.main-nav.light {
    background: rgba(253, 251, 247, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

/* Logo color change */
.main-nav.light .nav-logo {
    color: #C5A059;
}

/* Nav links color change */
.main-nav.light .n-link {
    color: #1a1a1a;
}

/* Hamburger lines */
.main-nav.light .line {
    /* background: #1a1a1a; */
    background: #C5A059;
}
















/* about section  */
.about-hero-section {
    position: relative;
    background: #000;
}

/* 1. Video Container */
.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures video fills screen without stretching */
    filter: brightness(0.7) contrast(1.1);
}

/* 2. Overlays for Legibility */
.video-overlay-dark {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3); /* Global darkening */
    z-index: 2;
}

.video-overlay-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, transparent 20%, rgba(0,0,0,0.8) 100%);
    z-index: 3;
}

/* 3. Text & Content */
.hero-content {
    position: relative;
    z-index: 10;
    height: 100%;
    padding: 0 20px;
}

.hero-main-title {
    font-size: clamp(3rem, 8vw, 6.5rem);
    letter-spacing: -2px;
}

.hero-line-anim {
    width: 0;
    height: 1px;
    background: var(--gold);
    margin-top: 10px;
}

/* 4. Mouse Scroll Animation */
.scroll-down-indicator {
    position: absolute;
    bottom: 40px;
    opacity: 0.6;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid #fff;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: #fff;
    border-radius: 2px;
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(15px); }
}






/* --- Section 1: Philosophy --- */
.heritage-reveal-section {
    background-color: #fdfbf7;
    padding: 50px 0;
    overflow: hidden;
}

/* Base Mobile-First Layout (Vertical Stack) */
.heritage-grid-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    position: relative;
}

.heritage-image-wrap {
    width: 100%;
    height: 400px; /* Mobile height */
    border-radius: 4px;
    overflow: hidden;
    order: 1; /* Image first on mobile */
}

.heritage-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.heritage-box {
    background: white;
    padding: 30px;
    width: 100%;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    z-index: 10;
    order: 2; /* Content follows on mobile */
}

.heritage-box h3 {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #c5a059;
    margin-bottom: 15px;
}

.heritage-box p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* DESKTOP LAYOUT (The Floating/Overlapping Effect) */
@media (min-width: 992px) {
    .heritage-grid-container {
        display: block; /* Switch to relative positioning for overlap */
        height: 650px;
    }

    .heritage-image-wrap {
        width: 80%;
        height: 100%;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .heritage-box {
        position: absolute;
        width: 350px;
    }

    .box-left {
        top: 15%;
        left: 0;
        z-index: 5;
    }

    .box-right {
        bottom: 15%;
        right: 0;
        z-index: 5;
    }
}











/* --- Section 2: Founder's Vision --- */
.mastery-section {
    background-color: #fdfbf7;
    padding: 50px 0;
    overflow: hidden;
}

.mastery-image-composition {
    position: relative;
    padding-right: 15%; /* Space for overlap */
}

/* Main Background Image */
.main-img-wrap {
    width: 100%;
    height: 600px;
    overflow: hidden;
    clip-path: inset(0 0 0 0);
}

.master-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.1);
}

/* Overlapping Detail Image */
.detail-img-wrap {
    position: absolute;
    bottom: -50px;
    right: 0;
    width: 280px;
    height: 380px;
    border: 15px solid #fdfbf7; /* Frame effect */
    box-shadow: 20px 20px 60px rgba(0,0,0,0.1);
    overflow: hidden;
    z-index: 2;
}

.detail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Text Styling */
.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: 700;
}

.feature-item h5 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.feature-item p {
    font-size: 0.85rem;
    color: #777;
    margin: 0;
}

.btn-minimal {
    padding: 10px 20px;
    border: 1px solid #c5a059;
    color: #c5a059;
    text-decoration: none;
    /* font-size: 0.7rem; */
    letter-spacing: 2px;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .mastery-image-composition { padding-right: 0; margin-bottom: 80px; }
    .detail-img-wrap { width: 200px; height: 280px; bottom: -30px; }
}
















/* testimonial section  */
/* --- Fixed CSS Styles --- */
.timeline-section {
    padding: 100px 0 0 0;
    background-color: #fdfbf7;
    position: relative;
    overflow: hidden; /* Important for GSAP entry animations */
}

/* Fixed Line Logic */
.timeline-line-bg {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(0,0,0,0.08);
    transform: translateX(-50%);
    z-index: 1;
}

.line-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%; /* Controlled by GSAP */
    background: #c5a059;
}

.timeline-item {
    position: relative;
    margin-bottom: 100px;
    z-index: 2; /* Ensures content is above the line-bg */
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 20px;
    width: 14px;
    height: 14px;
    background: #c5a059;
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 10;
    box-shadow: 0 0 0 6px #fdfbf7;
}

/* Image Visibility Fixes */
.timeline-img-wrap {
    width: 100%;
    height: 400px; /* Force height */
    overflow: hidden;
    border-radius: 4px;
    display: block; /* Ensure visibility */
    background: #eee; /* Placeholder color */
}

.timeline-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Typography Fixes */
.year-label {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    color: #c5a059;
    line-height: 1;
    margin-bottom: 10px;
}

.timeline-h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #1a1a1a;
}

.timeline-p {
    color: #666;
    font-size: 1rem;
    max-width: 400px;
}

/* Mobile Responsive Fix */
@media (max-width: 767px) {
    .timeline-line-bg, .timeline-dot { left: 30px; transform: none; }
    .timeline-text, .timeline-img-wrap { padding-left: 60px; margin-left: 0; text-align: left !important; }
    .timeline-img-wrap { height: 250px; }
    .timeline-p { max-width: 100%; }
}














/* acievement section  */

.spirit-section {
    position: relative;
    background: #000;
    overflow: hidden;
    height: 120vh; /* Extra height for scroll feel */
}

/* Background Media Container */
.spirit-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.spirit-media {
    width: 100%;
    height: 100%;
    opacity: 0.5; /* Darkened for text readability */
}

.spirit-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content & Text Styling */
.spirit-content {
    position: relative;
    z-index: 10;
}

.spirit-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(4rem, 15vw, 12rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: 20px;
    line-height: 0.9;
    margin: 40px 0;
}

.spirit-description p {
    color: #bbb;
    font-size: 1.1rem;
    letter-spacing: 2px;
    max-width: 600px;
    margin: 0 auto;
}

/* Luxury Button */
.cta-luxury {
    display: inline-block;
    padding: 20px 50px;
    background: transparent;
    border: 1px solid #c5a059;
    color: #c5a059;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 0.8rem;
    transition: 0.5s all cubic-bezier(0.19, 1, 0.22, 1);
}

.cta-luxury:hover {
    background: #c5a059;
    color: #fff;
    box-shadow: 0 0 30px rgba(197, 160, 89, 0.4);
}
























/* footer section  */

.studio-footer {
    background-color: #e2e0db;
    padding: 15px 0 10px 0;
    border-top: 1px solid rgba(0,0,0,0.05);
}

/* 1. Logo Styling */
.footer-brand-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 15px;
    margin-bottom: 5px;
    color: #C5A059;
}

.footer-brand-sub {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: #c5a059;
    margin-bottom: 25px;
}

/* 2. Navigation Styling */
.footer-vertical-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-vertical-nav a {
    text-decoration: none;
    color: #666;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: all 0.3s ease;
}

.footer-vertical-nav a:hover {
    color: #000;
    letter-spacing: 4px;
}

.nav-dot {
    width: 4px;
    height: 4px;
    background: #c5a059;
    border-radius: 50%;
    opacity: 0.5;
}

/* 3. Social Styling */
.footer-social-wrap {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.social-circle {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    text-decoration: none;
    transition: all 0.4s ease;
}

.social-circle:hover {
    border-color: #c5a059;
    color: #c5a059;
    transform: translateY(-5px);
}

.footer-copyright {
    font-size: 0.6rem;
    letter-spacing: 2px;
    color: #666666;
    text-transform: uppercase;
    margin-bottom: 0;
}


.footer-section-bottom span {
    font-size: 0.6rem;
    letter-spacing: 2px;
    color: #666666;
    text-transform: uppercase;
}

.footer-section-bottom span a {
    text-decoration: none;
    color: #666666;
}




/* Responsive */
@media (max-width: 768px) {
    .footer-vertical-nav {
        flex-direction: column;
        gap: 15px;
    }
    .nav-dot { display: none; }
    .footer-brand-logo { font-size: 2.5rem; letter-spacing: 10px; }
}
