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

body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    color: #444444;
}

header,
footer {
    background-size: cover;
    background-position: center;
    height: 350px;
    flex-shrink: 0;
}

.logos {
    margin: 50px auto;
    width: 100%;
    background-color: rgba(35, 36, 79, 100);
    padding: 10px;
    color: #fff;
    text-align: center;
    border-radius: 8px;
}

a {
    text-underline-offset: 4px;
}

.logos a img {
    height: 3rem;
    border: 0;
}

header {
    background-image: url('images/SVG/header-background.svg');
    /* Replace with your header image */
}

footer {
    background-image: url('images/SVG/footer-background.svg');
    /* Replace with your footer image */
}

main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    width: 100%;
    align-items: center;
}

.stage {
    max-width: 1000px;
    width: 100%;
    align-items: center;
    border-radius: 16px;
    padding: 32px;
}

.coming-soon {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0px 72px;
    grid-auto-flow: row;
    grid-template-areas:
        "one two"
        "three two";
    align-items: start;
}

.one {
    grid-area: one;
    height: 165px;
}

.two {
    grid-area: two;
}


.three {
    grid-area: three;
    margin-top: -96px;
}

/*.four { grid-area: 2 / 2 / 3 / 3; }*/


/* p {
    font-family
} */


.grid-container img {
    width: 100%;
    height: auto;
    max-width: 100%;
    justify-content: start;
}

.grid-container .information {
    font-size: 1rem;
    line-height: 1.5;

}

p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}


.horizontal-list {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    padding: 0;
    margin: 1.5rem 0 0 0;
    li {
        a {
            text-decoration: underline;
            color: rgb(35, 36, 79);
            font-weight: bold;
        }
        & a:hover {
            color: #000000;
        }
    }
}

.no-styles-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 0;
    margin: 0;
    li {
        a {
            text-decoration: underline;
            color: rgb(35, 36, 79);
            font-weight: bold;
        }
        & a:hover {
            color: #000000;
        }
    }
}

.space {
    margin-bottom: 16px;
}

.event-buttons-list {
    margin-bottom: 16px;
}

.event-buttons-list li {
    display: inline;
}

.primary-btn {
    display: inline-block;
    /* Makes the link behave like a button */
    background-color: #fa6646;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    /* Removes underline */
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.primary-btn:hover {
    background-color: #e25538;
    /* Slightly darker on hover */
    transform: scale(1.03);
}

.primary-btn:active {
    background-color: #c9442b;
    /* Even darker when clicked */
    transform: scale(0.98);
}

.primary-btn:focus {
    outline: 2px solid #fa6646;
    outline-offset: 4px;
}




@media (max-width: 768px) {
    .grid-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .grid-container img {
        margin-bottom: 1rem;
    }

    ul.horizontal-list {
        flex-direction: column;
    }

    .logos {
        margin: 50px auto;
        width: 100%;
        background-color: rgba(35, 36, 79, 100);
        padding: 5px;
        color: #fff;
        text-align: center;
        border-radius: 8px;
    }

    .logos a img {
        height: 2rem;
        border: 0;
        margin: 12px 0 12px 0;
    }

    .coming-soon {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0px 72px;
        grid-auto-flow: row;
        grid-template-areas:
            "one"
            "two"
            "three";
        align-items: start;
    }

    .three {
        grid-area: three;
        margin-top: 24px;
    }



}