/* ============================================================
   GLOBAL BASE STYLES — Premium Foundation
   — Modern Reset + Typography + Layout Basics
============================================================== */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');


/* ------------------------------
   CSS RESET (Modern Reset)
-------------------------------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    display: block;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}


/* ------------------------------
   BODY + DEFAULT TYPOGRAPHY
-------------------------------- */
body {
    font-family: var(--font-primary);
    background: var(--section-white);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    font-size: var(--fs-base);
}


/* ------------------------------
   HEADINGS GLOBAL STYLE
-------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    font-weight: var(--fw-bold);
    color: var(--primary-dark);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: var(--fs-hero);
}

h2 {
    font-size: var(--fs-xl);
}

h3 {
    font-size: var(--fs-lg);
}

h4 {
    font-size: var(--fs-md);
}

p {
    color: var(--text-medium);
    font-family: var(--font-secondary);
    line-height: 1.75;
    margin-bottom: 1rem;
}

strong {
    font-weight: var(--fw-semibold);
    color: var(--text-dark);
}


/* ------------------------------
   SECTION TITLE STYLES
-------------------------------- */
.section-title {
    text-align: left;
    font-size: var(--fs-xl);
    font-weight: var(--fw-extrabold);
    margin-bottom: 3rem;
    position: relative;
    color: var(--primary-dark);
}

.section-title::after {
    content: "";
    width: 80px;
    height: 4px;
    background: var(--primary-gold);
    display: block;
    margin: 1rem 0 0;
    border-radius: var(--radius-full);
}


/* ------------------------------
   SPACING HELPERS
-------------------------------- */
.section {
    padding: var(--space-xxl) var(--space-lg);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}


/* ------------------------------
   UTILITY CLASSES
-------------------------------- */
.text-center {
    text-align: center;
}

.text-gradient {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* ------------------------------
   RESPONSIVE ADJUSTMENTS
-------------------------------- */
@media (max-width: 992px) {
    .section {
        padding: var(--space-xl) var(--space-md);
    }

    h1 {
        font-size: var(--fs-xxl);
    }

    h2 {
        font-size: var(--fs-lg);
    }
}

@media (max-width: 600px) {
    .section {
        padding: var(--space-lg) var(--space-sm);
    }

    h1 {
        font-size: var(--fs-xl);
    }

    h2 {
        font-size: var(--fs-md);
    }

    body {
        font-size: var(--fs-sm);
    }
}