/* ========================================
   THEME.CSS - Global Theme Configuration
   ======================================== */

/* --- Local Font Definitions --- */
/* Fonts are now handled by css/global-fonts.css */

/* CSS Variables - Color Palette & Typography */
:root {
    /* ==========================================
       LUXURY 5-STAR HOTEL COLOR PALETTE
       White, Navy Blue, Gold - Premium Aesthetic
       ========================================== */

    /* Primary Luxury Colors */
    --luxury-white: #FFFFFF;
    --luxury-cream: #FAF9F7;
    --luxury-navy: #1B3B6F;
    --luxury-royal-blue: #2C5F8D;
    --luxury-gold: #C9A961;
    --luxury-gold-light: #D4AF37;
    --luxury-gold-dark: #B8935A;

    /* Text Colors - Refined Typography */
    --text-dark: #2C2C2C;
    --text-charcoal: #3A3A3A;
    --text-gray: #666666;
    --text-light-gray: #999999;
    --text-gold: #C9A961;
    --text-white: #FFFFFF;

    /* Background Colors - Clean & Spacious */
    --bg-white: #FFFFFF;
    --bg-light: #F8F9FA;
    --bg-cream: #FAF9F7;
    --bg-blue-light: #F0F4F8;
    --bg-navy: #1B3B6F;

    /* ==========================================
       SEMANTIC COLOR MAPPING - LUXURY THEME
       ========================================== */

    /* Primary Brand Colors */
    --primary-color: var(--luxury-navy);
    --primary-light: var(--luxury-royal-blue);
    --primary-dark: #152D54;

    /* Accent Colors - Gold for Luxury */
    --accent-color: var(--luxury-gold);
    --accent-hover: var(--luxury-gold-dark);
    --accent-glow: rgba(201, 169, 97, 0.3);
    --accent-light: var(--luxury-gold-light);

    /* Backgrounds - Luxury Theme */
    --bg-primary: var(--bg-white);
    --bg-secondary: var(--bg-cream);
    --bg-tertiary: var(--bg-light);
    --bg-card: rgba(255, 255, 255, 0.98);
    --bg-card-hover: var(--bg-cream);

    /* Header & Footer - Navy Blue */
    --header-bg: var(--luxury-navy);
    --footer-bg: var(--luxury-navy);

    /* Background Overlays - Subtle & Elegant */
    --overlay-dark: rgba(27, 59, 111, 0.85);
    --overlay-medium: rgba(27, 59, 111, 0.6);
    --overlay-light: rgba(27, 59, 111, 0.3);
    --overlay-white: rgba(255, 255, 255, 0.9);

    /* Text Colors - Luxury Theme */
    --text-primary: var(--text-dark);
    --text-secondary: var(--text-gray);
    --text-muted: var(--text-light-gray);
    --text-heading: var(--text-charcoal);

    /* Border Colors - Clean Lines */
    --border-primary: #E5E5E5;
    --border-secondary: #D0D0D0;
    --border-gold: var(--luxury-gold);
    --border-light: rgba(0, 0, 0, 0.08);

    /* ==========================================
       ELEVATION SYSTEM - Premium Shadows
       ========================================== */

    /* Shadow Levels - Soft & Elegant */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 12px 32px rgba(0, 0, 0, 0.12);
    --shadow-2xl: 0 20px 48px rgba(0, 0, 0, 0.15);
    --shadow-inner: inset 0 2px 4px rgba(0, 0, 0, 0.04);

    /* Glow Effects - Gold Luxury */
    --glow-gold: 0 0 30px rgba(201, 169, 97, 0.3);
    --glow-gold-strong: 0 0 45px rgba(201, 169, 97, 0.5);
    --glow-blue: 0 0 25px rgba(27, 59, 111, 0.2);
    --glow-white: 0 0 20px rgba(255, 255, 255, 0.8);

    /* ==========================================
       GRADIENTS - Luxury Theme
       ========================================== */

    --gradient-navy: linear-gradient(135deg, var(--luxury-navy) 0%, var(--luxury-royal-blue) 100%);
    --gradient-gold: linear-gradient(135deg, var(--luxury-gold) 0%, var(--luxury-gold-light) 100%);
    --gradient-overlay: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
    --gradient-white-overlay: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 100%);
    --gradient-card: linear-gradient(145deg, rgba(255, 255, 255, 1) 0%, rgba(250, 249, 247, 1) 100%);

    /* ==========================================
       ANIMATION TIMING - Smooth & Refined
       ========================================== */

    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* ==========================================
       TYPOGRAPHY - Elegant & Spacious
       ========================================== */

    --font-heading: var(--font-heading);
    --font-body: var(--font-body);

    /* Display Typography - Large & Elegant */
    --font-size-display: 4.5rem;
    --font-size-h1: 3.5rem;
    --font-size-h2: 2.75rem;
    --font-size-h3: 2rem;
    --font-size-h4: 1.5rem;
    --font-size-body: 1rem;
    --font-size-small: 0.875rem;

    /* Line Heights - Spacious */
    --line-height-tight: 1.2;
    --line-height-normal: 1.6;
    --line-height-relaxed: 1.8;

    /* Letter Spacing - Refined */
    --letter-spacing-tight: -0.02em;
    --letter-spacing-normal: 0;
    --letter-spacing-wide: 0.05em;
    --letter-spacing-wider: 0.1em;

    /* ==========================================
       SPACING SYSTEM - Generous & Luxurious
       ========================================== */

    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;

    /* ==========================================
       LEGACY COMPATIBILITY
       ========================================== */

    --primary-gold: var(--luxury-gold);
    --dark-bg: var(--bg-cream);
    --darker-bg: var(--bg-light);
    --light-bg: var(--bg-white);
    --text-light: var(--text-white);
    --gold-text: var(--text-gold);

    /* Old color mappings for backward compatibility */
    --color-header-blue: var(--luxury-navy);
    --color-champagne-gold: var(--luxury-gold);
    --color-warm-brown: #5f512f;
    --dark-gold: var(--luxury-gold-dark);
}


/* ========================================
   Base Reset & Typography
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
}

/* ========================================
   ANIMATIONS & TRANSITIONS
   ======================================== */

/* Entrance Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Interactive Animations */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes glow {

    0%,
    100% {
        box-shadow: 0 0 20px var(--accent-glow);
    }

    50% {
        box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
    }
}

/* Utility Animation Classes */
.animate-fadeInUp {
    animation: fadeInUp 0.6s ease-out;
}

.animate-fadeIn {
    animation: fadeIn 0.5s ease-out;
}

.animate-slideInLeft {
    animation: slideInLeft 0.6s ease-out;
}

.animate-slideInRight {
    animation: slideInRight 0.6s ease-out;
}

.animate-scaleIn {
    animation: scaleIn 0.4s ease-out;
}

/* Scroll Reveal System */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.stagger-delay-1 {
    transition-delay: 0.1s;
}

.stagger-delay-2 {
    transition-delay: 0.2s;
}

.stagger-delay-3 {
    transition-delay: 0.3s;
}

/* ========================================
   Utility Classes
   ======================================== */

.text-center {
    text-align: center;
}

.container {
    max-width: 1400px;
    margin: 0 auto;

}

/* ========================================
   Responsive Typography
   ======================================== */

@media (max-width: 768px) {
    .container {
        padding: 3rem 1.5rem;
    }
}