/* ======================================================
   GLOBAL
====================================================== */

body {
    font-family: "Segoe UI", Arial, sans-serif;
    background: #f4f6fb;
    /* outer page grey */
    color: #1f2937;
    margin: 0;
    line-height: 1.6;
}

a {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5 {
    font-weight: 700;
}

/* ======================================================
   HEADER & NAV
====================================================== */

/* Header base */
.hbs-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: #ffffff;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
}

/* push page below header */
body {
    padding-top: 120px;
}

.hbs-nav {
    position: relative;
    display: flex;
    align-items: center;
   justify-content: space-between;
}

/* Floating logo */
.logo-wrap {
    height: 100%;
    display: flex;
    align-items: center;
}

.logo-wrap img {
    height: 140px;
    margin-top: 30px;
    /* visual overlap only */
}

/* Navigation */
.main-nav a {
    margin-left: 30px;
    color: #1f2937;
    font-weight: 600;
    transition: 0.3s;
}

.main-nav a:hover {
    color: #cfa23a;
}

/* Active menu */
.main-nav a.active {
    color: #cfa23a;
    border-bottom: 3px solid #cfa23a;
    padding-bottom: 6px;
}

/* -----------------------------
   MOBILE NAV FIX
----------------------------- */

.main-nav {
    position: relative;
}

/* Hamburger */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 26px;
    color: #0f172a;
    cursor: pointer;
}

/* Desktop nav */
.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
}

/* Mobile */
@media (max-width: 1100px) {

    .nav-toggle {
        display: block;
        font-size: 28px;
        cursor: pointer;
        background: none;
        border: none;
        color: #0f172a;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 120px;
        /* EXACT header height */
        right: 20px;
        background: #ffffff;
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
        z-index: 2000;
        /* above header */
        flex-direction: column;
        width: 90vw;
        right: 5vw;
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 10px 0;
        margin: 0;
    }
}

/* ======================================================
   BUTTONS
====================================================== */

.btn-gold {
    background: #cfa23a;
    color: #000;
    padding: 12px 30px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
}

.btn-gold:hover {
    background: #b8922f;
    color: #000;
}

.btn-outline-gold {
    border: 2px solid #cfa23a;
    color: #cfa23a;
    background: transparent;
    padding: 10px 25px;
    border-radius: 6px;
    font-weight: 600;
}

.btn-outline-gold:hover {
    background: #cfa23a;
    color: #000;
}

/* ======================================================
   HERO
====================================================== */

.hero {
    background: linear-gradient(120deg, #ffffff, #f1f4f9);
    padding: 160px 0 120px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    color: #0f172a;
}

.hero p {
    max-width: 800px;
    margin: auto;
    color: #4b5563;
    font-size: 1.2rem;
}

/* ======================================================
   SECTIONS
====================================================== */

.section {
    padding: 90px 0;
    background: #ffffff;
}

/* Soft alternating section rhythm */
.section:nth-of-type(even):not(.section-dark) {
    background: #f8fafc;
}

.section:nth-of-type(odd):not(.section-dark) {
    background: #ffffff;
}

.section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #0f172a;
    position: relative;
    padding: 18px;
}

.section h2::after {
    content: "";
    width: 80px;
    height: 4px;
    background: #cfa23a;
    display: block;
    margin: 18px auto 0;
    border-radius: 4px;
}

/* Dark authority bands */
.section-dark {
    background: #0f172a;
}

.section-dark h2,
.section-dark p {
    color: #ffffff;
}

/* ======================================================
   CARDS
====================================================== */

.hbs-card {
    background: #f9fafb;
    padding: 32px;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    color: #1f2937;
    height: 100%;
    transition: 0.3s;
}

.section-dark .hbs-card {
    background: #111827;
    border-color: #1f2937;
    color: #ffffff;
}

/* Headings inside cards */
.hbs-card h5 {
    color: #cfa23a;
    margin-bottom: 12px;
}

/* Hover lift */
.hbs-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

/* ======================================================
   FOOTER
====================================================== */

.footer {
    background: #0b1220;
    padding: 40px 0;
    color: #9ca3af;
    text-align: center;
    font-size: 14px;
}

.footer h6 {
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer p {
    color: #9ca3af;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
}

.footer-links a:hover {
    color: #cfa23a;
}

.footer-social a {
    color: #9ca3af;
    font-size: 20px;
    margin-left: 15px;
    transition: 0.3s;
}

.footer-social a:hover {
    color: #cfa23a;
}