/* ================================
   GLOBAL THEME VARIABLES
   ================================ */

/* ==================================
    Imports
======================================*/
/* @import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700;900&display=swap'); */
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght,YOPQ@100..900,300&display=swap");

:root {
    /* ----- Colors ----- */
    --color-primary: #f6841c;
    --color-primary-hover: #ffb067;
    --color-primary-light: #fab06b;
    --color-primary-dark: #1f4ecc;

    --color-secondary: #76b444;
    --color-secondary-light: #bcf88a;
    --color-secondary-dark: #cc6200;

    --color-accent: #00c4a7;
    --color-accent-light: #4dddc8;
    --color-accent-dark: #009880;

    --color-bg: #ffffff;
    --color-bg-alt: #ffffff;

    --color-text: #1a1a1a;
    --color-text-light: #4d4d4d;
    --color-border: #e0e0e0;

    /* ----- Typography ----- */
    --font-Header: "Kumbh Sans";
    --font-text: "Roboto";

    --font-size-xs: clamp(0.65rem, 0.75vw, 0.75rem); /* captions, meta */
    --font-size-sm: clamp(0.75rem, 1vw, 0.875rem); /* small text */
    --font-size-md: clamp(0.9rem, 1.2vw, 1rem); /* body text */
    --font-size-lg: clamp(18px, 1.8vw, 24px); /* subheaders */
    --font-size-xl: clamp(1.35rem, 2.4vw, 1.75rem); /* section headers */
    --font-size-xxl: clamp(1.75rem, 4vw, 2.5rem); /* hero subtitle */
    --font-size-xxxl: clamp(2.2rem, 6vw, 3.5rem); /* hero headline */

    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-bold: 600;
    --font-weight-extra-bold: 700;
    --font-size-header: clamp(24px, 2.5vw, 32px);
    /* ----- Layout ----- */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 18px;

    --shadow-sm: rgba(0, 0, 0, 0.05) 0px 2px 4px;
    --shadow-md: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    --shadow-lg: rgba(0, 0, 0, 0.15) 0px 6px 20px;

    --transition-fast: 0.15s ease;
    --transition-mid: 0.25s ease;
    --transition-slow: 0.4s ease;

    /* padding */
    --padding-sides: clamp(20px, 4vw, 120px);
    --btn-padding: 0.8rem 2.1rem;

    --nav-visible-height: 100px;
}

h1,
p,
a,
i {
    font-style: normal;
}
/* ================================
   BASE STYLING
   ================================ */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    transition: 0.3s all ease-in-out;
}
button,
a,
input,
select {
    transition: 0.3s all ease-in-out;
}
html,
body {
    margin: 0;
    padding: 0;
    background: var(--color-bg);
    color: var(--color-text);
    width: 100%;
    font-family: var(--font-text);
    font-size: var(--font-size-md);
    overflow-x: hidden;
    overflow-y: auto;
}

h2 {
    margin-bottom: 1rem;
}
/* @media (min-width: 1024px){
 body{
    overflow-x: visible;
 }
    
} */

p:empty {
    display: none;
}
.pin-spacer {
    inset: 0 !important;
    /* pointer-events: none;  */
}
ul li,
ol li {
    /* list-style-position: inside; */
}
ul {
    /* list-style-position: inside;   bullet stays inside */
    /* padding-left: 0;               remove default */
}

ul li {
    /* padding-left: 1.2em;           indent wrapped lines */
    /* text-indent: -1.3em;           pull first line (bullet) back */
    text-align: justify;
}
.greyContainer {
    color: #606060;
}
strong.orange {
    color: var(--color-primary);
}
body.no-scroll {
    overflow: hidden;
    height: 100vh;
}
/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

p {
    text-align: justify;
}
.sectionWrapper {
    max-width: 1600px;
    margin: 0px auto;

    padding-inline: 1.5rem;
    padding: 0 var(--padding-sides);
}
/* ================================
   BUTTONS
   ================================ */

.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: var(--radius-md);
    font-weight: var(--font-weight-medium);
    transition: var(--transition-mid);
    cursor: pointer;
    text-decoration: none;
    color: white;
}

.btn-primary {
    background: var(--color-primary);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
}

.btn-secondary {
    background: var(--color-secondary);
}

.btn-secondary:hover {
    background: var(--color-secondary-dark);
}

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

/* .card {
    background: var(--color-bg-alt);
    padding: 25px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-mid);
}

.card:hover {
    box-shadow: var(--shadow-md);
} */

/* ================================
   UTILITIES
   ================================ */

.text-center {
    text-align: center;
}
.text-light {
    color: var(--color-text-light);
}

.mt-1 {
    margin-top: 10px;
}
.mt-2 {
    margin-top: 20px;
}
.mt-3 {
    margin-top: 3rem;
}

.mb-1 {
    margin-bottom: 10px;
}
.mb-2 {
    margin-bottom: 20px;
}
.mb-3 {
    margin-bottom: 30px;
}

.p-1 {
    padding: 10px;
}
.p-2 {
    padding: 20px;
}

.rounded {
    border-radius: var(--radius-md);
}
.shadow {
    box-shadow: var(--shadow-sm);
}

/* -------------------- Headers -------------------------- */
/* ================================
   TYPOGRAPHY SYSTEM (Responsive)
   ================================ */

/* HERO HEADER (Big landing page title) */
.hero-header {
    font-family: var(--font-Header);
    font-weight: 400;
    line-height: 1.1;
    font-size: clamp(28px, 5vw, 48px);
    width: 100%;
}

/* PAGE HEADER (Top title on pages) */
.page-header {
    font-family: var(--font-text);
    font-weight: 600;
    line-height: 1.15;
    font-size: clamp(1.8rem, 3vw + 0.5rem, 3rem);
}

/* SECTION TITLE (Smaller than page title) */
.main-header {
    font-family: var(--font-Header);
    font-weight: 400;
    color: #606060;
    font-size: var(--font-size-header);
}
.main-header * {
    font-weight: 400;
}
.main-header .green {
    color: var(--color-secondary);
}

.main-header .orange {
    color: var(--color-primary);
}

.section-title {
    font-family: var(--font-text);
    font-weight: 600;
    line-height: 1.2;
    font-size: clamp(1.4rem, 2vw + 0.5rem, 2.2rem);
}

/* SUBTITLE (below titles, intros, etc.) */
/* .subtitle {
    font-family: var(--font-text);
    font-weight: 300;
    margin-top: 1rem;
    line-height: 1.6;
    width: 100%;
    font-size: clamp(0.9rem, 0.6vw + 0.7rem, 1.1rem);
} */

/* BODY TEXT (normal paragraphs) */
.text-body {
    font-family: var(--font-text);
    font-weight: 400;
    line-height: 1.6;
    font-size: clamp(0.9rem, 0.6vw + 0.7rem, 1.1rem);
}

/* SMALL TEXT (legal text, extra labels) */
.text-small {
    font-family: var(--font-text);
    font-weight: 400;
    line-height: 1.5;
    font-size: clamp(0.75rem, 0.4vw + 0.6rem, 0.9rem);
}

/* BUTTON TEXT */
.btn-text {
    font-family: var(--font-text);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: clamp(0.8rem, 0.5vw + 0.6rem, 1rem);
}
.mobile {
    display: none;
}

.backgroundWrapper {
    position: relative;
}

.backgroundWrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.overlay {
    height: 50%;
    position: absolute;
    bottom: 0;
    z-index: 10;
    width: 100%;
    left: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 1) 100%
    );
}
.section {
    padding: 0 var(--padding-sides);
}
.pageContentWrapper {
    padding: clamp(60px, 10vw, 140px) var(--padding-sides);
    padding-top: clamp(40px, 10vw, 90px);
}
.detailsWrapper {
    padding-top: clamp(40px, 10vw, 90px);
}
.lightText {
    font-size: clamp(14px, 1vw, 16px);
    font-weight: var(--font-weight-light);
    color: var(--color-text-light);
}

.ctaWrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.ctaBtn a {
    text-decoration: none;
    padding: var(--btn-padding);
    color: white;
    background-color: var(--color-secondary);
    border-radius: 100px;
}

.ctaBtn a:hover {
    background-color: var(--color-secondary-light);
}
.secondaryCta {
    text-decoration: none;
    color: var(--color-text-light);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.secondaryCta:hover {
    color: var(--color-secondary);
    gap: 1.5rem;
}

.multi-truncate {
    display: -webkit-box;
    -webkit-line-clamp: 3; /* number of lines to show */
    -webkit-box-orient: vertical;
    overflow: hidden;
}
body.filter-open {
    overflow: hidden; /* lock scroll */
    height: 100vh;
}
.noPadding {
    padding-inline: 0 !important;
}
.pageContentWrapper {
    max-width: 1600px;
    margin: 0 auto; /* centers horizontally */
    /* padding-inline: 1.5rem;prevents edge touching on small screens */
    min-height: 600px;
}

.filterOverlay {
    position: fixed;
    top: 80px; /* 👈 BELOW NAV */
    left: 0;
    right: 0;
    bottom: 0;

    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;

    z-index: 9000; /* below drawer */
}

body.filter-open .filterOverlay {
    opacity: 1;
    pointer-events: auto;
}
body.filter-open .pageContentWrapper {
    overflow: hidden;
}
.paddingContainer {
    padding: 0 var(--padding-sides) !important;
}

.robotoContainer .main-header {
    font-family: "Roboto" !important;
    font-weight: 500 !important;
}
.courseWrapper,
.messageWrapper {
    transition: unset !important;
}

@media (min-width: 576px) {
    /* small screens */
}

@media (min-width: 1000px) {
    /* tablets */
    .heroBannerWrapper {
        height: calc(100vh - 120px);
    }
    .hero-header {
        font-size: clamp(28px, 5vw, 48px);
        width: 40vw;
    }
}

@media (max-width: 768px) {
    /* desktops */
}

@media (max-width: 480px) {
    /* large desktops */
    .desktop {
        display: none;
    }
    .mobile {
        display: block;
    }
}

@media (min-width: 1400px) {
    /* 2K monitors */
}

/* ------------------------------------------------------- */
