@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('header.css');
@import url('footer.css');

:root {

    /* Brand Palette */
    --dark-bg: #0d1408;
    --dark-surface: #141c0e;
    --dark-card: #1a2410;
    --dark-border: #2a3a1a;

    --gold: #e8c840;
    --gold-hover: #f5d64a;
    --gold-muted: #b89e30;
    --gold-light: #f0d878;

    --green-mid: #70c840;
    --green-dark: #3a7a1a;

    --text-light: #f0f0e8;
    --text-muted: #8a9a78;
    --text-dim: #5a6a48;
    --text-silver: #b0b8a8;

    /* Aliases — keep naming consistent with reference template */
    --primary-dark: #0d1408;
    --secondary-dark: #141c0e;
    --gold-accent: #e8c840;
    --gold-accent-dark: #b89e30;
    --light-green: #70c840;

    /* Fonts */
    --font-display: 'Poppins', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --font-serif: 'Poppins', sans-serif;
    --font-sans: 'Poppins', sans-serif;

    /* Layout */
    --wrapper-max: 1400px;
    --wrapper-px: clamp(1.5rem, 5vw, 4rem);
    --section-py: 100px;

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-pill: 100px;

    /* Motion */
    --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);

    /* Shadows */
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.35);
    --shadow-gold: 0 10px 30px rgba(232, 200, 64, 0.25);
    --shadow-gold-lg: 0 15px 40px rgba(232, 200, 64, 0.40);
}


/* ── 2. RESET ───────────────────────────────── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.65;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    display: block;
    width: fit-content;
}

ul,
ol {
    list-style: none;
}


/* ── 3. SECTION BASE ────────────────────────── */
section {
    padding: var(--section-py) 30px;

    @media (max-width: 1200px) {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    @media (max-width: 767px) {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}


/* ── 4. TYPOGRAPHY ──────────────────────────── */
h1 {
    font-family: var(--font-display);
    font-weight: 800;
    font-style: normal;
    font-size: clamp(2.5rem, 1.5rem + 4vw, 4.5rem);
    line-height: 1.05;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    letter-spacing: -0.01em;
}

h2 {
    font-family: var(--font-display);
    font-weight: 800;
    font-style: normal;
    font-size: clamp(1.875rem, 1rem + 3vw, 3rem);
    line-height: 1.1;
    margin-bottom: 1.25rem;
    color: var(--text-light);
    width: fit-content;
}

h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-style: normal;
    font-size: clamp(1.2rem, 1rem + 1vw, 1.8rem);
    line-height: 1.25;
    margin-bottom: 1rem;
    color: var(--text-light);
}

h4 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: clamp(1.05rem, 0.9rem + 0.8vw, 1.4rem);
    line-height: 1.35;
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

h5 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.05rem;
    line-height: 1.4;
    color: var(--text-light);
}

h6 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

p,
li {
    color: #BBC3C0;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 23px;
}

p:last-of-type {
    margin-bottom: 0;
}

em {
    font-style: italic;
    color: var(--gold);
}

strong {
    font-weight: 700;
    color: var(--text-light);
}


/* ── 5. LAYOUT ──────────────────────────────── */
.wrapper {
    width: 100%;
    max-width: var(--wrapper-max);
    margin-left: auto;
    margin-right: auto;
}

/* Default row gap */
.row {
    gap: 24px 0;
}

/* Centered section header block */
.header {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
    text-align: center;
}


/* ── 6. UTILITIES ───────────────────────────── */

/* Section label / eyebrow */
.section_label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(232, 200, 64, 0.07);
    border: 1px solid rgba(232, 200, 64, 0.25);
    border-radius: var(--radius-pill);
    padding: 0.3em 1em;
    margin-bottom: 1rem;
    width: fit-content;

    &.light {
        color: var(--text-light);
        border-color: rgba(240, 240, 232, 0.2);
        background: rgba(240, 240, 232, 0.05);
    }
}

/* Section title & subtitle */
.section_title {
    font-family: var(--font-display);
    font-size: clamp(1.875rem, 1rem + 3vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-light);
    margin-bottom: 1.25rem;
}

.section_sub {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 620px;

    .text-center & {
        margin-left: auto;
        margin-right: auto;
    }
}

/* Italic gold accent — used in headlines */
.hero_accent {
    font-style: italic;
    color: var(--gold);
}

/* Hero CTA row */
.hero_ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 2rem;
}


/* ── 7. BUTTONS ─────────────────────────────── */

/* Primary gold — filled */
.btn_gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--dark-bg);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    text-decoration: none;
    width: fit-content;
    box-shadow: var(--shadow-gold);
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
    -webkit-border-radius: var(--radius-sm);
    -moz-border-radius: var(--radius-sm);
    -ms-border-radius: var(--radius-sm);
    -o-border-radius: var(--radius-sm);

    &:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-gold-lg);
        background: linear-gradient(135deg, var(--gold-hover) 0%, var(--gold-light) 100%);
        color: var(--dark-bg);
    }
}

/* Outline gold — bordered */
.btn_outline_gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1;
    padding: 14px 30px;
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    border-radius: var(--radius-sm);
    cursor: pointer;
    text-decoration: none;
    width: fit-content;
    box-shadow: 0 10px 30px rgba(232, 200, 64, 0.12);
    transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
    -webkit-border-radius: var(--radius-sm);
    -moz-border-radius: var(--radius-sm);
    -ms-border-radius: var(--radius-sm);
    -o-border-radius: var(--radius-sm);

    &:hover {
        background: rgba(232, 200, 64, 0.10);
        color: var(--gold);
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(232, 200, 64, 0.25);
    }
}

/* Ghost — transparent with light border */
.btn_ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1;
    padding: 14px 28px;
    background: transparent;
    color: var(--text-light);
    border: 1.5px solid rgba(240, 240, 232, 0.2);
    border-radius: var(--radius-sm);
    cursor: pointer;
    text-decoration: none;
    width: fit-content;
    transition: border-color var(--transition), color var(--transition), transform var(--transition);
    -webkit-border-radius: var(--radius-sm);
    -moz-border-radius: var(--radius-sm);
    -ms-border-radius: var(--radius-sm);
    -o-border-radius: var(--radius-sm);

    &:hover {
        border-color: var(--gold);
        color: var(--gold);
        transform: translateY(-2px);
    }
}


/* ── 8. SCROLLBAR ───────────────────────────── */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--dark-border);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-muted);
}


/* ── 9. RESPONSIVE ─────────────────────────── */
@media (max-width: 991px) {
    :root {
        --wrapper-px: clamp(1rem, 4vw, 2.5rem);
    }
}

@media (max-width: 768px) {
    :root {
        --section-py: 60px;
    }

    .hero_ctas {
        flex-direction: column;
        width: 100%;
    }

    .hero_ctas .btn_gold,
    .hero_ctas .btn_ghost,
    .hero_ctas .btn_outline_gold {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 575px) {
    :root {
        --section-py: 50px;
        --wrapper-px: 1rem;
    }
}