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

html {
    scroll-behavior: smooth;
}

:root {
    --primary: #C9A84C;       /* Gold */
    --primary-light: #f5e6c0; /* Light Gold */
    --accent: #A07830;        /* Deep Gold */
    --background: #FFFFFF;
    --foreground: #111111;
    --dark: #0A0A0A;          /* Near Black */
    --muted: #f7f7f7;
    --muted-foreground: #6c757d;
    --card: #FFFFFF;
    --card-foreground: #111111;
    --border: #EBEBEB;
    --radius: 1.5rem;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 0.02em;
}

/* Glassmorphism utility */
.glass {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(201, 168, 76, 0.15);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

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

/* Gold shimmer animation for premium feel */
@keyframes shimmer {
    0%   { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.gold-shimmer {
    background: linear-gradient(90deg, #C9A84C, #F0D080, #C9A84C);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--muted); }
::-webkit-scrollbar-thumb { background: var(--primary-light); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* Hero image */
.hero-image-container {
    height: 80vh;
    overflow: hidden;
    position: relative;
    border-radius: var(--radius);
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

/* Primary Button - Black + Gold */
.btn-primary {
    background-color: var(--dark);
    color: var(--primary);
    padding: 0.75rem 2.5rem;
    border-radius: 9999px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--dark);
    font-size: 0.8rem;
}

.btn-primary:hover {
    background-color: var(--primary);
    color: var(--dark);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(201, 168, 76, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
}

/* Gold outline button */
.btn-gold-outline {
    background-color: transparent;
    color: var(--primary);
    padding: 0.75rem 2.5rem;
    border-radius: 9999px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
    font-size: 0.8rem;
}

.btn-gold-outline:hover {
    background-color: var(--primary);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(201, 168, 76, 0.25);
}

/* WhatsApp button */
.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 9999px;
    font-weight: 700;
    letter-spacing: 0.04em;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(37, 211, 102, 0.4);
}

/* Category Cards */
#featured-categories-dynamic .category-card {
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

#featured-categories-dynamic .category-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(201, 168, 76, 0.1);
}

/* Gold divider line */
.gold-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    margin: 0 auto;
    width: 60%;
    opacity: 0.5;
}

/* Announcement bar gold stripe */
.announcement-bar {
    background: linear-gradient(90deg, #0A0A0A, #1a1a1a, #0A0A0A);
    border-bottom: 1px solid rgba(201, 168, 76, 0.4);
}