* {
    margin: 0;
}

@keyframes fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 100%;
    }
}


h2 {
    color: royalblue;
    font-family: "Lobster", sans-serif;
}
body {
    scroll-behavior: smooth;
    font-family: "TikTok Sans", sans-serif;
    animation:  fade-in 1s ease-in-out both;
}

.navbar {
    animation: none;
    z-index: 999;
    top: 0;
    position: sticky;
    display: flex;
    flex: 1;
    padding: 12px;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgb(1, 1, 1, 0.1);
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
}

.navbar .left {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    color: royalblue;
    font-family: "Lobster", sans-serif;
    font-size: clamp(0.7rem, 1vw, 10rem);
    gap: 20px;
}

.navbar .left .logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.navbar .left .logo p {
    color: #1e1e2f;
    font-style: italic;
    font-family: "TikTok Sans", sans-serif;
    font-size: clamp(0.5rem, 0.8vw, 10rem);

}

.navbar .left i {
    display: none;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    font-size: clamp(1rem, 1.5vw, 10rem);

}

.navbar .center {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.navbar .center a:hover {
    color: #1e1e2f65;
    transform: scale(0.98);
}

.navbar .center a {
    color: #1e1e2f;
    text-decoration: none;
    font-family: "TikTok Sans", sans-serif;
    font-size: clamp(0.7rem, 1vw, 10rem);
    transition: ease-in-out color 0.5s, ease-in-out 0.5s transform;
}


.navbar .center a.active {
    text-underline-offset: 4px;
    text-decoration: underline;
    text-decoration-color: royalblue;
    text-decoration-thickness: 3px;
    align-items: center;
    justify-content: center;
}


.navbar .right {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    color: #1e1e2f;
    font-size: clamp(1rem, 1.5vw, 10rem);
    gap: 10px;
}

.navbar .right i {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: ease-in-out color 0.5s, ease-in-out 0.5s transform;

}

.navbar .right i:hover {
    color: #1e1e2f65;
    transform: scale(0.98);
}

.mobile-pages {
    display: none;
    z-index: 999;
    position: sticky;
    top: 0;
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    font-size: clamp(0.9rem, 3vw, 10rem);
    background-color: transparent;
    max-width: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);

}


@keyframes move-into {
    from {
        transform: translateY(-250px);
    }

    to {
        transform: translateY(0);
    }
}


.mobile-pages.on {
    display: flex;
    animation: move-into 0.7s ease-in-out both;
}

.mobile-pages a {
    /* background-color: white; */
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgb(1, 1, 1, 0.1);
    padding: 8px;
    color: #1e1e2f;
    text-decoration: none;
    width: 100%;
}


.top-content {
    display: flex;
    flex: 1;
    height: 100vh;
    max-height: 100vh;
    background-color: rgb(1, 1, 1, 0.33);
    background-image: url(/static/rotation-events\ website\ 7-2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-blend-mode:saturation;
    flex-wrap: wrap;
    padding-inline: 5% 1%;
    transition: transform ease-in-out 0.8s;
}

.top-content .left {
    display: flex;
    flex: 1.5;
    align-items: flex-start;
    justify-content: center;
    font-size: clamp(1.2rem, 2.5vw, 10rem);
    flex-direction: column;

}

.top-content .left h1 {
    color: transparent;
    background-color: rgba(255, 255, 255, 0.8);
    filter: blur(0.5px);
    background-clip: text;
    font-weight: 900;
}

.top-content .left p {
    color: transparent;
    background-color: rgba(255, 255, 255, 0.8);
    filter: blur(0.5px);
    background-clip: text;
    font-weight: 600;
    font-size: clamp(0.9rem, 2vw, 10rem);
}

.top-content .right {
    display: flex;
    flex-direction: column;
    flex: 1;
    align-items: center;
    justify-content: flex-start;
}


.top-content .left .buttons {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.top-content .left .buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: transparent;
    background-color: rgba(255, 255, 255, 0.8);
    filter: blur(0.5px);
    background-clip: text;
    font-weight: 700;
    font-size: clamp(0.9rem, 1.2vw, 10rem);
    border: 2.5px solid rgba(255, 255, 255, 0.7);
    padding: 8px;
    gap: 4px;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color ease-in-out 0.5s, color ease-in-out 0.5s, border-color ease-in-out 0.5s, background-clip ease-in-out 0.5s, transform ease-in-out 0.5s;
}

.top-content .left .buttons a:hover {
    background-color: rgb(255, 255, 255, 0.3);
    border-color: rgb(255, 255, 255, 0.3);
    transform: scale(0.98);
}

.top-content .left .buttons a i {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    justify-content: center;
    margin-top: 2px;
}


.middle-content {
    display: flex;
    flex: 1;
    padding: 5%;
    /* background-color: rgba(250, 250, 250); */
    min-height: 65vh;
    flex-wrap: wrap;
    font-size: clamp(1.2rem, 2.5vw, 10rem);
    gap: 15px;
    border-bottom: 1px solid rgb(1, 1, 1, 0.1);
}

.middle-content .left {
    display: flex;
    flex: 1.2;
    text-align: center;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #1e1e2f;
    gap: 3px;
    padding: 2%;
}

.middle-content .left p {
    font-size: clamp(0.9rem, 1.5vw, 10rem);
}


.middle-content .right {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
}

.middle-content .right img {
    max-width: 100%;
    aspect-ratio: 1.36/1;
    min-width: 300px;
    border-radius: 10px;
    object-fit:cover;
    border: 1px solid rgb(1, 1, 1, 0.1);
}

 #balloons {
    z-index: -1;
    position: fixed;
    width: 100vw;
    height: 100vh;
    align-items: center;
    justify-content: center;
    object-fit: cover;
    filter: opacity(7%) blur(5px);

}

.portfolio {
    display: flex;
    flex: 1;
    /* background-color: rgba(250, 250, 250, 1); */
    padding: 5%;
    flex-direction: column;
    font-size: clamp(1.2rem, 2.5vw, 10rem);
    align-items: center;
    justify-content: center;
    color: #1e1e2f;
    gap: 25px;
    /* background-color: rgba(252, 252, 252); */
    border-bottom: 1px solid rgb(1, 1, 1, 0.1);

}

.portfolio .top {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 3px;
    align-items: center;
    justify-content: center;
}

.portfolio .top p {
    font-size: clamp(0.9rem, 1.5vw, 10rem);
}

.portfolio .photos{
    display: flex;
    flex-wrap: wrap;
    flex: 1;
    align-items: center;
    justify-content: center;
    gap: 18px;

}

/* @keyframes scale-loadin {
    from {
        transform: scale(0.95);
        opacity: 50%;
    }
    to {
        transform: scale(1);
        opacity: 100%;
    }
} */

.portfolio .photos img.active {
    display: flex;
    animation: scale-loadin 0.8s ease-in-out both;
}

.portfolio .photos img {
    display: none;
    max-width: 300px;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 8px;
    border: 1px rgb(1, 1, 1, 0.1) solid;
    
}

.portfolio a:hover {
    opacity: 40%;
    transform: scale(0.98);
}

.portfolio a {
    cursor: pointer;
    font-size: clamp(0.9rem, 1.3vw, 10rem);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: royalblue;
    text-decoration-thickness: 3px;
    transition: opacity ease-in-out 0.4s, transform ease-in-out 0.4s;
}

.locations {
    display: flex;
    flex: 1;
    padding: 5%;
    flex-wrap: wrap;
}

.locations .left {
    display: flex;
    flex: 1;
    flex-direction: column;
    font-size: clamp(1.2rem, 2.5vw, 10rem);
    align-items: center;
    justify-self: center;
    text-align: center;
    color: #1e1e2f;
}

.locations .left p {
    font-size: clamp(0.9rem, 1.5vw, 10rem);
}

#propane {
    font-size: clamp(1.3rem, 2vw, 10rem);
}

.locations .left .loc-left .columns {
    display: flex;
    flex: 1;
    align-items: flex-start;
    justify-content: center;
    padding: 10px;
}

.locations .left .loc-left .columns .sec {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


.locations .right {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.locations .right iframe {
    display: flex;
    flex: 1;
    width: 90%;
    aspect-ratio: 1/0.8;
    min-width: 300px;
    border-radius: 8px;
    border: 1px rgb(1, 1, 1, 0.1) solid;

}


footer {
    display: flex;
    flex: 1;
    background-color: white;
    color: rgba(1, 1, 1, 0.5);
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    border-top: rgb(1, 1, 1, 0.1) solid 1px;
}

footer .right a {
    color: rgba(1, 1, 1, 0.5);
    text-decoration: none;
    font-weight: 700;
    font-size: clamp(0.4rem, 1vw, 10rem);

}

footer .logo{
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(1, 1, 1, 0.5);
    padding: 20px;
}

footer .right {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    font-size: clamp(0.4rem, 1vw, 10rem);
}

footer .logo h2 {
    font-weight: 700;
    font-size: clamp(0.5rem, 1vw, 10rem);

}




@media (max-width: 800px) {
    .navbar .center {
        display: none;
    }
    .navbar .left i {
        display: flex;
    }
    .navbar .right {
        flex: 0.5;
        align-items: flex-end;
        justify-content: flex-end;
    }

    .portfolio .photos img {
            min-width: 150px;
            max-width: 150px;
    }

}