:root {
    --primary-dark: #0F2027;
    --primary-light: #2C5364;
    --secondary-green: #76BA99;
    --accent-gold: #D4AF37;
    --accent-gold-soft: #E5C76B;
    --text-light: #F8F9FA;
    --text-dark: #212529;
    --text-muted: #6C757D;
    --bg-light: #FFFFFF;
    --bg-soft: #F1F3F5;
    --glass: rgba(255, 255, 255, 0.1);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
}

/* Base Reset & Animations kept for GSAP/ScrollReveal compatibility */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
    caret-color: transparent;
}

/* Hide cursor on all non-editable elements */
*:not(input):not(textarea) {
    caret-color: transparent;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Allow text selection on paragraphs and headings for reading */
p,
h1,
h2,
h3,
h4,
h5,
h6,
li,
span,
a {
    user-select: text;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
}

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Menu Logic (classes used by JS) */
.nav-links.active {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background: var(--primary-dark);
    padding: 20px;
    gap: 30px;
    z-index: 1000;
}

.nav-links.active a {
    font-size: 1.5rem !important;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Header Scrolled State */
header.scrolled {
    background: rgba(15, 32, 39, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 12px 0 !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Hero Background Fix */
#hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('assets/hero.png');
    background-repeat: no-repeat;
    background-position: right;
    background-size: cover;
    opacity: 0.4;
    z-index: 1;
}

#hero>div {
    position: relative;
    z-index: 2;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}