/* ============================
   DEMO 12: ULTRA-LUXURY (FEEL RICH)
   ============================ */

   :root {
    --bg-light: #fdfbf7; /* Cream/Champagne */
    --bg-dark: #050a15;  /* Deep Midnight Navy */
    --gold: #c5a059;     /* Metallic Gold */
    --gold-light: #e6ce9e;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    
    --font-heading: 'Cormorant Garamond', serif;
    --font-sans: 'Jost', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    font-family: var(--font-sans);
    font-weight: 300;
    line-height: 1.8;
    overflow-x: hidden;
}

h1, h2, h3, h4, .brand-logo {
    font-family: var(--font-heading);
    font-weight: 400;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.4s ease;
}

.text-center { text-align: center; }
.text-white { color: var(--text-light) !important; }

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 5%;
}

.container-fluid {
    width: 100%;
    padding: 0 5%;
}

/* ============================
   PRELOADER
   ============================ */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--bg-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 1.5s ease, visibility 1.5s;
}

.loader-crest {
    width: 80px;
    height: 80px;
    border: 1px solid var(--gold);
    display: flex;
    justify-content: center;
    align-items: center;
    transform: rotate(45deg);
    animation: crestPulse 2s infinite alternate;
}

.loader-crest span {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--gold);
    transform: rotate(-45deg);
}

@keyframes crestPulse {
    0% { box-shadow: 0 0 0 rgba(197, 160, 89, 0); }
    100% { box-shadow: 0 0 20px rgba(197, 160, 89, 0.4); }
}

/* ============================
   NAVIGATION
   ============================ */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 30px 0;
    z-index: 1000;
    transition: 0.5s ease;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.navbar.scrolled {
    background: var(--bg-dark);
    padding: 15px 0;
    border-bottom: 1px solid rgba(197, 160, 89, 0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
}

.menu-left, .menu-right {
    display: flex;
    gap: 40px;
    flex: 1;
}
.menu-right { justify-content: flex-end; }

.nav-link {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #fff;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: 0.4s;
}
.nav-link:hover::after { width: 100%; }
.nav-link:hover { color: var(--gold); }

.brand-logo {
    font-size: 2.5rem;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    flex: 0 0 auto;
    text-align: center;
}

.menu-toggle { display: none; color: var(--gold); font-size: 1.5rem; cursor: pointer; }

.demo-badge {
    position: fixed;
    top: 100px;
    right: 0;
    background: var(--gold);
    color: var(--bg-dark);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 8px 15px;
    z-index: 100;
    font-weight: 500;
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(5, 10, 21, 0.4) 0%, rgba(5, 10, 21, 0.8) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: #fff;
}

.eyebrow {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--gold);
    display: block;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 5.5rem;
    line-height: 1;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.1rem;
    font-style: italic;
    font-family: var(--font-heading);
    margin-bottom: 40px;
}

.btn-gold {
    display: inline-block;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 15px 40px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    transition: 0.4s;
    background: rgba(0,0,0,0.2);
}
.btn-gold:hover {
    background: var(--gold);
    color: var(--bg-dark);
}

.fade-up { opacity: 0; transform: translateY(40px); animation: fadeUp 1s forwards cubic-bezier(0.2, 0.8, 0.2, 1); }
.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }
.delay-3 { animation-delay: 0.9s; }

@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* ============================
   INTRO SECTION
   ============================ */
.intro-section {
    padding: 150px 0;
    background: var(--bg-light);
}

.gold-subtitle {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 20px;
}

.section-title {
    font-size: 3rem;
    color: var(--text-dark);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.2;
}

.crest-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 40px 0;
    color: var(--gold);
}
.crest-divider .line {
    width: 60px;
    height: 1px;
    background: var(--gold);
}

.body-text {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 40px;
    color: #555;
    text-align: justify;
    text-align-last: center;
}

.signature { height: 60px; opacity: 0.8; }

/* ============================
   VISUAL BREAK / DESTINATION
   ============================ */
.visual-break {
    padding: 100px 0;
}

.v-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.v-img img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border: 1px solid var(--gold);
    padding: 10px;
    background: var(--bg-light);
}

.v-text {
    text-align: center;
    padding: 0 20px;
}

.v-text h3 {
    font-size: 2.5rem;
    font-style: italic;
    color: var(--gold);
    margin-bottom: 20px;
    line-height: 1.3;
}

.v-text p { font-size: 0.95rem; color: #555; }

/* ============================
   COLLECTIONS (PORTFOLIO)
   ============================ */
.collections-section {
    padding: 150px 0;
    background: var(--bg-dark);
    color: #fff;
}

.collection-slider {
    display: flex;
    gap: 30px;
    margin-top: 60px;
    overflow-x: auto;
    padding: 0 5%;
    scrollbar-width: none; /* Firefox */
}
.collection-slider::-webkit-scrollbar { display: none; }

.c-card {
    min-width: 400px;
    position: relative;
    cursor: pointer;
}

.c-card img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    filter: brightness(0.7);
    transition: 0.8s ease;
}

.c-info {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    text-align: left;
    border-left: 2px solid var(--gold);
    padding-left: 20px;
    transition: 0.5s;
}

.c-info h4 { font-size: 1.8rem; margin-bottom: 5px; }
.c-info span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
}

.c-card:hover img { filter: brightness(1); }
.c-card:hover .c-info { transform: translateY(-10px); }

/* ============================
   TESTIMONIAL
   ============================ */
.testimonial-section {
    padding: 120px 0;
    background: var(--bg-light);
}

.quote-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 30px;
}

.quote-text {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-style: italic;
    line-height: 1.4;
    max-width: 800px;
    margin: 0 auto 30px;
    color: var(--text-dark);
}

.quote-author {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #777;
}

/* ============================
   CONTACT / INQUIRY
   ============================ */
.contact-section {
    padding: 120px 0;
    background: var(--bg-light);
}

.inquiry-box {
    background: var(--bg-dark);
    padding: 20px;
}

.border-inner {
    border: 1px solid rgba(197, 160, 89, 0.3);
    padding: 80px 40px;
    text-align: center;
    color: #fff;
}

.border-inner h2 { font-size: 3rem; margin-bottom: 20px; }
.c-text { color: #aaa; margin-bottom: 50px; max-width: 600px; margin-left: auto; margin-right: auto; }

.luxury-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.luxury-form input, .luxury-form textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding: 15px 0;
    color: #fff;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: 0.4s;
}
.luxury-form input:focus, .luxury-form textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.btn-gold-solid {
    background: var(--gold);
    color: var(--bg-dark);
    border: none;
    padding: 20px 60px;
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    margin-top: 30px;
    transition: 0.4s;
}
.btn-gold-solid:hover { background: #fff; }

/* ============================
   FOOTER
   ============================ */
.footer {
    background: var(--bg-dark);
    color: #fff;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.f-brand h2 { font-size: 2.5rem; color: var(--gold); margin-bottom: 10px; }
.f-brand p { color: #888; font-style: italic; font-family: var(--font-heading); }

.f-contact h4, .f-social h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 20px;
}

.f-contact p, .f-social a {
    display: block;
    color: #aaa;
    margin-bottom: 10px;
    font-size: 0.9rem;
}
.f-social a:hover { color: #fff; }

.f-bottom {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #666;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.gold-link { color: var(--gold); }

.back-to-master {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: var(--gold);
    padding: 10px 15px;
    color: var(--bg-dark);
    font-size: 0.8rem;
    border-radius: 0;
    z-index: 1000;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.back-to-master:hover { background: #fff; }

/* SCROLL REVEAL */
.reveal { opacity: 0; transform: translateY(40px); transition: 1.2s cubic-bezier(0.2, 0.8, 0.2, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* Responsive */
@media (max-width: 992px) {
    .menu-left, .menu-right { display: none; }
    .menu-toggle { display: block; }
    .v-grid { grid-template-columns: 1fr; }
    .v-img img { height: 400px; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 3.5rem; }
    .section-title { font-size: 2.2rem; }
    .c-card { min-width: 300px; }
    .border-inner { padding: 40px 20px; }
    .form-row { flex-direction: column; gap: 0; margin-bottom: 0; }
    .f-bottom { flex-direction: column; gap: 20px; text-align: center; }
}
