body {
    background: #0B0B0B;
    color: #D1D1D1;
    font-family: 'Poppins', sans-serif;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Playfair Display', serif;
    color: #D4AF37;
}

p {
    color: #9B9B9B;
}

a:hover {
    color: #D4AF37;
}

.section {
    padding: 80px 0;
}

.divider {
    width: 80px;
    height: 2px;
    background: #C9A24D;
    margin: 20px auto;
}

/* ===============================
   NAVBAR
================================ */
.navbar {
    background: #141414;
    border-bottom: 1px solid #2C2C2C;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    color: #C9A24D !important;
    letter-spacing: 2px;
}

.nav-link {
    color: #D1D1D1 !important;
    margin: 0 6px;
    font-weight: 500;
}

.nav-link:hover {
    color: #C9A24D !important;
}

.btn-gold {
    background: linear-gradient(135deg, #C9A24D, #A8842C);
    color: #0B0B0B;
    border: none;
    padding: 10px 22px;
    font-weight: 500;
}

.btn-gold:hover {
    background: linear-gradient(135deg, #E6C77A, #C9A24D);
}

/* ===============================
   HERO
================================ */

.hero {
    padding: 140px 0;
}

.hero h1 {
    font-size: 48px;
}

.hero p {
    max-width: 520px;
    color: #9B9B9B;
}



/* ===============================
   Section Title
================================ */

.section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 0px 0px 40px 0;
}

.section-title h2 {
    margin: 0;
    font-size: 32px;
    letter-spacing: 2px;
    font-weight: 600;
    /* color: #d4af37; */
    color: #A8842C;
    /* golden text */
    text-transform: uppercase;
    white-space: nowrap;
}

/* left & right lines */
.section-title span {
    width: 220px;
    height: 2px;
    background: linear-gradient(to right, transparent, #d4af37, transparent);
}


/* ===============================
   FOOTER
================================ */
footer {
    background: #0B0B0B;
    border-top: 1px solid #2C2C2C;
    padding: 60px 0;
}

footer h6 {
    color: #C9A24D;
}

footer a {
    color: #9B9B9B;
    text-decoration: none;
    display: block;
    margin-bottom: 6px;
}

footer a:hover {
    color: #E6C77A;
}