/* =========================
   VARIABLES
========================= */
:root {
    --black: #0a0a0a;
    --main-bg: #f8f8f8;
    --white: #ffffff;

    --header-color: #111111;
    --accent: #22c59f;

    --text-light: #666666;
    --text-dark: #464646;
    --border-light: #eaeaea;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    display: flex;
    flex-direction: column;
    flex: 1;
}


.hero {
    background:
        linear-gradient(rgba(255, 255, 255, 0.885), rgba(255, 255, 255, 0.886)),
        url('../../img/cover/page_cover_photo.png') no-repeat center center;

    background-size: cover;
    background-attachment: fixed; /* Makes the background stay fixed */

    color: #000000;
    min-height: 80vh;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
    padding: 40px 20px;
}


.hero-content {
    max-width: 1200px;
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-text {
    flex: 1;
    text-align: left;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.logo {
    width: 100%;
    max-width: 400px;
    height: auto;
}

.hero h1 {
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
}

.eyebrow {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-bottom: 18px;
}

.hero-description {
    max-width: 600px;
    color: var(--text-dark);
    font-size: 1.2rem;
    line-height: 1.8;
}

/* =========================
   BUTTONS
========================= */

.hero-buttons {
    margin-top: 30px;
}


.btn-primary {
    background: #000;
    color: #fff;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: var(--black);
    color: var(--white);
    border: 1.5px solid var(--black);
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
    align-self: flex-start;
}

.btn-primary:hover {
    background: var(--black);
    color: white;
    transform: translateY(-2px);
}

.btn-secondary:hover {
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgb(255, 255, 255);
    color: #111827;
    border: 1px solid #d1d5db;
}

/* =========================
   RESPONSIVE DESIGN
========================= */

@media (max-width: 768px) {

    .tagline {
        font-size: 1rem;
    }

    .hero {
        background-attachment: scroll;
    }

    .hero-content {
    flex-direction: column-reverse;
    text-align: center;
    }

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

    .hero-buttons {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }
}

@media (max-width: 480px) {

    .hero {
        padding: 40px 15px;
    }

    .logo {
        max-width: 220px;
    }

    .tagline {
        font-size: 0.95rem;
    }

}

