:root {
    --bg-color: #0a0a0a;
    --text-color: #e0e0e0;
    --accent-gold: #d4af37; /* Luxury Gold */
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: auto; /* Hides default cursor for custom one */
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-sans);
    overflow-x: hidden;
}

/* Custom Cursor Glow */
/* Delete the .cursor-glow block entirely */

/* Add this to make sure the mouse is the standard arrow */
html, body {
    cursor: default !important;
}

/* Make sure links still show the 'pointing hand' */
a, button, .nav-link, .logo {
    cursor: pointer !important;
}
/* Nav */
nav {
    display: flex;
    justify-content: space-between; /* Keeps logo on left, links on right */
    align-items: center;            /* THIS IS THE FIX: Centers items vertically */
    padding: 1.5rem 5%;            /* Adjusted padding for a cleaner look */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    /* Optional: background: rgba(10, 10, 10, 0.8); If you want a subtle tint */
}

.logo-container {
    display: flex;
    align-items: center;
}

/* Update the existing .logo section in style.css */
.main-logo {
    display: block;
    max-height: 35px; /* Limits the height so it stays in the nav */
    width: auto;      /* Keeps the proportions perfect */
    filter: brightness(1.1); /* Makes the logo pop on a dark background */
    transition: transform 0.3s ease;
}

.main-logo:hover {
    transform: scale(1.05); /* Soft premium hover effect */
}

/* Add the hover animation */
.logo:hover {
    color: var(--accent-gold); /* Gold color change */
    transform: scale(1.05) skewX(-2deg); /* Subtle growth and slant */
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5); /* Soft shadow effect */
    cursor: pointer; /* Change cursor on hover for interactivity */
}

.social-links {
    display: flex;       /* Put links in a row */
    align-items: center; /* THIS IS KEY: Centers the text links vertically */
    gap: 30px;
}

.nav-link {
    line-height: 1;
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-gold);
}

/* Underline animation on hover */
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-gold);
    transition: width 0.3s ease-in-out;
}

.nav-link:hover::after {
    width: 100%;
}

/* Make the email link still look like the original button */
.email-link {
    border: 1px solid rgba(255,255,255,0.2);
    padding: 8px 15px;
    border-radius: 50px;
    margin-left: 10px;
}

.email-link:hover {
    background: var(--accent-gold);
    color: #000;
    border-color: var(--accent-gold);
}
/* Remove the underline from the button-style link */
.email-link::after {
    display: none;
}

.contact-btn:hover {
    background: var(--accent-gold);
    color: #000;
    border-color: var(--accent-gold);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

h1 {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 8vw, 6rem); /* Responsive text */
    line-height: 1.1;
    font-weight: 400;
}

.gold-text {
    color: var(--accent-gold);
    font-style: italic;
}

/* 1. Ensure the container doesn't hide the animation */
.hero-content {
    overflow: visible;
}

/* 2. The Luxury Subtitle */
.subtitle {
    display: block;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    font-weight: 300;
    
    /* Force the animation */
    opacity: 0;
    animation: luxuryReveal 3s cubic-bezier(0.19, 1, 0.22, 1) forwards !important;
    animation-delay: 1.2s !important; 
}

@keyframes luxuryReveal {
    0% {
        opacity: 0;
        letter-spacing: -2px; /* Starts tight */
        transform: translateY(20px);
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        letter-spacing: 6px; /* Ends wide and airy */
        transform: translateY(0);
        filter: blur(0);
    }
}


/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.5;
}

.line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--accent-gold), transparent);
}

/* About Section */
.about-section {
    padding: 100px 10%;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

.text-block h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.text-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
    max-width: 700px;
}

.stats-row {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
}

.stat h3 {
    font-size: 1.5rem;
    font-weight: 300;
}

.stat p {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-gold);
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    font-size: 0.8rem;
    opacity: 0.4;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1.5s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Reveal Class (added by JS) */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.hero {
    /* ... existing styles ... */
    
    /* ADD these lines: */
    background-image: url('web.png'); /* The path to your downloaded photo */
    background-size: cover; /* Ensures the image fills the screen */
    background-position: center; /* Centers the image */
    background-attachment: fixed; /* Optional: Makes the image fixed while content scrolls */
    
    /* Optional: Add a subtle black gradient overlay to make the text easier to read */
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('web.png');
}

/*
    NEW RULE: Force the standard pointer cursor 
    to appear over all interactive elements.
*/
a, button, [onclick], .nav-link, .contact-btn {
    cursor: pointer !important;
}

/* This is important for the header and main content.
    We re-apply the hidden cursor only to the main body 
    to ensure the custom glow is the primary focus.
*/
body {
    cursor: none; 
}

/* Ensure the logo uses the pointer when hovered over */
.logo:hover {
    /* ... existing logo hover styles ... */
    cursor: pointer; 
}

/* --- MOBILE OPTIMIZATION --- */
/* ... all your other code ... */

/* --- MOBILE OPTIMIZATION (CORRECTED) --- */
/* --- MOBILE OPTIMIZATION (SIDE-BY-SIDE) --- */
@media (max-width: 768px) {
    
    /* 1. Un-stack the Navigation (Logo Left, Links Right) */
    nav {
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        
        /* THE FOOLPROOF NOTCH MATH: */
        /* Adds 15px of space PLUS the exact height of the user's notch */
        padding-top: calc(15px + env(safe-area-inset-top)) !important; 
        padding-left: 5% !important;
        padding-right: 5% !important;
        padding-bottom: 15px !important;
        
        position: absolute !important; 
        top: 0; left: 0; width: 100%;
        background: transparent !important;
    }
}

    /* 2. Shrink Logo & Links so they don't crash into each other */
    .main-logo {
        max-height: 28px !important; /* Smaller to fit the row */
    }

    .social-links {
        gap: 12px !important; /* Less space between links */
        width: auto !important;
    }

    .nav-link {
        font-size: 0.75rem !important; /* Smaller text for phone */
    }

    .email-link {
        padding: 5px 10px !important;
        font-size: 0.75rem !important;
    }

    /* 3. The Photo & iPhone Notch Fix */
    .hero {
        background-attachment: scroll !important;
        
        /* Anchor the photo to the very top edge of the glass */
        background-position: center top !important; 
        
        /* Force it to fill the screen (Premium look) */
        background-size: cover !important; 
        
        /* THE MAGIC IPHONE FIX: 'dvh' adjusts perfectly when the Safari bar shrinks/grows */
        height: 100dvh !important; 
        min-height: 100dvh !important;
        
        /* Ensure nothing pushes it down */
        margin-top: 0 !important;
        position: relative;
        top: 0;
    }
    

    /* 4. Keep main text readable */
    h1 {
        font-size: 2.5rem;
    }
