/* Reset and base styles */
@font-face {
    font-family: 'Obviously';
    src: url('fonts/Obviously-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

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

body {
    line-height: 1.6;
    color: #333;
    font-size: 16px;
    font-family: 'Obviously', sans-serif;
    font-style: normal;
    font-weight: 200;
}

.container {
    margin: 0 auto;
    padding: 0 3.5rem;
    position: relative;
}

.container-arrow {
    max-width: 100px;
}

.container-arrow img {
    width: 100%;
    height: auto;
}

/* Hero Section */
.hero {
    min-height: 600px;
    padding: 0 0 4rem 0;
    background-color: #F2B7B4;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    overflow: hidden;
}

.hero .container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-top: 2rem;
    height: 100%;
    overflow: hidden;
}

.hero h1 {
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 4rem;
}

.hero-subtitle {
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 2rem;
    max-width: 1100px;
}

.hero-image {
    width: 100%;
    margin: 0 auto;
    border-radius: 4rem;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(100%);
}

/* Section Styles */
section {
    padding: 3rem 0;
}

section:nth-child(odd) {
    background-color: #F2B7B4;
}

section:nth-child(even) {
    background-color: #FECF5A;
}

h2 {
    font-size: 3.5rem;
    text-align: left;
    font-weight: 500;
}

.intro {
    margin: 0 auto 2rem;
    text-align: left;
    margin-left: 0;
}

/* Two Columns Layout */
.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.column {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.column img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
}

.column h3 {
    font-size: 2rem;
    font-weight: 500;
}

.column p {
    line-height: 1.6;
}

/* Links in sections */
.column a, .intro a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.column a:hover, .intro a:hover {
    text-decoration-thickness: 2px;
}

/* Outro text */
.outro {
    text-align: left;
    margin-left: 0;
    margin-top: 1rem;
}

/* Footer */
footer {
    padding: 2rem 0;
    text-align: center;
    background-color: #F2B7B4;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 2rem;
    }

    .two-columns {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    .column h3 {
        font-size: 1.75rem;
    }

    section {
        padding: 4rem 0;
    }

    .column img {
        height: 250px;
    }
}

@media (min-width: 769px) {
    .container {
        display: grid;
        grid-template-columns: 150px 1fr 150px;
        gap: 2rem;
        align-items: start;
    }

    .container-arrow {
        display: flex;
        align-items: center;
        min-height: 100%;
    }

    .two-columns {
        grid-column: 2;
    }

    h2 {
        grid-column: 2;
    }

    .intro {
        grid-column: 2;
    }

    .outro {
        grid-column: 2;
    }

    .hero-subtitle {
        font-size: 3rem;
    }
}
