* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-open-sans);
}

body {
    background-image: url('../images/background image about dark.jpg');
    background-size: cover;
    font-family: Arial, sans-serif;
    background-color: hsl(0, 0%, 100%);
    color: #222;
    background-position: center;
}

.logo {
    height: clamp(2rem, 6vh, 4rem);
    width: auto;
    padding-left: 1rem;
}

nav {
    height: var(--nav-height);
    background-color: color-mix(in srgb, var(--color-green-3) 80%, transparent);
    filter: brightness(1.1);
    backdrop-filter: blur(6px);
    width: 100%;
    box-shadow: var(--shadow-light);
    display: flex;
    padding: 0.5rem 1rem;
    z-index: 10;
    border-bottom: 3px solid var(--color-yellow-2);
    height: fit-content;
    position: fixed;
    top: 0;
}

nav img#logo {
    height: clamp(2rem, 6vh, 4rem);
    width: auto;
    padding-left: 1rem;
}

nav h2 {
    color: var(--color-yellow-1);
    font-family: var(--font-serif);
    margin-left: 10px;
    font-size: clamp(1rem, 8vh, 1.7rem);
    margin-top: auto;
    margin-bottom: auto;
}

nav ul {
    width: fit-content;
    display: flex;
    justify-content: right;
    align-items: center;
    list-style-type: none;
    color: var(--color-yellow-2);
    margin-right: 40px;
    margin-left: auto;
    font-size: clamp(1rem, 8vh, 1.2rem);
}

nav li a {
    background-color: var();
    font-family: var(--font-cooper-bt);
    color: var(--color-yellow-2);
    text-decoration: none;
    padding: 1rem;
}

main {
    display: flex;
    justify-content: center;
    align-content: center;
    width: 100%;
    padding-top: 13vh;
    box-sizing: border-box;
}

.header {
    text-align: center;
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 2em;
    margin-top: 60px;
}

.header h1 {
    font-family: var(--font-itc-benguiat);
    color: var(--color-yellow-2);
}

section {
    background-color: var(--color-white);
}

.section .text h2 {
    font-size: 60px;
}

.section .text p {
    font-size: 20px;
}

.section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 10%;
    gap: 40px;
    flex-wrap: wrap;
}

.section img {
    width: 40%;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.text {
    width: 55%;
}

.text h2 {
    color: #264027;
}

@media (max-width: 768px) {
    .section {
        flex-direction: column;
        text-align: center;
        padding: 40px 5%;
    }
    .text,
    .section img {
        width: 100%;
    }
    .section img {
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 30px 4%;
    }
    .text h2 {
        font-size: 1.3rem;
    }
    .text p {
        font-size: 1rem;
    }
}

.collage {
    display: flex;
    gap: 10px;
    padding: 20px 10%;
    background-color: var(--color-white);
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    height: 200px;
    white-space: nowrap;
}

.collage::-webkit-scrollbar {
    height: 10px;
}

.collage::-webkit-scrollbar-thumb {
    background-color: #999;
    border-radius: 5px;
}

.collage::-webkit-scrollbar-track {
    background-color: #f0f0f0;
}

.collage img {
    height: 150px;
    width: 240px;
    border-radius: 10px;
    flex-shrink: 0;
    object-fit: cover;
    box-shadow: var(--shadow);
}

section#issues-section {
    text-align: center;
    padding-bottom: 1rem;
}

p#issues {
    font-family: var(--font-itc-benguiat);
    color: var(--color-green-2);
    font-weight: bold;
    opacity: 0.7;
}