:root {
    --color-1: rgba(255, 100, 100, 0.2);
    --color-2: rgba(255, 200, 100, 0.2);
    --color-3: rgba(100, 100, 255, 0.2);
    --color-4: rgba(255, 100, 100, 0.2);
}

body {
    margin: 0;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle at 30% 30%, var(--color-1), var(--color-2), var(--color-3), var(--color-4));
    background-size: 200% 200%;
    filter: contrast(110%) brightness(105%);
    position: relative;
    transition: background-position 0.2s ease-in-out;

    font-family: 'Host Grotesk', sans-serif;
    padding: 0;
    color: black;
    font-optical-sizing: auto;
    font-style: normal;

    font-size: 62.5%;

    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
    align-content: stretch;
}

body::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url('https://www.transparenttextures.com/patterns/noise-pattern.png');
    opacity: 0.2;
    pointer-events: none;
}

header h1 {
    margin-bottom: 5px; /* Reduce space below h1 */
}

header h3 {
    margin-top: 5px; /* Reduce space above h3 */
}


h1 {
    font-size: 2.2rem;
}

h2 {
    font-size: 1.8rem;
    font-weight: bold;
}

h3 {
    font-size: 1.8rem;
    font-weight: normal;
}

h4, .small {
    font-size: 1.2rem;

}

h5 {
    font-size: 1.6rem;
    margin-bottom: 0;
    margin-top: 0em;
    text-align: left;
}

h4 {
    font-weight: bold;
    margin-top: 4rem;
    text-align: left;
}

a {
    color: gray;
    text-decoration: none;
}

a:hover {
    color: darkgray;
    text-decoration: underline;
}

section h4::before {
    content: "— "; /* Adds an em dash before h4 */
    margin-right: 5px; /* Optional: Adjust spacing */
}

p, li {
    font-size: 1.6rem;
    font-weight: normal;
    text-align: left;
}

body:hover {
    background-position: 50% 50%;
}

.program-row {
    margin-top: 5.4em;
    padding-top: 1.35em;
    border-top: 1px solid black;
}

.container {
    width: 80%;
    max-width: 1150px;
    margin: auto;
    padding: 20px 0;
}

.underline {
    text-decoration: underline;
}

.no-margin {
    margin: 0;
}

.no-bt-margin {
    margin-bottom: 0;
}

header {
    text-align: center;
    padding: 50px 20px;


}

nav {
    display: flex;
    justify-content: center;
    gap: 20px;
}

nav a {
    color: black;
    text-decoration: none;
    font-weight: normal;
    font-size: 1.2rem;
    text-decoration: underline;
}

section {
    padding: 50px 0;
    text-align: center;
}

.footer {
    width: 100%;
    font-size: 1.2rem;
    text-align: center;
}

.footer p {
    width: 100%;
    font-size: 1.2rem;
    text-align: center;
}

.linktree-icon {
    margin-left: 10px;
}

.linktree-icon svg {
    transition: stroke 0.3s ease;
}

.linktree-icon svg:hover {
    fill: gray;
}

.instagram-icon {
    margin-right: 10px;
}

.instagram-icon svg {
    transition: stroke 0.3s ease;
}

.instagram-icon svg:hover {
    stroke: gray;
}

@media (max-width: 768px) {
    body {
        font-size: 50%; /* Reduce base font size */
        align-items: center;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2, h3 {
        font-size: 1.6rem;
    }

    p, li {
        font-size: 1.4rem;
    }


    .container {
        width: 90%;
        padding: 15px 0;
    }

    header {
        padding: 30px 10px;
    }

    nav {
        flex-direction: column; /* Stack nav links vertically */
        align-items: center;
        gap: 10px;
    }

    section {
        padding: 30px 0;
    }

    .footer {
        font-size: 1rem;
    }

    .footer p {
        font-size: 1rem;
    }


}