@font-face {
    font-family: Overused Grotesk;
    src: url(fonts/OverusedGrotesk-VF.ttf);
}

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

html {
    height: 100%;
}

.home-button-link {
    position: fixed;
    top: 60px;
    right: 10px;
    z-index: 1000;
    transition: opacity 0.3s ease;
    width: 80px;
    height: 80px;
    display: block;
}

.home-button-link.hidden {
    opacity: 0;
    pointer-events: none;
}

.home-button {
    width: 80px;
    cursor: pointer;
    transition: width 0.3s ease;
}

.home-button-link:hover .home-button {
    content: url('images/hoverhomebutton.svg');
}
.hamburger {
    position: fixed;
    top: 25px;
    right: 25px;
    z-index: 1000;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: opacity 0.3s ease;
}

.hamburger.hidden {
    opacity: 0;
    pointer-events: none;
}

.hamburger .line {
    width: 30px;
    height: 3px;
    background-color: black;
    transition: all 0.3s ease;
}

.hamburger:hover .line {
    background-color: #333;
}

/* Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
      background-image: url('images/Untitled-14.svg');
      background-size: 100vw;
      opacity: 50%;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.close-btn {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 50px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: Overused Grotesk, sans-serif;
    color: black;
    line-height: 1;
    padding: 0;
    width: 50px;
    height: 50px;
}

.close-btn:hover {
    color: #333;
}

.menu-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.menu-link {
    font-family: Overused Grotesk, sans-serif;
    font-size: 32pt;
    font-weight: 400;
    text-decoration: none;
    color: black;
    transition: font-size 0.3s ease;
}

.menu-link:hover {
    font-size: 40pt;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

.header-container {
    position: relative;
    width: 1000px;
    margin-top: -20px;
    margin-left: 25px;
}

.header-text{
    font-family: Overused Grotesk;
    font-size: 200pt;
    letter-spacing: -9pt;
    font-weight: 500;
    line-height: 80%;
    margin-left: 25px;
    margin-top: 50px;
}


.body-container{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-left: 75px;
    margin-right: 790px;
    width: 700px;
    margin-top: 50px;
    /* Remove position: absolute; */
}

.subtext{
    font-family: Overused Grotesk;
    font-size: 48pt;
    font-weight: 400;
    line-height: 1.5;
    color: black;
}

.description{
    font-family: Overused Grotesk;
    font-size: 16pt;
    font-weight: 200;
    line-height: 1;
    color: black;
    margin-top: -10px;
}

#span{
    line-height: 1.5;
    text-decoration: underline;
    color: black;
}


.footer-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 100px;
    overflow: hidden;
    min-height: 500px; /* Increased to show more of image */
    width: 100%;
    padding: 40px 0;
}

.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain; /* Changed back to contain to show full image */
    object-position: center;
    z-index: 0;
}

.socials{
    display: flex;
    flex-direction: row;
    gap: 20px;
    position: relative;
    z-index: 1;
    margin: 0;
}

.copyright{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    position: relative;
    z-index: 1;
    margin-left: 0;
    margin-right: 0;
    padding-bottom: 0;
}

.icon{
    width: 50px;
}

.instagram{
    width: 40px;
    margin-top: 5px;
}

#tiktok{
    width: 70px;
    margin-top: -10px;
}

.email{
    width: 55px;
    margin-top: -5px;
}

.copyright-text{
    font-family: Overused Grotesk;
    font-size: 18px;
    letter-spacing: -5%;
    line-height: 1;
    font-weight: 400;
    color: black;
}

.slideshow-container {
    position: absolute;
    max-width: 600px;
    width: 900px;
    height: 600px;
    margin: auto;
    overflow: hidden;
    align-items: center;
    margin-left: 780px;
    margin-top: -700px;
}

.image{
    width: 800px;
    animation: spin 8s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
/* Large Desktop */
        @media (min-width: 1600px) {
            .header-text {
                font-size: 250pt;
                letter-spacing: -12pt;
            }

            .body-container {
                max-width: 850px;
                margin-left: 90px;
            }

            .subtext {
                font-size: 56pt;
            }

            .description {
                font-size: 18pt;
            }

            .slideshow-container {
                width: 1000px;
                height: 700px;
                margin-left: 950px;
                margin-top: -800px;
            }

            .image {
                width: 950px;
            }

            .footer-container {
                margin-top: 150px;
                min-height: 600px;
            }

            .menu-link {
                font-size: 36pt;
            }

            .menu-link:hover {
                font-size: 44pt;
            }
        }

        /* Tablet and Medium Desktop */
        @media (max-width: 1200px) {
            .slideshow-container {
                position: relative;
                width: 90%;
                max-width: 600px;
                height: auto;
                aspect-ratio: 1;
                margin-left: 75px;
                margin-top: 50px;
            }

            .image {
                width: 100%;
            }

            .body-container {
                max-width: calc(100% - 150px);
            }
        }

        /* Tablet */
        @media (max-width: 1024px) {
            .home-button-link {
                width: 60px;
                height: 60px;
                top: 50px;
            }

            .home-button {
                width: 60px;
            }

            .header-container {
                width: 90%;
                margin-left: 20px;
            }

            .header-text {
                font-size: 150pt;
                letter-spacing: -7pt;
                margin-left: 20px;
            }

            .body-container {
                margin-left: 50px;
                margin-right: 50px;
                max-width: calc(100% - 100px);
            }

            .subtext {
                font-size: 40pt;
            }

            .description {
                font-size: 14pt;
            }

            .slideshow-container {
                margin-left: 50px;
                max-width: 500px;
            }

            .footer-container {
                min-height: 400px;
            }

            .menu-link {
                font-size: 28pt;
            }

            .menu-link:hover {
                font-size: 34pt;
            }
        }

        /* Mobile */
        @media (max-width: 768px) {
            .home-button-link {
                width: 60px;
                height: 60px;
                top: 50px;
                right: 13px;
            }

            .home-button {
                width: 60px;
            }

            .hamburger {
                top: 20px;
                right: 20px;
            }

            .hamburger .line {
                width: 25px;
                height: 2px;
            }

            .close-btn {
                top: 20px;
                right: 20px;
                font-size: 40px;
            }

            .header-container {
                width: 90%;
                margin-left: 15px;
            }

            .header-text {
                font-size: 80pt;
                letter-spacing: -4pt;
                margin-left: 15px;
                margin-top: 45px;
            }

            .body-container {
                margin-left: 25px;
                margin-right: 25px;
                max-width: calc(100% - 50px);
                margin-top: 30px;
                gap: 15px;
            }

            .subtext {
                font-size: 28pt;
                margin-bottom: 20px;
                line-height: 1.3;
            }

            .description {
                font-size: 12pt;
                line-height: 1.3;
            }

            .slideshow-container {
                margin-left: 25px;
                margin-top: 30px;
                width: calc(100% - 50px);
                max-width: 600px;
            }

            .footer-container {
                min-height: 350px;
                margin-top: 80px;
                padding: 30px 0;
            }

            .socials {
                gap: 15px;
            }

            .icon {
                width: 40px;
            }

            .instagram {
                width: 32px;
            }

            #tiktok {
                width: 56px;
            }

            .email {
                width: 44px;
            }

            .copyright-text {
                font-size: 14px;
            }

            .menu-link {
                font-size: 24pt;
            }

            .menu-link:hover {
                font-size: 28pt;
            }
        }

        /* Small Mobile */
        @media (max-width: 480px) {
            .home-button-link {
                width: 40px;
                height: 40px;
                top: 30px;
                right: 10px;
            }

            .home-button {
                width: 40px;
            }

            .hamburger {
                top: 15px;
                right: 15px;
                padding: 8px;
            }

            .hamburger .line {
                width: 22px;
            }

            .header-container {
                margin-left: 10px;
            }

            .header-text {
                font-size: 50pt;
                letter-spacing: -2pt;
                margin-left: 10px;
                margin-top: 20px;
            }

            .body-container {
                margin-left: 15px;
                margin-right: 15px;
                max-width: calc(100% - 30px);
                margin-top: 20px;
                gap: 12px;
            }

            .subtext {
                font-size: 22pt;
            }

            .description {
                font-size: 11pt;
            }

            .slideshow-container {
                margin-left: 15px;
                margin-top: 20px;
                width: calc(100% - 30px);
                max-width: 300px;
            }

            .footer-container {
                min-height: 300px;
                margin-top: 60px;
                padding: 20px 0;
            }

            .copyright {
                margin-top: 20px;
            }

            .socials {
                gap: 12px;
            }

            .icon {
                width: 35px;
            }

            .instagram {
                width: 28px;
            }

            #tiktok {
                width: 50px;
            }

            .email {
                width: 38px;
            }

            .copyright-text {
                font-size: 12px;
            }

            .menu-link {
                font-size: 20pt;
            }

            .menu-link:hover {
                font-size: 24pt;
            }
        }