:root {
    /* Premium Color Palette - Luxury Travel Aesthetic */
    --primary-color: #c5a059;
    /* Desert Gold */
    --primary-light: #d4b982;
    --primary-dark: #a88541;
    --primary-rgb: 197, 160, 89;

    --secondary-color: #1a2a3a;
    /* Midnight Navy */
    --secondary-light: #2c3e50;
    --secondary-dark: #0f171f;
    --secondary-rgb: 26, 42, 58;

    --bg-light: #ffffff;
    --bg-soft: #f8f9fa;
    --bg-dark: #f0f2f5;

    --text-main: #1a1a1a;
    --text-muted: #576574;
    --text-light: #ffffff;

    /* Typography */
    --font-main: 'Outfit', sans-serif;
    --font-accent: 'Playfair Display', serif;
    /* For a touch of elegance */

    /* Spacing & Borders */
    --section-spacing: 120px 0;
    --container-width: 1240px;
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    --border-radius-pill: 100px;

    /* Shadows & Transitions */
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.05);
    --shadow-premium: 0 20px 60px rgba(26, 42, 58, 0.1);
    --transition-base: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}