body {
    overflow: hidden;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/img/studio\ anmar.jpg");
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    opacity: 0;
    transition: opacity 5s;
    position: relative;

}

body.loaded {
    opacity: 1;
}


.logo-image {
    width: 15vw;
    transition: all 5s ease-out;
    animation: none;
}

body.loaded .logo-image {
    width: 25vw;
    animation: pulsate 2s ease-out infinite 5s;
}

@keyframes pulsate {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.7;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}


.copyright {
    position: absolute;
    top: 1vh;
    right: 1vw;
    font-size: 12px;
    color: white;
}

button.book-appointment {
    position: absolute;
    top: 2vh;
    left: 1.5vw;
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    border: none;
    border-radius: 10px;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0px 0px 10px 2px rgba(255, 255, 255, 0.5);
    animation: pulsate 2s ease-out infinite;
    transform: scale(1);
    transition: transform 0.2s ease-out;
}

button.book-appointment:hover {
    animation: none;
    transform: scale(1.05);
    background-color: rgba(255, 255, 255, 0.75);
}

@keyframes pulsate {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.025);
    }

    100% {
        transform: scale(1);
    }
}

table.services-table {
    display: none;
    border: 1px solid white;
    border-radius: 0px;

    position: absolute;
    left: -50vw;
    transform: translate(-15%, 45%);
    width: 20vw;
    /* Changed from 20% to 20vw */
    transition: all 0.5s 5s;
    font-size: 18px;
    /* Changed from 16px to 1vw */
    color: rgb(255, 255, 255);
    text-align: left;
    padding: 10px;
    /* Changed from 10px to 1vw */
    margin-bottom: 10vh;
}




body.loaded table.services-table {
    left: 5vw;
    /* Changed from 5% to 5vw */
    opacity: 1;
    top: -25vh;
    /* Changed from -22.5% to -22.5vh */
    box-shadow: 0px 0px 10px 2px rgba(255, 255, 255, 0.5);

}

td {
    width: -20vw;
    font-weight: 100;
}

th[colspan="2"] {
    font-size: 1.25vw;
    font-weight: 900;
    color: rgb(255, 255, 255);
    text-shadow: 1px 1px 10px rgb(255, 255, 255);
}

td:nth-of-type(2) {
    text-align: right;
}

.social-icons {
    position: absolute;
    bottom: 1vh;
    /* Keep this value in % to maintain a consistent distance from the bottom */
    right: -10vw;
    display: flex;
    align-items: center;
    transition: all 0.5s 5s;
}

body.loaded .social-icons {
    right: 1.75vw;
}

.social-icons a {
    display: inline-block;
    width: 3vw;
    height: 6vh;
    margin-left: 0vw;
    text-align: center;

}

.social-icons a.facebook {
    font-size: 1vw;
    color: white;
}

.social-icons a.instagram {
    font-size: 1vw;
    color: white;
}

.social-icons a:hover .fab.fa-facebook-f {
    color: #1877F2;
    font-size: 1.25vw;

}

.social-icons a:hover .fab.fa-instagram {
    background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.25vw;
}


nav {
    position: absolute;
    top: -100vh;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-around;
    padding: 10px 20px;
    background-color: rgba(0, 0, 0, 0.75);
    width: 50vw;
    margin: 0 auto;
    transition: all 0.5s 5s;
    border: 1px solid white;
    /* Add this line for the border */
    box-shadow: 0px 0px 10px 2px rgba(255, 255, 255, 0.5);


}

body.loaded nav {
    top: 2.5vh;
}

nav a.current-page {
    color: white;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav li {
    margin-right: 2.5vw;
}

nav a {
    color: rgb(94, 94, 94);
    text-decoration: none;
    font-size: 1.25vw;
    font-weight: 600;
    position: relative;
    padding: 10px 20px;
}

nav a:hover {
    font-size: 1.35vw;
    /* Adjust the font size as desired */
    color: rgb(230, 230, 230);
    text-shadow: 1px 1px 10px rgba(255, 255, 255, 0.062);
}

nav a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 1.5px;
    background-image: linear-gradient(to left, transparent, rgb(255, 255, 255), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}


nav a:hover::before {
    opacity: 1;

}



.text-shadow {
    text-shadow: 1px 1px 10px rgba(255, 255, 255, 0.5);
    font-weight: 600;
}


.line-separator:after {
    content: "";
    display: block;
    margin-top: 2px;
    border-bottom: 1px solid #ffffff;
    /* You can change the color and thickness of the line */
    width: 100%;
    box-shadow: 0px 0px 10px 2px rgba(255, 255, 255, 0.5);

}

nav a.current-page {}


nav a.current-page::before {

    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 2.5px;
    background-image: linear-gradient(to left, transparent, rgb(255, 255, 255), transparent);
    opacity: 1;
    transition: opacity 0.3s;
}

.footer-link {
    color: inherit;
    text-decoration: none;
}

.footer-link:hover {
    color: inherit;
    text-decoration: underline;
}

.footer-links-wrapper {
    text-align: center;
}

a[href^="mailto"] {
    color: white;
    text-decoration: none;
}


@media screen and (min-device-width: 1200px) and (max-device-width: 1680px) {
    table.services-table {
        border: 1px solid white;
        border-radius: 0px;
        border-left: none;
        position: absolute;
        left: -50vw;
        transform: translate(-15%, 45%);
        width: 20vw;
        /* Changed from 20% to 20vw */
        transition: all 0.5s 5s;
        font-size: 16px;
        /* Changed from 16px to 1vw */
        color: rgb(255, 255, 255);
        text-align: left;
        padding: 10px;
        /* Changed from 10px to 1vw */
    }

    table.services-table:before {
        content: "";
        position: absolute;
        top: -1px;
        left: -110vw;
        width: 120vw;
        border-top: 1px solid white;
        border-bottom: 1px solid white;
        height: calc(100%);
    }


    body.loaded table.services-table {
        left: 5vw;
        /* Changed from 5% to 5vw */
        opacity: 1;
        top: -25vh;
        /* Changed from -22.5% to -22.5vh */
    }

    button.book-appointment {
        position: absolute;
        top: 2vh;
        left: 1.5vw;
        background-color: rgb(255, 255, 255);
        color: rgb(0, 0, 0);
        border: none;
        border-radius: 10px;
        padding: 7.5px 15px;
        font-weight: 600;
        font-size: 13px;
        cursor: pointer;
        box-shadow: 0px 0px 10px 2px rgba(255, 255, 255, 0.5);
        animation: pulsate 2s ease-out infinite;
        transform: scale(1);
        transition: transform 0.2s ease-out;
    }
}

@media screen and (min-device-width: 2200px) and (max-device-width: 3000px) {
    table.services-table {
        border: 1px solid white;
        border-radius: 0px;
        border-left: none;
        position: absolute;
        left: -50vw;
        transform: translate(-15%, 75%);
        width: 20vw;
        /* Changed from 20% to 20vw */
        transition: all 0.5s 5s;
        font-size: 16px;
        /* Changed from 16px to 1vw */
        color: rgb(255, 255, 255);
        text-align: left;
        padding: 10px;
        /* Changed from 10px to 1vw */
    }


}

@media (max-width: 480px) {
    th[colspan="2"] {
        font-size: 5vw;
        font-weight: 900;
        color: rgb(255, 255, 255);
        text-shadow: 1px 1px 10px rgb(255, 255, 255);
    }

    body {
        overflow-x: hidden;
    }

    html,
    body,
    #yourContainer {
        
        width: 100%;
    }

    #yourContainer {
        overflow-y: scroll;
    }
}

.burger-menu {
    display: none;
    font-size: 24px;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 10px;
    margin: 10px;
    color: white;
    margin-left: -150%;
    margin-top: 25%;
}


.show-menu {
    display: block;
}