/**
 * 3F Perfumes - Global Design System 2026
 * A premium, modern design system for the luxury perfume brand.
 */

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

/* ENTRANCE ANIMATIONS DISABLED */
*, *::before, *::after {
    animation: none !important;
    animation-duration: 0s !important;
}

/* SMOOTH HOVER TRANSITIONS */
a, 
button, 
.btn-premium, 
.elementor-button,
.site-header,
.main-navigation .main-nav ul li a {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.elementor-invisible {
    visibility: visible !important;
    opacity: 1 !important;
}

:root {
    /* Color Palette */
    --color-obsidian: #0A0A0A;
    --color-gold: #D4AF37;
    --color-gold-muted: #C5A059;
    --color-gold-dark: #9B722F;
    --color-pearl: #F5F5F5;
    --color-glass-bg: rgba(255, 255, 255, 0.05);
    --color-glass-border: rgba(255, 255, 255, 0.1);
    
    /* Typography - Updated to Poppins and Playfair */
    --font-heading: 'Playfair Display', serif;
    --font-heading-sc: 'Playfair Display SC', serif;
    --font-subheading: 'Poppins', sans-serif;
    --font-body: 'Poppins', sans-serif;
    
    /* Spacing & Borders */
    --radius-lg: 24px;
    --radius-md: 12px;
    --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.4);
    --glass-blur: blur(12px);
}

/* Base Styles - Increased Specificity */
html body {
    background-color: var(--color-obsidian) !important;
    color: var(--color-pearl) !important;
    font-family: var(--font-body) !important;
    line-height: 1.6;
    overflow-x: hidden;
}

html body h1, 
html body h2, 
html body h3, 
html body h4, 
html body h5, 
html body h6 {
    font-family: var(--font-heading) !important;
    color: var(--color-pearl) !important;
    letter-spacing: -0.02em !important;
}

html body a {
    color: var(--color-gold) !important;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html body a:hover {
    color: var(--color-gold-muted) !important;
}

/* Glassmorphism Components */
.glass-card, 
.elementor-section.premium-redesign {
    background: var(--color-glass-bg) !important;
    backdrop-filter: var(--glass-blur) !important;
    -webkit-backdrop-filter: var(--glass-blur) !important;
    border: 1px solid var(--color-glass-border) !important;
    border-radius: var(--radius-lg) !important;
    box-shadow: var(--shadow-premium) !important;
}

/* Premium Buttons */
.btn-premium,
.elementor-button.btn-premium {
    display: inline-block !important;
    padding: 14px 32px !important;
    background: var(--color-gold) !important;
    color: var(--color-obsidian) !important;
    font-family: var(--font-subheading) !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    border-radius: 50px !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.btn-premium:hover,
.elementor-button.btn-premium:hover {
    transform: translateY(-3px) scale(1.02) !important;
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4) !important;
    background: var(--color-pearl) !important;
}

/* Elementor Compatibility Overrides */
.elementor-widget-heading .elementor-heading-title {
    font-family: var(--font-heading) !important;
    color: var(--color-pearl) !important;
}

.elementor-text-editor {
    color: var(--color-pearl) !important;
    font-family: var(--font-body) !important;
}

.elementor-button {
    border-radius: 50px !important;
    font-family: var(--font-subheading) !important;
}

/* Global Background Override for Sections */
.elementor-section {
    background-color: transparent !important;
}

.elementor-column-wrap, .elementor-widget-wrap {
    background-color: transparent !important;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-obsidian);
}

::-webkit-scrollbar-thumb {
    background: var(--color-gold-dark);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold);
}
