:root {
    --brand-red: #dc2626;
    --brand-gold: #f59e0b;
    --brand-black: #09090b;
    --brand-stone: #f5f5f4;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--brand-stone);
    color: #18181b;
}

h1, h2, h3, h4, h5, h6, .font-serif {
    font-family: 'Playfair Display', serif;
}

/* Header Styles */
.nav-header {
    background: var(--brand-black);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-link-active {
    color: var(--brand-gold) !important;
    position: relative;
}

.nav-link-active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 8px;
    right: 8px;
    height: 2px;
    background: var(--brand-gold);
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(245, 158, 11, 0.5);
}

/* Mobile Menu */
.mobile-menu-panel {
    background: linear-gradient(to bottom, #000, #111);
}

.mobile-dropdown summary::-webkit-details-marker {
    display: none;
}

/* Animations */
@keyframes slideInRight {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

.menu-open .mobile-menu-panel {
    transform: translateX(0);
}

/* Hero Overlay */
.hero-slide-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
}

.hero-slide-text {
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* Utilities */
.glass-panel {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.text-gradient {
    background: linear-gradient(135deg, #fff 0%, #a1a1aa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.color-site{
    color: #ED2024;
}