/* 
 * ZENVY STUDIOS - STYLES.CSS
 * Based on provided Design System JSON
 */

@import url('https://fonts.googleapis.com/css2?family=Doto:wght@100..900&family=Eagle+Lake&family=Electrolize&family=IBM+Plex+Serif:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Roboto+Slab:wght@100..900&family=Silkscreen:wght@400;700&display=swap');
/* --- 1. VARIABLES & ROOT --- */


@font-face {
    font-family: "Lausannepan 350";
    src: url(assets/fonts/TWKLausannePan-350.woff2)format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap
}


:root {
    /* Colors */
    --ink-black: #011627ff;
    --honeydew: #f0f8eaff;
    --muted-olive: #a8c686ff;
    --ash-brown: #685044ff;
    --sandy-brown: #ee964bff;
    --snow: #fffbfeff;
    --taupe: #48392aff;
    --pine-blue: #3c787eff;
    --honey-bronze: #f6ae2dff;
    --tiger-orange: #ea7e1fff;

    --text-body: #374151;

    --primary: #4A90E2;
    /* Trust Blue */
    --accent: #27AE60;
    /* Growth Green */
    --accent-pop: #D4AF37;
    /* Gold */
    --neutral-light: #F9FAFB;
    --neutral-dark: #111827;

    --text-muted: #6B7280;
    --bg-body: #FFFFFF;
    --card-bg: #FFFFFF;

    /* Typography */
    --thug-life: "Silkscreen", sans-serif;
    --nothing: "Doto", sans-serif;
    --title: "IBM Plex Serif", serif;
    --blocky: "Electrolize", sans-serif;
    --para: "Roboto Slab", serif;
    --font-heading: 'Manrope', sans-serif;
    --font-body: "Electrolize", sans-serif;

    /* Spacing */
    --section-padding: 100px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

/* --- 2. BASE STYLES --- */
html {
    height: 100%;
    width: 100%;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    font-family: sans-serif
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-body);
    color: var(--text-body);
    line-height: 1.7;
    font-size: 2rem;
    overflow-x: hidden;
    margin: 0;
    transition: background-color 0.3s ease, color 0.3s ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 10px;
    font-weight: 400;
}

h1 {
    margin-top: 20px;
    line-height: 95%;
}

h2 {
    margin-top: 20px;
    line-height: 95%;
}

h3 {
    margin-top: 20px;
    line-height: 95%;
}

h4 {
    margin-top: 10px;
    font-size: 18px;
    line-height: 24px;
}

h5 {
    margin-top: 10px;
    font-size: 14px;
    line-height: 20px;
}

h6 {
    margin-top: 10px;
    font-size: 12px;
    line-height: 18px;
}

p {
    margin-top: 0;
    margin-bottom: 10px;
}

blockquote {
    border-left: 5px solid #e2e2e2;
    margin: 0 0 10px;
    padding: 10px 20px;
    font-size: 18px;
    line-height: 22px;
}

figure {
    margin: 0 0 10px;
}

figcaption {
    text-align: center;
    margin-top: 5px;
}

ul,
ol {
    margin-top: 0;
    margin-bottom: 10px;
    padding-left: 40px;
}


/* --- HERO SECTION --- */
.hero-section {
    display: flex;
    min-height: 100vh;
    position: relative;
    background: 0 0;
    align-items: center;
    justify-content: center;
    z-index: 1;
    /* Above bg-lines */
}

.hero-text {
    letter-spacing: -.08vw;
    color: black;
    font-family: 'lausannepan 350', sans-serif;
    font-weight: 300;
    font-size: 5vw;
}

.hero-svg {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    /* JS will handle entrance */
    pointer-events: none;
    z-index: 5;
    /* Above bg-lines, below container */
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    will-change: transform, opacity;
}


.hero-svg-white {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    /* Hidden initially */
    pointer-events: none;
    z-index: 10;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    will-change: transform, filter, opacity;
}

.hero-section {
    display: flex;
    min-height: 100vh;
    position: relative;
    background-color: var(--snow);
    align-items: center;
    justify-content: center;
    transition: background-color 0.1s linear;
    z-index: 2;
}



.hero-section .container {
    position: relative;
    z-index: 10;
    /* Above all SVGs and bg-lines */
    width: 100%;
}


.hero-svg img {
    width: 130vw;
    max-width: none;
    height: 130vh;
    mask-image: linear-gradient(to bottom, black 60%, transparent 20%);
    -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 20%);
}

.hero-svg-white img {
    width: 130vw;
    max-width: none;
    height: 130vh;
    mask-image: linear-gradient(to bottom, black 60%, transparent 20%);
    -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 20%);
}

/* --- Buttons --- */
.home_cta {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
    margin-left: 5vw;
    flex-wrap: wrap;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.8rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    outline: none;
    border: none;
}

.button-primary {
    background-color: var(--ink-black);
    color: var(--snow);
    border: 1px solid var(--ink-black);
}

.button-primary:hover {
    background-color: var(--ash-brown);
    color: var(--snow);
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.15);
}

.button-outline-light {
    background-color: transparent;
    color: var(--ink-black);
    border: 1px solid rgba(1, 22, 39, 0.3);
}

.button-outline-light:hover {
    border-color: var(--ink-black);
    background-color: transparent;
    transform: translateY(-4px);
    text-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
}


























/* --- 8. RESPONSIVE --- */
@media (max-width: 768px) {
    .py-section {
        padding: 60px 0;
    }

    .hero-section {
        text-align: center;
    }

    .cta-group {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .cta-group .btn {
        width: 100%;
    }

    .ms-3 {
        margin-left: 0 !important;
    }
}