body {
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-attachment: fixed;
    font-family: "Unbounded", sans-serif;
    font-weight: bold;
    overflow: auto;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.unbounded {
    font-family: "Unbounded", sans-serif;
    font-weight: 400;
    font-style: normal;
  }

 header {
    background-color: #333;
    color: white;
    padding: 20px;
    text-align: center;
}

.notice {
    padding: 20px;
    color: #ffffff;
    text-align: center;
}

.textindex {
    padding: 20px 30px;
    color: #ffffff;
    text-align: center;
}

.textservices {
    padding: 20px 30px;
    font-weight: lighter;
    color: #ffffff;
    text-align: center;
}

.textabout {
    padding: 20px 30px;
    color: #ffffff;
    font-weight: bold;
    text-align: center;
    border-radius: 15px;
}

.contacts {
    padding: 20px 30px;
    color: #ffffff;
    font-weight: lighter;
    text-align: center;
}

.services {
    padding: 20px 30px;
    color: #ffffff;
    font-weight: lighter;
    text-align: center;
    background: rgba(36,188,196, 0.274); 
    border-radius: 15px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
}

.account {
    padding: 20px 30px;
    color: #ffffff;
    font-weight: lighter;
    text-align: center;
    background: rgba(36,188,196, 0.274); 
    border-radius: 15px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
}

.textaccount {
    padding: 20px 30px;
    color: #ffffff;
    font-weight: lighter;
    text-align: center;
}

.status {
    margin: auto;
    text-align: center;
    font-size: 18px;
    color: #333;
}

footer {
    background-color: #333;
    color: white;
    padding: 20px;
    text-align: center;
}
footer a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    font-size: 16px;
}
footer a:hover {
    text-decoration: underline;
}
.social-links {
    margin-bottom: 15px;
}

.social-links img {
    width: 25px; 
    height: 25px;
    margin: 0 0 0 0px;
    margin-bottom: -5px;
}

.company-info {
    margin-bottom: 10px;
}
.footer-links {
    margin-top: 10px;
}

#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, #967474, #3f3f3f, #3f3f3f);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeOut 1s ease forwards;
    animation-delay: 0s;
}

#loader:after {
    content: "";
    width: 50px;
    height: 50px;
    border: 5px solid white;
    border-top: 5px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

#content.hidden {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

#content.show {
    opacity: 1;
    transform: translateY(0);
    overflow: auto; 
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

.animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #242424;
    background-size: 300% 300%;
    animation: gradient-animation 8s ease infinite;
    z-index: -1;
}

.slideshow-container {
            position: center;
            width: 100%;
            max-width: 900px;
            margin: auto;
            overflow: hidden;
        }

        .mySlides {
            display: fixed;
        }

        .fade {
            animation-name: fade;
            animation-duration: 1.5s;
        }

        .slides {
            display: none;
        }

        .slide {
            width: 100%;
            height: 500px;
            background-size: cover;
            background-position: center;
        }

        .slideshow-container:hover .buttons {
            opacity: 1;
        }

        .buttons {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            opacity: 0;
            transition: opacity 0.3s;
            display: flex;
            gap: 10px;
        }

        .button {
            padding: 10px;
            background-color: rgba(0, 0, 0, 0.6);
            color: white;
            border: none;
            border-radius: 5px;
            font-size: 16px;
        }

        .button:hover {
            background-color: rgba(0, 0, 0, 0.8);
        }

        .prev, .next {
            background-color: rgba(0, 0, 0, 0.6);
        }

        .prev:hover, .next:hover {
            background-color: rgba(0, 0, 0, 0.8);
        }

        .navigation-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
        }

        @keyframes fade {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

button {
    display: inline-block;
    padding: 15px 30px;
    margin-top: 20px;
    background-color: #ffffff;
    color: #000000;
    border: none;
    border-radius: 30px;
    font-family: "Unbounded", sans-serif;
    font-size: 1rem;
    font-weight: bold;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease-in-out;
}

button:hover {
    background-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.5);
}

a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

#map {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
    margin: 20px 0;
    height: auto; 
    border: 5px solid #333; 
    border-radius: 10px; 
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); 
    max-width: 100%; 
}

.main-navigation {
    text-align: center;
    margin-top: 20px;
}

.main-navigation a {
    text-decoration: none;
    color: #ffffff; 
    padding: 10px 20px;
    margin: 5px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: bold;
    display: inline-block; 
    transition: all 0.3s ease;
}

.main-navigation a:hover {
    transform: translateY(-3px); 
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.5);
}

.image-container {
    position: relative;
    width: auto;
    margin: auto;
}

.image-container img {
    width: 100%;
    display: block;
}

.plan-container {
    position: relative;
    width: 700px;
    margin: 20px auto;
}

.image-container {
    width: 100%;
    display: block;
}

.rect {
    position: absolute;
    background: rgba(255, 0, 0, 0.6);
    border: 1px solid red;
}

.rectorangerental {
    position: absolute;
    background: rgba(255, 166, 0, 0.6);
    border: 1px solid orange;
}

.rectfree {
    position: absolute;
    background: rgba(0, 128, 0, 0.6);
    border: 1px solid green;
}

.rectfree:hover {
    background: rgba(0, 128, 0, 0.8);
}

.rectorangerental:hover {
    background: rgba(255, 166, 0, 0.8)
}

.rect:hover {
    background: rgba(255, 0, 0, 0.8);
}

.room-text {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 12px;
    transform: translate(-50%, -50%);
    color: #fff;
    font-weight: bold;
    pointer-events: none;
}

.rect1 { top: 63px; left: 345px; width: 163px; height: 115px; }
.rect2 { top: 192px; left: 374px; width: 100px; height: 112px; }
.rect3 { top: 445px; left: 276px; width: 279px; height: 210px; }
.rect4 { top: 320px; left: 162px; width: 122px; height: 112px; }
.rect5 { top: 498px; left: 163px; width: 108px; height: 78px; }
.rect6 { top: 580px; left: 163px; width: 108px; height: 74px; }