* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-attachment: fixed;
    background-size: cover;
    min-height: 100vh;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    background: white;
    display: flex;
    justify-content: center;
    width: 100%;
    box-shadow: 1px 0.5px 10px #00000025;
    z-index: 99;
}

header .header-content {
    padding: 1rem;
    display: flex;
    gap: 1rem;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    width: 1400px;
    max-width: 100%;
}

header img {
    width: 8rem;
}

header nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

header nav a {
    color: black;
    text-decoration: none;
    font-size: 13px;
    transition: 0.4s;
}

header nav a:hover {
    opacity: 0.5;
}

.custom-link {
    display: inline-block;
    background: #940051;
    color: white;
    padding: 0.5rem 2rem;
    border-radius: 100px;
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.outline-btn {
    background: transparent;
    color: #940051;
    border: 2px solid #940051;
    width: fit-content;
    text-decoration: none;
    display: inline-block;
    border-radius: 100px;
    padding: 0.5rem 2rem;
    transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.outline-btn:hover {
    background: #940051;
    color: #fff;
    box-shadow: 0 10px 25px rgba(148, 0, 81, 0.25);
    transform: translateY(-2px);
}

.custom-link:hover {
    background: #b10063;
    box-shadow: 0 10px 25px rgba(148, 0, 81, 0.35);
    transform: translateY(-2px);
}

footer {
    background: #940051;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-evenly;
    width: 100vw;
    margin-top: 5rem;
    padding: 2rem;
    color: white;
    align-items: flex-start;
}

footer ul {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-left: 2rem;
    margin-top: 2rem;
}

footer img {
    width: 20rem;
    max-width: 90vw;
}

footer ul li a {
    text-decoration: none;
    font-weight: 300;
    color: white;
}

.section-title {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    height: 50vh;
    width: 100%;
    background-position: center;
    background-size: cover;
}

.section-title h1 {
    font-weight: 500;
    color: white;
    font-size: 3.0em;
    text-align: center;
}

.section-nav {
    background: #940051;
    padding: 1rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    position: sticky;
    top: 8.5vh;
    z-index: 9;
    flex-wrap: wrap;
}

.section-nav a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 13px;
}

#menu-btn {
    display: none;
}

body section .section-container {
    width: 1144px;
    padding: 1rem;
    margin-top: 4rem;
    max-width: 90%;
}

@media (max-width: 750px) {

    #menu-btn {
        display: inline-block;
    }

    header nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 0;
        overflow: hidden;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        background: white;
        transition: 0.4s;
        z-index: 999999999;
    }

    header .show-nav {
        height: 100vh;
        z-index: 99999999;
    }

    .floating-btn {
        position: fixed;
        top: 2rem;
        right: 2rem;
        z-index: 999999;
    }

    .section-title h1 {
        font-size: 1.5em;
    }
}
