@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* =====================
   BRAND CSS TOKENS
   ===================== */
:root {
    --gold-light: #d9bd7e;
    --gold:       #c59b4e;
    --gold-dark:  #b2853c;

    /* Light mode surfaces */
    --surface-1:  #ffffff;
    --surface-2:  #f8f7f4;
    --surface-3:  #f0ede6;
    --text-1:     #111827;
    --text-2:     #374151;
    --text-3:     #6b7280;
    --border:     #e5e7eb;
}

.dark {
    /* Dark mode surfaces */
    --surface-1:  #0f172a;
    --surface-2:  #1e293b;
    --surface-3:  #334155;
    --text-1:     #f1f5f9;
    --text-2:     #cbd5e1;
    --text-3:     #94a3b8;
    --border:     rgba(197,155,78,0.1);
}

/* =====================
   TYPOGRAPHY
   ===================== */
body {
    font-family: 'Outfit', sans-serif;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.font-display { font-family: 'Playfair Display', serif; }

/* =====================
   GOLD GRADIENT UTILITIES
   ===================== */
.gold-gradient-bg {
    background: linear-gradient(135deg, #BF953F 0%, #FCF6BA 25%, #B38728 50%, #FBF5B7 75%, #AA771C 100%);
}

.gold-gradient-text {
    background: linear-gradient(135deg, #BF953F 0%, #FCF6BA 30%, #B38728 70%, #AA771C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* =====================
   GLASS CARD
   Light: translucent white with soft shadow
   Dark:  translucent slate with gold-glow border
   ===================== */
.glass-card {
    background:   rgba(255, 255, 255, 0.85);
    border:       1px solid rgba(0,0,0,0.07);
    box-shadow:   0 4px 20px rgba(0,0,0,0.06);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition:   all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    background: rgba(255,255,255,0.98);
    border-color: rgba(197, 155, 78, 0.35);
    box-shadow:  0 20px 40px -10px rgba(0,0,0,0.12), 0 0 25px -5px rgba(197,155,78,0.12);
    transform:   translateY(-6px);
}

.dark .glass-card {
    background: rgba(30, 41, 59, 0.45);
    border:     1px solid rgba(255,255,255,0.05);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.dark .glass-card:hover {
    background:   rgba(30, 41, 59, 0.65);
    border-color: rgba(197, 155, 78, 0.3);
    box-shadow:   0 20px 40px -15px rgba(0,0,0,0.5), 0 0 25px -5px rgba(197,155,78,0.1);
}

/* =====================
   STICKY HEADER GLASS
   ===================== */
.glass-nav {
    background:      rgba(255,255,255,0.90);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom:   1px solid rgba(0,0,0,0.07);
}

.dark .glass-nav {
    background:    rgba(15, 23, 42, 0.85);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* =====================
   UNDERLINE HOVER EFFECT
   ===================== */
.premium-border-hover {
    position: relative;
    overflow: hidden;
}

.premium-border-hover::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 2px;
    background: linear-gradient(90deg, #BF953F, #FCF6BA, #B38728);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.35s ease;
}

.premium-border-hover:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* =====================
   HERO SLIDER HEIGHT
   ===================== */
.hero-slider-height { height: 650px; }

@media (max-width: 768px) {
    .hero-slider-height { height: 500px; }
}

/* =====================
   CUSTOM SCROLLBAR
   ===================== */
::-webkit-scrollbar        { width: 8px; }
::-webkit-scrollbar-track  { background: var(--surface-2); }
::-webkit-scrollbar-thumb  { background: var(--gold); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dark); }

/* =====================
   DARK MODE TOGGLE ANIMATION
   ===================== */
#theme-toggle {
    cursor: pointer;
    transition: all 0.2s ease;
}

#theme-toggle:active {
    transform: scale(0.92);
}