:root {
    /* --- FARBEN --- */
    --primary-bg: #0d1a13;          /* Dunkles Thai-Grün */
    --navbar-bg: #0f1c15;           /* Tieferes Schwarz-Grün */
    --footer-bg: #0b0b08;           /* Fast Schwarz mit Gelb-Touch */
    --bg-light: #f9f7f2;            /* Warmes Cremeweiß für helle Sektionen */
    
    --accent-gold: #c5a059;         /* Das Gold vom Flyer */
    --accent-gold-light: #e6c88e;   /* Für Hover-Effekte */
    --accent-gold-dark: #8e6d2d;
    
    --text-light: #f4f4f4;
    --text-muted: rgba(244, 244, 244, 0.7);
    --text-dark: #222222;           /* Dunkler Text für helle Bereiche */
    --white: #ffffff;

    /* --- TYPOGRAFIE --- */
    --font-headings: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --base-font-size: 18px;

    /* --- LAYOUT & ABSTÄNDE --- */
    --navbar-height: 85px;
    --border-radius: 12px;
    --btn-border-radius: 50px;      /* Pillen-Form für alle Buttons */
    
    /* --- MUSTER (OVERLAY) --- */
    --pattern-url: url('../../img/thai-pattern.png'); 
    --pattern-opacity: 0.03;

    /* --- EFFEKTE --- */
    --transition-speed: 0.3s;
    --shadow-dark: 0 10px 30px rgba(0,0,0,0.5);
}

/* Gold-Gradient Animation */
.gold-gradient {
    background: linear-gradient(45deg, #a67c00, #ffbf00, #ffdc73, #ffbf00, #a67c00);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: goldShine 8s ease infinite;
    display: inline-block;
}

@keyframes goldShine {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}