@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;
}















/* hero section  */

.hero-refresh {
    height: 100vh;
    width: 100%;
    position: relative;
    background: #000;
    overflow: hidden;
    color: white;
}

/* Media Handling */
.hero-media-container {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 100%);
    z-index: 2;
}

/* Typography */
.hero-title {
    font-size: clamp(3.5rem, 10vw, 8rem);
    font-weight: 700;
    line-height: 0.85;
    letter-spacing: -3px;
    margin: 20px 0;
}

.text-gold {
    color: #c5a059;
}

.gold-label {
    letter-spacing: 5px;
    text-transform: uppercase;
    font-size: 0.75rem;
    color: #c5a059;
    margin-bottom: 15px;
}

/* Buttons & Links */
.btn-luxury {
    background: #c5a059;
    color: white;
    padding: 18px 40px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: 700;
    transition: 0.4s;
}

.btn-luxury:hover {
    background: white;
    color: black;
}

.link-watch {
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.play-icon {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s;
}

.link-watch:hover .play-icon {
    background: white;
    color: black;
}

.hero-bottom-edge {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, #fdfbf738, transparent);
    z-index: 4;
}


















/* nararative section  */

.narrative-section {
    background-color: #fdfbf7;
    /* padding: 160px 0; */
    overflow: hidden;
}

.narrative-row {
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 50px;
}

.narrative-visual {
    width: 60%;
    height: 600px;
    z-index: 1;
    overflow: hidden;
}

.narrative-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(20%) contrast(1.1);
    transition: transform 2s ease;
}

.narrative-content {
    width: 45%;
    background: #fff;
    padding: 80px 60px;
    position: absolute;
    right: 5%;
    z-index: 2;
    box-shadow: 40px 40px 100px rgba(0,0,0,0.05);
}

/* Reverse Layout Logic */
.narrative-row.reverse .narrative-visual {
    margin-left: auto;
}

.narrative-row.reverse .narrative-content {
    left: 5%;
    right: auto;
}

/* Typography & Details */
.narrative-h2 {
    font-size: 3.5rem;
    line-height: 1;
    margin-bottom: 30px;
    font-family: 'Cormorant Garamond', serif;
}

.narrative-line {
    width: 60px;
    height: 1px;
    background: #c5a059;
    margin-top: 40px;
}

/* Responsive Mobile Fix */
@media (max-width: 991px) {
    .narrative-row, .narrative-row.reverse {
        flex-direction: column;
        margin-bottom: 50px;
    }
    .narrative-visual, .narrative-content {
        width: 100%;
        position: static;
        padding: 40px 20px;
    }
    .narrative-visual { height: 400px; }
}











/* contact direct links  */


.contact-interaction {
    min-height: 90vh;
    background: #fdfbf7;
    display: flex;
}

.bg-cream { background: #fdfbf7; }

.contact-h2 {
    font-size: 3.5rem;
    font-family: 'Cormorant Garamond', serif;
    line-height: 1;
    margin-bottom: 2rem;
}

/* Method Items Styling */
.method-item {
    display: flex;
    gap: 25px;
    padding: 30px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.method-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem;
    color: #c5a059;
    font-weight: 700;
}

.method-details h5 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.method-details p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 10px;
}

.method-link {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #c5a059;
    text-decoration: none;
    font-weight: 700;
}

/* Visual Side Styling */
.contact-visual-wrap {
    width: 100%;
    height: 100%;
    position: relative;
}

.contact-visual-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9);
}

.location-card {
    position: absolute;
    bottom: 50px;
    right: 50px;
    background: white;
    padding: 40px;
    width: 350px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    z-index: 5;
}

.map-btn {
    color: #1a1a1a;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    text-decoration: none;
}

@media (max-width: 991px) {
    .contact-interaction { flex-direction: column; }
    .contact-visual-wrap { height: 400px; }
    .location-card { position: static; width: 100%; box-shadow: none; padding: 40px 20px; }
}





















/* form section   */
/* --- CORE CSS FIXES --- */
.form-section {
    background-color: #fdfbf7;
    position: relative;
    z-index: 5;
}

.form-container-glass {
    box-shadow: 0 40px 80px rgba(0,0,0,0.08);
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    /* This prevents the form from being "unclickable" during scroll */
    pointer-events: all !important; 
}

.border-radius-left { border-radius: 4px 0 0 4px; }
.border-radius-right { border-radius: 0 4px 4px 0; }

.form-label-custom {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
    font-weight: 700;
    margin-bottom: 5px;
    display: block;
}

.input-line {
    width: 100%;
    border: none !important;
    border-bottom: 1px solid #e0e0e0 !important;
    padding: 10px 0;
    font-size: 1rem;
    color: #1a1a1a;
    background: transparent !important;
    transition: border-color 0.4s ease;
    border-radius: 0 !important;
    outline: none !important;
    position: relative;
    z-index: 11;
}

.input-line:focus {
    border-bottom-color: #c5a059 !important;
}

/* Fix for Select Arrow */
.select-custom {
    cursor: pointer;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath fill='%23c5a059' d='M0 3l5 5 5-5z'/%3E%3C/svg%3E") no-repeat right center;
}

.btn-submit {
    background: transparent;
    border: none;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0;
    cursor: pointer;
}

.btn-line {
    display: block;
    width: 30px;
    height: 1px;
    background: #c5a059;
    margin-top: 8px;
    transition: width 0.4s ease;
}

.btn-submit:hover .btn-line {
    width: 60px;
}

@media (max-width: 768px) {
    .border-radius-left, .border-radius-right { border-radius: 4px; }
    .bg-dark { padding: 40px !important; }
}




















/* 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; }
}










