/* === BLACK GOLD LUXURY STYLE === */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&family=Noto+Sans+SC:wght@300;400;500;700&family=Noto+Serif+SC:wght@400;500;600;700&display=swap');

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

html { scroll-behavior: smooth; }

body {
    background-color: #0a0a0a;
    color: #e5e5e5;
    font-family: 'Inter', 'Noto Sans SC', 'Helvetica Neue', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0a0a0a; }
::-webkit-scrollbar-thumb { background: #c9a84c44; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #c9a84c88; }

/* === GOLDEN GLOW EFFECTS === */
.hover\:shadow-\[0_0_30px_rgba\(201\2c 168\2c 76\2c 0\.4\)\]:hover {
    box-shadow: 0 0 30px rgba(201,168,76,0.4) !important;
}
.hover\:shadow-\[0_0_40px_rgba\(201\2c 168\2c 76\2c 0\.3\)\]:hover {
    box-shadow: 0 0 40px rgba(201,168,76,0.3) !important;
}

/* === GOLD TEXT GRADIENT === */
.text-gold { color: #c9a84c; }
.text-gold-light { color: #e8d48b; }
.text-gold-dark { color: #a8883a; }

/* === ANIMATIONS === */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* === GOLD BORDER GLOW ON HOVER === */
.group:hover .group-hover\:shadow-\[0_0_20px_rgba\(201\2c 168\2c 76\2c 0\.2\)\]:hover {
    box-shadow: 0 0 20px rgba(201,168,76,0.2);
}

/* === FAQ ACCORDION === */
.faq-item { transition: all 0.3s ease; }
.faq-item .faq-icon.rotated { transform: rotate(45deg); }
.faq-item .faq-answer.show { display: block !important; }

/* === MOBILE MENU === */
#mobile-menu.show { display: block !important; }

/* === RESPONSIVE TWEAKS === */
@media (max-width: 768px) {
    .text-7xl { font-size: 2.5rem !important; }
    .text-6xl { font-size: 2rem !important; }
    .text-5xl { font-size: 1.75rem !important; }
    .text-4xl { font-size: 1.5rem !important; }
    .text-3xl { font-size: 1.35rem !important; }
}

/* === SMOOTH TRANSITIONS FOR ALL INTERACTIVE ELEMENTS === */
a, button, .transition-colors { transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease; }

/* === SELECTION STYLE === */
::selection { background-color: rgba(201,168,76,0.3); color: #fff; }
::-moz-selection { background-color: rgba(201,168,76,0.3); color: #fff; }

/* === GOLD DIVIDER === */
.gold-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #c9a84c44, #c9a84c88, #c9a84c44, transparent);
}
