/* IMPORTS: The "Vogue" Typography */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;700&family=Montserrat:wght@300;400;500&display=swap');

/* VARIABLES: The "Platinum & Champagne" Palette */
:root {
    --bg-body: #080808;
    --bg-panel: #121212;

    --text-platinum: #E0E1DD;
    --text-silver: #B0B0B0;
    --text-dim: #666666;

    --gold-champagne: #C5A059;
    --gold-highlight: #E6C88B;

    --border-thin: 1px solid rgba(255, 255, 255, 0.08);
}

/* GLOBAL RESETS */
body {
    background-color: var(--bg-body);
    color: var(--text-silver);
    /* Default text is now Silver */
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    line-height: 1.8;
    overflow-x: hidden;
}

/* TYPOGRAPHY */
h1,
h2,
h3,
h4,
.navbar-brand {
    font-family: 'Cinzel', serif;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-platinum);
    /* Headings are Platinum */
}

/* The "Golden Touch" Class */
.text-gold {
    color: var(--gold-champagne) !important;
}

/* NAVBAR */
.navbar {
    background: rgba(8, 8, 8, 0.9) !important;
    backdrop-filter: blur(15px);
    padding: 25px 0;
    border-bottom: 1px solid rgba(197, 160, 89, 0.1);
    /* Very subtle gold border */
    transition: 0.4s;
}

.navbar-brand {
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 3px;
    color: var(--text-platinum) !important;
}

.nav-link {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--text-silver) !important;
    margin-left: 30px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--gold-champagne) !important;
}

/* HERO SECTION */
.hero-section {
    height: 100vh;
    background: linear-gradient(to bottom, rgba(8, 8, 8, 0.4), rgba(8, 8, 8, 0.9)), url('https://images.unsplash.com/photo-1537996194471-e657df975ab4?q=80&w=1920&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-border {
    position: absolute;
    top: 40px;
    left: 40px;
    right: 40px;
    bottom: 40px;
    border: 1px solid rgba(197, 160, 89, 0.3);
    /* Champagne border */
    pointer-events: none;
}

.hero-content h1 {
    font-size: 5rem;
    letter-spacing: 2px;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--text-platinum);
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.hero-content p {
    font-size: 0.9rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-champagne);
    margin-bottom: 40px;
}

/* BUTTONS: Refined Champagne Style */
.btn-gold {
    background: transparent;
    color: var(--gold-champagne);
    border: 1px solid var(--gold-champagne);
    padding: 15px 45px;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 3px;
    transition: all 0.5s ease;
    border-radius: 0;
}

.btn-gold:hover {
    background: var(--gold-champagne);
    color: #080808;
    /* Dark text on gold button */
    box-shadow: 0 0 25px rgba(197, 160, 89, 0.2);
}

/* SECTIONS */
.content-block {
    padding: 120px 0;
    background-color: var(--bg-body);
}

.content-block.alt-bg {
    background-color: var(--bg-panel);
}

.section-title {
    font-size: 3rem;
    margin-bottom: 25px;
    color: var(--text-platinum);
}

.text-muted {
    color: var(--text-silver) !important;
    /* Overriding Bootstrap mute */
}

.img-luxury {
    width: 100%;
    height: 600px;
    object-fit: cover;
    filter: sepia(10%) contrast(1.1);
    /* Subtle vintage feel */
    opacity: 0.9;
    transition: 0.5s;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.img-luxury:hover {
    opacity: 1;
    filter: sepia(0%) contrast(1.2);
}

/* NUMBERS SECTION */
.stats-section {
    padding: 100px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: #0b0b0b;
}

.stat-number {
    font-family: 'Cinzel', serif;
    font-size: 4rem;
    color: var(--gold-champagne);
    opacity: 0.9;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-silver);
}

/* TESTIMONIALS */
.testimonial-card {
    border: 1px solid rgba(197, 160, 89, 0.15);
    /* Subtle gold border */
    padding: 60px;
    text-align: center;
    background: linear-gradient(to bottom, rgba(20, 20, 20, 0.5), rgba(10, 10, 10, 0.8));
}

.quote-icon {
    font-size: 2rem;
    color: var(--gold-champagne);
    margin-bottom: 25px;
    opacity: 0.6;
}

.testimonial-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-platinum);
    margin-bottom: 30px;
    line-height: 1.8;
}

.client-name {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-champagne);
}

/* FOOTER */
footer {
    padding: 100px 0 50px;
    background-color: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
}

footer h5 {
    color: var(--text-platinum);
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 35px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

footer a {
    color: var(--text-dim);
    text-decoration: none;
    transition: 0.3s;
}

footer a:hover {
    color: var(--gold-champagne);
    padding-left: 5px;
    /* Subtle movement */
}

/* INPUTS (Dark Mode) */
input.form-control {
    background: transparent !important;
    border: none;
    border-bottom: 1px solid var(--text-dim);
    border-radius: 0;
    color: var(--text-platinum);
    padding: 10px 0;
}

input.form-control:focus {
    box-shadow: none;
    border-bottom: 1px solid var(--gold-champagne);
}