/* ====== 0064 — PREMIUM LUXURY CLUB STYLE ====== */

html { scroll-behavior: smooth; }

/* Navbar scroll effect */
#navbar.scrolled {
    background: rgba(26,10,18,0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201,169,110,0.15);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

/* Marble texture background for hero */
.marble-bg {
    background-color: #1a0a12;
    background-image:
        radial-gradient(ellipse at 20% 50%, rgba(201,169,110,0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(139,115,85,0.04) 0%, transparent 50%),
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(201,169,110,0.02) 2px, rgba(201,169,110,0.02) 4px);
}

/* Gold card border */
.gold-card {
    border: 1px solid rgba(201,169,110,0.2);
    background: rgba(13,5,16,0.6);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.gold-card:hover {
    border-color: rgba(201,169,110,0.5);
    box-shadow: 0 0 30px rgba(201,169,110,0.1), 0 10px 40px rgba(0,0,0,0.3);
}

/* Diamond icon animation */
.diamond-icon {
    transition: all 0.4s ease;
}
.gold-card:hover .diamond-icon {
    transform: rotate(15deg) scale(1.1);
    filter: drop-shadow(0 0 8px rgba(201,169,110,0.5));
}

/* FAQ Gold line accordion */
.faq-gold-toggle .fa-plus {
    transition: transform 0.3s ease;
}
.faq-gold-item.active .faq-gold-toggle .fa-plus {
    transform: rotate(45deg);
}
.faq-gold-item.active {
    border-color: rgba(201,169,110,0.4) !important;
    box-shadow: 0 0 20px rgba(201,169,110,0.06);
}
.faq-gold-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-gold-content.show {
    max-height: 250px;
}

/* Nav link active */
.nav-link.active, .nav-link:hover {
    color: #c9a96e !important;
}

/* Gold counter */
.gold-counter {
    font-variant-numeric: tabular-nums;
    transition: all 0.1s ease;
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #1a0a12; }
::-webkit-scrollbar-thumb { background: #c9a96e; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #b8933e; }

/* Form focus */
input:focus, textarea:focus {
    box-shadow: 0 0 10px rgba(201,169,110,0.1);
}
