/* style.css - Clean & Stable */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;700;800&display=swap');

body {
    background-color: #050505;
    color: #e0e0e0;
    font-family: 'Manrope', sans-serif;
    overflow-x: hidden;
}

/* GOLD ACCENTS */
.text-gold { color: #d4af37 !important; }
.bg-gold { background-color: #d4af37 !important; color: #000; }
.border-gold { border-color: #d4af37 !important; }

/* NAVBAR */
.navbar {
    background-color: rgba(0, 0, 0, 0.95);
    border-bottom: 1px solid #222;
    padding: 15px 0;
}
.navbar-brand { font-weight: 800; letter-spacing: -1px; font-size: 1.5rem; color: #fff !important; }
.nav-link { color: #aaa !important; font-weight: 500; font-size: 0.95rem; margin-left: 15px; }
.nav-link:hover, .nav-link.active { color: #d4af37 !important; }

/* HERO */
.hero-section {
    padding: 100px 0;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000000 70%);
}

/* CARDS */
.card-custom {
    background: #111;
    border: 1px solid #333;
    padding: 30px;
    border-radius: 12px;
    transition: 0.3s;
    height: 100%;
}
.card-custom:hover {
    border-color: #d4af37;
    transform: translateY(-5px);
}
.card-icon { font-size: 2.5rem; color: #d4af37; margin-bottom: 20px; }

/* BUTTONS */
.btn-gold {
    background-color: #d4af37;
    color: #000;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 6px;
    text-transform: uppercase;
    border: none;
    transition: 0.3s;
}
.btn-gold:hover { background-color: #fff; color: #000; }

.btn-outline-gold {
    border: 1px solid #d4af37;
    color: #d4af37;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 6px;
    text-transform: uppercase;
    background: transparent;
    transition: 0.3s;
}
.btn-outline-gold:hover { background-color: #d4af37; color: #000; }