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

    to {
        opacity: 100%;
    }
}

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

h2 {
    color: royalblue;
    font-family: "Lobster", sans-serif;
}

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

}

.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%;
}








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);

}

/* START BELOW HERE */

.policies {
    display: flex;
    padding: 5%;
    font-size: clamp(1.2rem, 2.5vw, 10rem);
    color: #1e1e2f;
    min-height: 100vh;
    flex-direction: column;
    gap: 10px;
}

.policies .top {
    display: flex;
    flex: 2;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 2%;
    padding-top: 0;
    flex-direction: column;
    text-align: center;

}

.policies .bottom {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 15px;
    border: 1px solid rgb(1, 1, 1, 0.1);
    background-color: rgba(250, 250, 250, 1);
    border-radius: 20px;
}

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

.policies .sec  {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 15px;
    font-size: clamp(1.2rem, 1.8vw, 10rem);
}

/* DON'T DELETE BELOW */


@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: 125px;
    }


    .inventory-contain .rentals {
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 0px;
    }
}