/* Base Styles */
body {
    background-color: #fff;
    font-family: sans-serif;
    color: #000;
    margin: 0;
    padding: 0;
}

h1 {
    font-weight: 700;
    font-size: clamp(2rem, 6vw, 70px);
    line-height: 1;
    color: #000;
}

h3 {
    font-weight: 200;
    font-size: clamp(1.5rem, 3vw, 30px);
    color: black;
    font-family: "Inter", sans-serif;
}

p {
    font-size: clamp(1rem, 2.5vw, 20px);
    font-family: "Inter", sans-serif;
}

.sub-titles {
    color: black;
    line-height: 1.2;
    font-size: clamp(2rem, 4vw, 48px);
}

.poster {
    width: 100%;
    aspect-ratio: 2;
    background-image: url("images/TheMakingOf/poster.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.poster h1 {
    margin: 0 auto;
    transform: translateY(250%);
    font-weight: 500;
    font-size: clamp(3rem, 10vw, 128px);
    font-family: "Orbitron", sans-serif;
    text-align: center;
    color: white;
}



.content {
    width: 90%;
    margin: 0 auto;
}

.title {
    color: white;
    display: flex;
    font-weight: 700;
    font-size: clamp(2.5rem, 6vw, 65px);
    font-family: "Orbitron", sans-serif;
    transform: translateX(2.5%);
}

.intro {
    display: flex;
    flex-wrap: wrap;
    gap: 5vw;
    justify-content: space-between;
    width: 90%;
    margin: 0 auto;
    padding: 40px 0;
    height: auto;
}

.img img {
    width: 100%;
    max-width: 90%;
    height: auto;
    border-radius: 15px;
    margin-bottom: 50px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.event-description {
    width: 90%;
    margin: 0 auto 50px auto;
    text-align: left;
}

.image-title {
    margin-top: 100px;
}

.citation-container {
    width: 90%;
    margin: 0 auto;
    text-align: center;
    font-weight: 700;
    font-size: clamp(1.5rem, 4vw, 30px);
}

.seperation-line {
    background-color: #6366F1;
    width: 100%;
    height: 6px;
    margin: 100px auto;
}

.row-images1,
.row-images2,
.row-images3 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 50px auto;
    width: 100%;
}

.row-images1 img,
.row-images2 img,
.row-images3 img {
    width: 110%;
    max-width: 400px;
    border-radius: 10px;
    height: 22em;
}

.description-container {
    text-align: left;
    width: 90%;
    margin: 100px auto;
}

.description-container h2 {
    font-weight: 700;
    font-size: clamp(2rem, 5vw, 40px);
}

.installation-text {
    color: black;
}

.installation-img img {
    width: 100%;
    max-width: 860px;
    height: auto;
    margin: 100px auto;
    display: block;
    border-radius: 10px;
}

.color-palette-box {
    background-color: #2B2D2D;
    width: 100%;
    max-width: 80%;
    min-height: 400px;
    padding: 60px 60px 60px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    box-sizing: border-box;
    margin: 0 auto;
}

.color {
    width: 30vw ;
    max-width: 280px;
    height: 30vw;
    max-height: 280px;
    border-radius: 10px;
}

#color1 { 
    background-color: #4C9896;
}

#color2 { 
    background-color: #E5B93D; 
}

#color3 { 
    background-color: #852914; 
}

#searchInput {
    visibility: hidden;
}

@media screen and (max-width: 800px) {
    h1 {
        font-size: clamp(2rem, 4vw, 50px);
    }

    h3 {
        font-size: clamp(1.5rem, 2vw, 25px);
    }

    .sub-titles {
        font-size: clamp(1.5rem, 3vw, 38px);
    }

    .poster {
        aspect-ratio: 2;
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        background-attachment: scroll;
    }

    .title {
        font-size: clamp(1rem, 4vw, 40px);
        transform: none;
        justify-content: center;
        text-align: center;
    }

    .intro {
        flex-direction: column;
        gap: 40px;
        align-items: stretch;
    }

    .challenge-container,
    .client-container {
        text-align: center;
        gap: 10px;
    }

    .row-images1 img,
    .row-images2 img,
    .row-images3 img {
        max-width: 100%;
        margin: 0 auto;
    }

    .color {
        width: 45vw;
        height: 45vw;
    }
}
