@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;350;600;700&display=swap');

/* Reset + Typografie */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 18px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #E3E7CE;
    color: #444;
    line-height: 1.7;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.content-container {
    max-width: 1200px;
    width: 90%;
    margin: 3rem auto 3rem;
    padding: 0 1rem;
    position: relative;

    background-image: url("../website/img/visual2.jpg");
    background-size: contain; 
    background-position: top center;
    background-repeat: no-repeat;
}

.content-container::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(227,231,206,0.6);
    z-index: 0;
}

.content-container > * {
    position: relative;
    z-index: 1;
}

.content-container header {
    text-align: center;
    padding-top: 30rem; 
}

.content-container header h1 {
    font-weight: 700;
    font-size: clamp(2.2rem, 4vw, 3rem);
    letter-spacing: 0.06em;
    text-transform: lowercase;
    color: #4A4A4A;
}

.slogan {
    margin: 3rem 0 4rem 0;
    text-align: center;
    font-size: clamp(1.2rem, 2vw, 2rem);
    font-weight: 700;
    color: #4A4A4A;
}

.description-section {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.description-section img {
    width: 240px;
    border-radius: 14px;
    object-fit: cover;
}

.description-text {
    flex: 1;
    font-size: 1.2rem;
    font-weight: 350;
}

p + p {
    margin-top: 1rem;
}

.cta-button {
    display: block;
    margin: 4rem auto 2rem auto;
    width: auto;
    max-width: 300px;
    padding: 1rem 2rem;
    text-align: center;

    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background-color: #E6B8A8;
    color: #444;
    text-decoration: none;
    transition: .25s ease-out;
}

.cta-button:hover {
    background-color: #DDAA99;
}

.page-container {
    max-width: 900px;
    width: 90%;
    margin: 5rem auto 3rem auto;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-top: 0;
}

.page-header h1 {
    font-weight: 700;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: #4A4A4A;
}

.page-section {
    margin-bottom: 2.5rem;
}

.page-section h2 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.7rem;
    color: #4A4A4A;
}

.page-section p,
.page-section a {
    font-size: 1.2rem;
    font-weight: 350;
}

.page-section a {
    color: #444;
    text-decoration: none;
    transition: text-decoration 0.2s ease-out;
}

.page-section a:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    padding: 1.2rem;
    margin-top: auto;
    font-size: 1rem;
    background-color: rgba(255,255,255,0.5);
}

footer a {
    margin: 0 .6rem;
    color: #444;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

@media (max-width: 680px) {

    html {
        font-size: 16px;
    }

    .content-container header {
        padding-top: 18rem;
    }

    .description-section {
        flex-direction: column;
        text-align: center;
    }

    .description-section img {
        width: 150px;
    }

    .cta-button {
        width: 100%;
    }

    .page-container {
        margin-top: 3rem;
    }

    .page-header h1 {
        font-size: 1.6rem;
    }

    .page-section h2 {
        font-size: 1.2rem;
    }
}
