/* Base Styles */
body, html {
    font-family: 'Inter', Arial, sans-serif;
    margin: 0;
    padding: 0;
    height: 100%;
    box-sizing: border-box;
    background-color: #14080E !important;
    max-width: 1366px !important;
    margin: auto !important;
}

/* Header */

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    margin: 0px auto 32px auto;
    background-color: #14080E !important;
    padding: 18px 0px 18px 0px;
    /* margin-left: auto;
    margin-right: auto; */
    max-width: 1280px;
}

header nav {
    visibility: hidden;
}

.logo-section {
    max-width: 100px;
    max-height: fit-content;
}

.logo-section img {
    width: 100%;
}

header nav a {
    color: #49475B;
    font-weight: 400;
}

nav a.active {
    font-weight: 800;
    color: #ACC196 !important;
}

section {
    margin-bottom: 16px;
    border-radius: 32px !important;
}



/* Hero Section */

.hero-section {
    max-width: 1280px !important;
    border-radius: 32px !important;
    padding: 32px !important;
    background-color: #E9EB9E;
    color: #14080E;
}

.hero-img-wrap  {
    max-width: 100%;
    max-height: 100%;
    border-radius: 32px;
    overflow: hidden;
}



/* Typography */
h2 {
    font-weight: 800; /* Make text bold */
    font-size: clamp(2.5rem, 5vw, 4rem); /* Dynamically adjust between 2.5rem and 4rem */
    line-height: 1.3;
    color: #14080E; /* Ensure it’s dark on the light background */
    text-align: center;
}

h1 {
    font-weight: 800;
    font-size: clamp(1.5rem, 4vw, 3rem); /* Dynamically scale */
}

p, small {
    font-size: 1rem;
    line-height: 1.5;
    color: #e5e5e5; /* Subtle color for smaller text */
}

/* Ensure hero section text stays big and bold */
.hero-section h2 {
    font-size: clamp(2.5rem, 5vw, 4rem); /* Dynamically adjust */
    font-weight: 400;
    text-align: right;
    color: #49475B;
}

.hero-section .font-extrabold {
    color: #14080E;
}

.hero-section p {
    font-size: 1.25rem;
    color: #555; /* Slightly less dark for paragraphs */
}

/* Base Styles */
.stats-section {
    text-align: center;
    background-color: transparent;
}

.container {
    display: flex;
    gap: 16px; /* Spacing between divs */
}

.stat-box {
    flex: 1;
    min-width: 200px;
    padding: 16px 0px;
    text-align: left;
    align-items: center;
}

.stat-box p {
    font-size: 24px;
}

.stat-less {
    font-weight: 1000;
    color: #E9EB9E;
}

.stat-bright {
    font-weight: 400;
    line-height: 1.5;
    color: #ACC196;
}

/* Media Queries */
@media (min-width: 1920px) {
    section {
        padding: 64px;
    }
}

@media (max-width: 1919px) and (min-width: 1200px) {
    section {
        padding: 48px;
    }
}

@media (max-width: 1200px) and (min-width: 900px) {
    section {
        padding: 32px;
    }
}

@media (max-width: 1199px) and (min-width: 768px) {
    section {
        padding: 32px;
    }
}

@media (max-width: 767px) and (min-width: 481px) {
    section {
        padding: 16px;
        flex-direction: column;
    }

    h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    section {
        padding: 12px;
    }

    h2 {
        font-size: 1.5rem;
        text-align: center;
    }

    nav a {
        display: block;
        text-align: center;
        padding: 4px 0;
    }
}

@media (max-width: 480px) and (min-width: 320px) {
    body {
        margin: 0px 16px !important;
    }

    header {
        padding: 1rem auto !important;
        margin: 0px auto 1rem !important;
    }

    header a {
        font-size: 14px;
    }

    .hero-section {
        margin: 0px !important;
        padding: 16px !important;
    }

    .hero-section h2, span {
        font-size: 16px;
    }

    .logo-section {
        max-width: 60px;
    }

    .stats-section {
        padding: 1rem 0rem !important;
    }

    .stats-section .container {
        gap: 12px;
    }

    .stats-section p {
        font-size: 14px;
        text-align: center;
    }

    .stat-box {
        padding: 0px;
    }
}

/* Google Pixel 6a */
@media (max-width: 990px) {
    body {
        font-size: 14px;
        margin: 0px 16px !important;
    }
}

/* High DPI Screens (to optimize for 2.625x DPR) */
@media only screen and (-webkit-min-device-pixel-ratio: 2.625),
       only screen and (min-resolution: 252dpi) {
    body {
        font-smooth: always;
        -webkit-font-smoothing: antialiased;
    }
}