@font-face {
    font-family: 'centurygothic';
    src: url('font/centurygothic.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary-color: #003b3a;
    --secondary-color: #41585a;
    --shimmer-color: #337a79;

    --semi-white-color: #e1f0f0;
    --white-color: #d9e9eb;
    --font: 'centurygothic', sans-serif;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font);
    color: var(--white-color);
    position: relative;
    width: 100%;
    overflow-x: hidden;
}

.bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/background.jpg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    z-index: -1;
}

.section {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: left;
    box-sizing: border-box;
}

.section-hero {
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.6rem;
}

.title {
    font-size: clamp(2.8rem, 11vw, 9rem);
    font-weight: normal;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    line-height: 1;
    padding-left: 0.45em;
    color: var(--primary-color);
}

.subtitle {
    font-size: clamp(0.65rem, 2vw, 1.8rem);
    letter-spacing: 0.22em;
    color: var(--primary-color);
    line-height: 2;
    text-transform: lowercase;
    font-weight: 600;
}

.info-subtitle {
    font-size: clamp(0.65rem, 1.6vw, 1.4rem);
    letter-spacing: 0.22em;
    color: var(--secondary-color);
    line-height: 2;
    text-transform: lowercase;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.8em;
}

.info-sep {
    opacity: 0.4;
}

.section-1,
.section-2 {
    min-height: 100vh;
    padding: 10vh 3rem;
    box-sizing: border-box;
}

.overlay {
    max-width: 900px;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    padding: 0 1rem;
}

.section-1 {
    justify-content: right;
    align-items: center;
}

.overlay h2 {
    font-size: clamp(1.4rem, 3vw, 2.8rem);
    font-weight: normal;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--semi-white-color);
    padding-bottom: 5vh;
}

.overlay > p
{
    padding-left: 10vw;
    padding-right: 10vw;
    font-size: clamp(0.9rem, 1.1vw, 1.4rem);

}

.section-2 {
    justify-content: center;
}



.makers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    text-align: left;
}

.maker-card {
    padding: 1.8rem 1.6rem;
    border: 1px solid rgba(207, 227, 228, 0.2);
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    transition: border-color 0.3s ease;
    text-align: center;
}

.maker-card:hover {
    border-color: rgba(207, 227, 228, 0.5);
}

.maker-name {
    font-size: clamp(1rem, 1.2vw, 1.4rem);
    font-weight: normal;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--semi-white-color);
}

.maker-bio {
    font-size: clamp(0.9rem, 1.1vw, 1rem);
    letter-spacing: 0.06em;
    color: var(--semi-white-color);
    line-height: 1.8;
}

.maker-card .btn-group {
    margin-top: auto;
}


.section-3{
    justify-content: center;
    padding-bottom: 5vh;
}



@media (min-width: 601px) and (max-width: 1024px) {
    .section-1,
    .section-2,
    .section-3 {
        min-height: auto;
        padding: 3rem 2rem;
    }

    .overlay > p {
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }

    .site-footer {
        padding: 4rem 2rem 2.5rem;
    }
}

@media (max-width: 600px) {
    .bg {
        height: 100%;
    }

    .section-hero {
        height: 50vh;
        padding: 14vh 6vw 10vh;
        justify-content: flex-start;
    }

    .hero-content {
        gap: 1rem;
    }

    .title {
        font-size: clamp(2.2rem, 12vw, 3.5rem);
        letter-spacing: 0.25em;
        padding-left: 0.25em;
    }

    .subtitle {
        font-size: clamp(0.85rem, 4.5vw, 1.1rem);
        letter-spacing: 0.14em;
        line-height: 1.9;
    }

    .info-subtitle {
        flex-direction: column;
        gap: 0.3em;
        font-size: clamp(0.85rem, 2.5vw, 1rem);
        line-height: 1.7;
    }

    .info-sep {
        display: none;
    }

    .section-1,
    .section-2,
    .section-3 {
        min-height: auto;
        padding: 2rem 1.5rem;
    }

    .overlay h2 {
        font-size: 1.4rem;
        letter-spacing: 0.25em;
        padding-bottom: 3vw;
    }



    .overlay > p
    {
        padding-left: 1vw;
        padding-right: 1vw;

    }

    /* Maker cards onder elkaar op mobiel */
    .makers-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .maker-name
    {
        font-size: 1.1rem;
    }



    .maker-card {
        padding: 1.2rem 1rem;
    }

    .site-footer {
        padding: 8vw 6vw 10vw;
    }

    .footer-domain {
        font-size: 7vw;
        letter-spacing: 0.1em;
    }
}