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 1s;
    position: relative;
    
}

body.loaded {
    opacity: 1;
}




.copyright {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 12px;
    color: white;
}

button.book-appointment {
    position: absolute;
    top: 22.5px;
    left: 15px;
    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 {
    border: 1px solid white;
    border-radius: 0px;
    border-left: none;
    position: absolute;
    left: -100%;
    transform: translate(-15%, 50%);
    width: 20%;
    transition: all 0.5s 5s;
    font-size: 16px;
    color: rgb(255, 255, 255);
    text-align: left;

    padding: 10px;
}

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: 5%;
    opacity: 1;
    top: -22.5%;
}

td {
    width: -20%;
    font-weight: 100;
}

th[colspan="2"] {
    font-size: 20px;
    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: 10px;
    right: -100px;
    display: flex;
    align-items: center;
    transition: all 0.5s 0.25s;
}

body.loaded .social-icons {
    right: 2.5%;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-left: 10px;
    text-align: center;
}

.social-icons a.facebook {
    font-size: 20px;
    color: white;
}

.social-icons a.instagram {
    font-size: 20px;
    color: white;
}

.social-icons a:hover .fab.fa-facebook-f {
    color: #1877F2;
    font-size: 25px;
}

.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: 25px;
}

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 0s;
    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; 
}



.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%;
}
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;
}
@media screen and (min-device-width: 1200px) and (max-device-width: 1680px) {
    
    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;
    }
}


