html {
    overflow: hidden;
    margin: 0;
    padding: 0;
}

body {
    overflow-y: scroll;
    scrollbar-width: none;
    height: 100vh;
    margin: 0;
    padding: 0;
    background-color: beige;
}

body::-webkit-scrollbar {
    display: none;
}
.title h2 {
    color: white;
    margin: 70px;
}

.banner {
    width: 100%;
    height: 500px;
    position: relative;
    background-image: url('amebg.png');
    background-size: cover;
    background-position: center center;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: inherit;
    background-size: cover;
    background-position: center center;
    z-index: 1;
}

.banner h2 {
    position: relative;
    z-index: 2;
    font-size: 80px;
    font-family: "Georgia";
    text-transform: uppercase;
    color: rgb(249, 245, 245);
    letter-spacing: 15px;
}

.navbar {
    width: 100%;
    height: 6rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    padding: 0 20px;
    z-index: 3;
    opacity: 1;
    background-color: rgb(238, 238, 211);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.navbar.visible {
    opacity: 1;
    transform: translateY(0);
}

.navbar:not(.visible) {
    transform: translateY(-100%);
}
.navbar .title h2 {
    color: black;
    margin-right: auto;
    font-size: 40px;
    font-family: "Corinthia", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    letter-spacing: 4px;
}

.nav-links {
    display: flex;
    justify-content: center;
    flex-grow: 1;
    margin-left: -13rem;
    align-items: center;
}

.nav-links a {
    padding: 15px 30px;
    color: black;
    text-decoration: none;
    font-size: 20px;
    height: auto;
    margin: 0 10px;
    position: relative;
    line-height: 20px; 
    font-family: "Gelasio", serif;
}

.nav-links a:after {
    content: '';
    position: absolute;
    bottom: 5px; 
    left: 0;
    width: 0;
    height: 3px;
    background-color: burlywood;
    transition: 0.3s;
    transform: translateY(50%); 
}

.nav-links a:hover:after {
    width: 100%;
}

.nav-links a:hover {
    color: darkgoldenrod;
}
.register a {
    padding: 12px 30px;
    color: black;
    text-decoration: none; 
    font-size: 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    margin-left: -15rem;
    position: relative; 
    font-family: "Gelasio", serif;
}

.register a::after {
    content: none; 
}

.register a:hover {
    background-color: darkgoldenrod;
    text-decoration: none; 
}

.register a:focus {
    outline: none;
}
.fade-in-on-load {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInLoad 1.5s ease forwards;
}

@keyframes fadeInLoad {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}
.hotel-facilities-section {
    padding: 40px;
    text-align: center;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
    gap: 20px;
    margin-top: 30px;
}

.facility-item {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 16px;
    color: #333;
}

.facility-item i {
    font-size: 24px;
    margin-bottom: 10px;
    color: #555;
}

.facility-item p {
    margin: 0;
}
#slideshow-section {
    padding: 90px;
    text-align: center;
}

.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
}

@-webkit-keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}

@keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}
.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
}

@-webkit-keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}

@keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}

.swiper-container {
    overflow: hidden;
    width: calc(3 * (100vw / 3));
    margin: 30px auto 0;
}

.swiper-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: fit-content;
}

.swiper-slide {
    width: calc(100vw / 3);
    margin-right: 20px;
    padding: 10px;
    height: 300px;
}
.swiper-slide:last-child {
    margin-right: 0;
}
.swiper-slide img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}
#vertical-image-section {
    padding: 130px;  
    text-align: center;
    font-family: "Playfair Display";
    font-size: 2rem;
}

.vertical-image-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 30px;
    gap: 10px; 
}

.vertical-image-item {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: 400px;  
    margin: 0;
}
.vertical-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; 
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vertical-image-item:hover .image-overlay {
    opacity: 1;
}

.image-text {
    position: absolute;
    bottom: -30px;
    left: 20px;
    font-size: 50px;
    color: white;
    opacity: 0;
    transition: bottom 0.3s ease, opacity 0.3s ease;
}

.vertical-image-item:hover .image-text {
    bottom: 20px;
    opacity: 1;
}
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
.fade-in-on-load {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInLoad 1.5s ease forwards;
}

@keyframes fadeInLoad {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.hotel-facilities-section h2 {
    font-family: "Playfair Display";
    font-size: 4rem;
}
h2 {
    font-family: "Playfair Display";
    font-size: 3rem;
    text-align: center;
  }
  

