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

:root {
    /* Elite Apothecary Color System (Synced with Official Logo) */
    --healing-earth: #7A3622;     /* Traditional Terracotta (Primary) */
    --apothecary-gold: #A38E46;   /* Muted Clinical Gold (Secondary) */
    --deep-slate: #0F1612;        /* Dark Theme Background */
    --parchment: #FFFFFF;         /* Updated to Clinical White */
    --pure-white: #FFFFFF;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --premium-shadow: 0 15px 45px rgba(122, 54, 34, 0.05);

    /* Typography Signals */
    --font-heading: 'Playfair Display', serif;
    --font-ui: 'Inter', sans-serif;
}

body {
    font-family: var(--font-ui);
    color: var(--deep-slate);
    background-color: var(--parchment);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--healing-earth);
}

.botanical-header {
    background: linear-gradient(135deg, var(--healing-earth) 0%, var(--apothecary-gold) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.botanical-header::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 60%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* Glassmorphic Components */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 20px;
    box-shadow: var(--premium-shadow);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.btn-botanical {
    background: var(--healing-earth);
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 0.85rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-botanical:hover {
    background: var(--apothecary-gold);
    color: white;
    box-shadow: 0 5px 15px rgba(163, 142, 70, 0.4);
}

/* Navigation Customization */
.nav-premium {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.reveal-init {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.active-nav {
    color: var(--apothecary-gold) !important;
    border-bottom: 2px solid var(--apothecary-gold);
}

.glass-header {
    background: rgba(15, 22, 18, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transition: all 0.4s ease;
}

/* Brand Utilities */
.w3-healing-earth { background-color: var(--healing-earth) !important; color: white !important; }
.w3-text-healing-earth { color: var(--healing-earth) !important; }
.w3-hover-healing-earth:hover { background-color: var(--healing-earth) !important; color: white !important; }

.w3-apothecary-gold { background-color: var(--apothecary-gold) !important; color: white !important; }
.w3-text-apothecary-gold { color: var(--apothecary-gold) !important; }
.w3-hover-apothecary-gold:hover { background-color: var(--apothecary-gold) !important; color: white !important; }

/* Tablet & Mobile Optimization */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem !important; }
    .glass-card { margin-bottom: 24px; }
}
