/*Animations*/
.fadeinleft {
    opacity:0;
    transform: translateX(200px);
    transition: all 1.3s ease-out;
}

.fadeinright{
    opacity: 0;
    transform: translateX(-200px);
    transition: all 0.8s ease-out;
}

.fadeindown{
    opacity: 0;
    transform: translateY(-100px);
    transition: all 1.2s ease-out;
}

.fade-in{
    opacity:0;
    transition: all 1.3s ease-in;
}

.active-left,.active,.active-right,.active-down{
    opacity:1;
    transform: translateX(0);
    transform: translateY(0);
}



.fadein{
opacity: 0;
}   



/* End Animations*/




body {
    font-family: "Marcellus", serif; /* Primary font for the body */
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f8fafc; /* Light gray background */
}

/* Ensure smooth opacity transition for carousel images */
.carousel-image {
    transition: opacity 1s ease-in-out;
}

/* Top Bar Styling */
#top-bar {
    height: 40px; /* Fixed height for the top bar */
    overflow: hidden; /* Hide overflow during height transition */
    transition: all 0.3s ease-in-out; /* Smooth transition for height, opacity, and background */
    display: flex; /* Use flexbox for layout */
    align-items: center; /* Vertically center content */
    justify-content: space-between; /* Distribute items to edges */
    padding: 0 1rem; /* Horizontal padding */
}

/* Navbar Styling */
#navbar {
    padding-top: 1.5rem; /* Increased padding-y for taller navbar */
    padding-bottom: 1.5rem; /* Increased padding-y for taller navbar */
    transition: all 0.3s ease-in-out; /* Smooth transition for background, padding, and top position */
    height: auto; /* Allow height to adjust based on padding */
}

/* Specific styling for the top bar to handle transparency and hiding */
.top-bar-transparent {
    background-color: transparent;
    opacity: 1;
    visibility: visible;
    height: 40px;
}

.top-bar-hidden {
    background-color: #162137; /* Blue-900 (solid when hidden for seamless transition behind navbar if visible) */
    opacity: 0;
    visibility: hidden;
    height: 0;
    padding-top: 0;
    padding-bottom: 0;
}

/* Specific styling for the navbar to handle transparency and background change */
.navbar-transparent {
    background-color: transparent;
}

.navbar-solid {
    background-color: #162137; /* Blue-700 */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Ensure the hero section takes full height and positions content correctly */
.hero-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex; /* Use flexbox to center content */
    align-items: center; /* Vertically center */
    justify-content: center; /* Horizontally center */
    text-align: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

/* Sidebar Styling */
.sidebar {
    position: fixed;
    top: 0;
    left: -280px; /* Hidden by default, adjust width as needed */
    width: 280px; /* Width of the sidebar */
    height: 100%;
    background-color: #162137; /* Blue-700 */
    color: white;
    z-index: 100; /* Higher than navbar */
    transition: left 0.3s ease-in-out;
    padding-top: 6rem; /* Space for the logo/header */
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
}

.sidebar.open {
    left: 0;
}

.sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1; /* Allows the list to take available space */
}

.sidebar ul li a {
    display: block;
    padding: 1rem 1.5rem;
    text-decoration: none;
    color: white;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.2s ease;
}

.sidebar ul li a:hover {
    background-color: #273d6a; /* A slightly lighter blue on hover */
}

.sidebar-contact-info {
    padding: 1.5rem;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

/* Hamburger Icon */
.hamburger {
    display: none; /* Hidden by default, shown on small screens */
    cursor: pointer;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    z-index: 60; /* Higher than navbar links */
    padding: 5px;
}

.hamburger .bar {
    width: 100%;
    height: 3px;
    background-color: white;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}

/* Underline effect for nav links */
.nav-link, .sidebar-link {
    position: relative;
    padding-bottom: 5px; /* Space for the underline */
    white-space: nowrap; /* Prevent text wrapping */
}

.nav-link::after, .sidebar-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    transition: width 0.3s ease-in-out;
}

.nav-link:hover::after,
.nav-link.active::after { /* Active class for current page */
    width: 100%;
}

.sidebar-link:hover::after,
.sidebar-link.active::after {
    width: calc(100% - 3rem); /* Adjust for sidebar padding (1.5rem padding on each side) */
}

/* Sidebar Close Button */
.sidebar-close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 101; /* Above sidebar content */
    padding: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    /* Hide top bar on mobile screens */
    #top-bar {
        display: none;
    }

    .navbar .desktop-nav-links {
        display: none; /* Hide desktop navigation links on small screens */
    }
    .hamburger {
        display: flex; /* Show hamburger icon on small screens */
    }
    #navbar .container {
        /* Use grid to control mobile layout: hamburger-logo-spacer/book-now */
        display: grid;
        grid-template-columns: auto 1fr auto; /* Hamburger | Logo (flex-grow) | Book Now (or empty space) */
        align-items: center;
        gap: 1rem;
    }
    #navbar .container > a.rounded-md { /* Target the logo link */
        grid-column: 2; /* Place logo in the center column */
        justify-self: center; /* Center the logo within its grid column */
    }
    #navbar .container > .hamburger { /* Target the hamburger */
        grid-column: 1; /* Place hamburger in the first column */
        justify-self: start; /* Align hamburger to the start */
    }
    #navbar .container > div.flex.items-center.space-x-4 { /* Target Book Now button & Hamburger container */
        grid-column: 3; /* Place this container in the third column */
        justify-self: end; /* Align to the end */
    }
    .navbar-logo-img {
        height: 32px; /* Smaller logo on mobile */
        align-items: center;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .navbar-book-button {
        display: none; /* Hide book now button on mobile, sidebar can handle it */
    }
}
















.room-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    margin-bottom: 40px;
    height: 600px;

}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.room-card-inner {
    display: flex;
    flex-direction: row;
    height: 100%;
}

.room-carousel {
    position: relative;
    flex: 1;
    min-width: 40%;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    height: 100%;
}

.room-image {
    position: relative;
    overflow: hidden;
    flex: 1;
    display: flex;
    align-items: stretch;
    height: 100%;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: 20px;
}

.room-card:hover .room-image img {
    transform: scale(1.1);
}

.carousel-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.carousel-navigation.left {
    left: 20px;
}

.carousel-navigation.right {
    right: 20px;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    color: #162137;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.carousel-btn:hover {
    background: white;
    transform: scale(1.1);
}

.room-content {
    padding: 30px;
    flex: 1.5;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    overflow-y: auto;
}

.room-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.room-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #162137;
    margin: 0;
}

.room-number {
    background: linear-gradient(135deg,#162137, #162137);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

.room-description {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.feature-tag {
    background: #162137;
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
}

.image-counter {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    z-index: 5;
}

@media (max-width: 992px) {
    .room-card {
        height: auto;
    }

    .room-card-inner {
        flex-direction: column;
    }

    .room-carousel {
        height: 400px;
    }

    .room-content {
        padding: 20px;
        height: auto;
    }
}

@media (max-width: 768px) {
    .room-content {

    }

    .room-header {
        flex-direction: column;
        gap: 15px;
    }
}



.room-amenities {
    margin-bottom: 25px;
}

.amenities-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #162137;
    margin-bottom: 15px;
}

.amenities-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
}

.amenity-item i {
    color: #162137;
    width: 20px;
}


/* Book Now Button Styles */
.book-now-btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg,#162137, #162137); /* Main gradient */
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
    box-shadow: 0 4px 15px rgba(197, 168, 128, 0.2); /* soft glow */
    margin-bottom: 10px;
}

.book-now-btn:hover {
    background: linear-gradient(135deg, #142037); /* Darker gradient */
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(197, 168, 128, 0.3);
    text-decoration: none;
}

@media only screen and (max-width: 689px) {
    .navbar-2{
        background-color: rgb(20, 20, 20)!important;
        padding: 15px 0;
    }
}

.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.2s;
}
.gallery-img:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}






.marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: transparent;
    height: 8vw; /* Responsive height, adjust as needed */
    min-height: 60px; /* Prevent too small on mobile */
    max-height: 160px; /* Prevent too large on big screens */
    display: flex;
    align-items: center;
}

.marquee .track {
    width: 100%;
    height: 100%;
    white-space: nowrap;
    overflow: hidden;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

.marquee .content {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 80s linear infinite; /* Slower animation */
    font-size: calc(0.8 * var(--marquee-height, 8vw));
    font-size: 7vw;
    line-height: 1;
    color: #16243c;
    font-weight: bold;
    letter-spacing: 2px;
    height: 100%;
    display: flex;
    align-items: center;
    text-shadow:
      0 0 8px #fff,
      0 0 16px #fff,
      0 0 32px #fff,
      0 0 2px #16243c;
    filter: blur(0.5px) brightness(1.1);
}

@keyframes marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}




.Slogan .bg {
    background: url('../img/blue-wave3.jpg') rgba(0, 0, 0, 0.582);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: multiply;
    height: 500px;

    /* These make it a flex container */
    display: flex;
    align-items: center;     /* Vertical center */
    justify-content: center; /* Horizontal center */
}



.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.7);
    border: none;
    font-size: 2em;
    padding: 0 15px;
    cursor: pointer;
}

.owl-carousel .owl-nav button.owl-prev {
    left: 0;
}

.owl-carousel .owl-nav button.owl-next {
    right: 0;
}



.gallery-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 4px 16px rgba(39,61,106,0.10);
    transition: transform 0.4s cubic-bezier(.4,2,.3,1), box-shadow 0.3s, filter 0.3s;
    opacity: 0;
    animation: fadeInGallery 1s forwards;
}
.gallery-img-link:hover .gallery-img {
    transform: scale(1.07) rotate(-2deg);
    box-shadow: 0 8px 32px rgba(39,61,106,0.18);
    filter: brightness(1.08) saturate(1.1);
    z-index: 2;
}
@keyframes fadeInGallery {
    from { opacity: 0; transform: translateY(30px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
.view-gallery-btn {
    font-size: 1.25rem;
    letter-spacing: 0.05em;
    transition: background 0.3s, transform 0.2s, box-shadow 0.2s;
}
.view-gallery-btn:hover {
    background: #1e293b;
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 8px 32px rgba(30,41,59,0.18);
}

.Rooms-head {
  position: relative;
  min-height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
    background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)), url('../img/blue-wave1.jpg') center center/cover no-repeat;
  color: #fff;
  text-align: center;
  margin-bottom: 0;
}

.Rooms-head .container {
  position: relative;
  z-index: 2;
}



.Rooms-head h1 {
  color: #fff;
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 2px;
  margin: 0;
  z-index: 2;
  position: relative;
}


.About-head {
    position: relative;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)), url('../img/blue-wave3.jpg') center center/cover no-repeat;
    color: #fff;
    text-align: center;
    margin-bottom: 0;
  }
  
  .About-head .container {
    position: relative;
    z-index: 2;
  }
  
  
  
  .About-head h1 {
    color: #fff;
    font-size: 3rem;
    font-weight: bold;
    letter-spacing: 2px;
    margin: 0;
    z-index: 2;
    position: relative;
  }




.gallery-head {
    position: relative;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)), url('../img/blue-wave19.jpg') center center/cover no-repeat;
    color: #fff;
    text-align: center;
    margin-bottom: 0;
}

.gallery-head .container {
    position: relative;
    z-index: 2;
}




.gallery-head h1 {
    color: #fff;
    font-size: 3rem;
    font-weight: bold;
    letter-spacing: 2px;
    margin: 0;
    z-index: 2;
    position: relative;
}




.contact-head .container {
    position: relative;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)), url('../img/blue-wave10.jpg') center center/cover no-repeat;
    color: #fff;
    text-align: center;
    margin-bottom: 0;
}

.contact-head .container {
    position: relative;
    z-index: 2;
}



.contact-head h1 {
    color: #fff;
    font-size: 3rem;
    font-weight: bold;
    letter-spacing: 2px;
    margin: 0;
    z-index: 2;
    position: relative;
}





.about-two {
    padding: 70px 0px;
    position: relative;

    z-index: 1;
}
@media (max-width: 991px) {
    .about-two {
        padding: 100px 0px;
    }
}
@media (max-width: 767px) {
    .about-two {
        padding: 80px 0px;
    }
}
.about-two__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    mix-blend-mode: overlay;
    z-index: -1;
}
.about-two__thumb {
    position: relative;
    z-index: 1;
}
.about-two__thumb__item {
    position: relative;
    z-index: 1;
    margin-right: 100px;
    margin-left: 30px;
}
@media (max-width: 1199px) {
    .about-two__thumb__item {
        margin-right: 30px;
        margin-left: 30px;
    }
}
.about-two__thumb__item img {
    object-fit: cover;
    width: 100%;
}
.about-two__thumb__item::after {
    content: "";
    position: absolute;
    top: 30px;
    left: 30px;
    right: 30px;
    bottom: 30px;
    background: transparent;
    border: 1px solid var(--solinom-base, #162137);
}
.about-two__thumb__item::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--solinom-base, #162137);
    transform: rotate(-10.21deg);
    z-index: -1;
    transition: all 0.5s ease-in-out;
}
.about-two__thumb__item:hover::before {
    transform: rotate(0deg);
}
.about-two__thumb__small {
    position: absolute;
    bottom: 0;
    left: -100px;
    z-index: 1;
    animation: top-bottom-two 4s ease-in-out infinite;
}
.about-two__thumb__small img {
    width: 243px;
    height: 243px;
    border-radius: 50%;
    border: 8px solid var(--solinom-gray2, #162137);
}
.about-two .sec-title {
    padding-bottom: 15px;
    font-family: "Marcellus", serif;
    font-weight: 700;
}
.about-two .sec-title .sec-title__title {
    font-weight: 500;
    line-height: 120%;
}
.about-two__top__text {
    font-weight: 500;
    font-size: 18px;
    line-height: 166%;
    max-width: 490px;
    width: 100%;
    margin-bottom: 30px;
    text-align: justify;
    font-family: "Forum", serif;
}
.about-two__feature {
    margin-bottom: 40px;
}
.about-two__feature__item {
    position: relative;
    padding: 40px 30px;
    z-index: 1;
    overflow: hidden;
}
.about-two__feature__item::after {
    content: "";
    width: 100%;
    height: 90px;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #24242494;
    z-index: -1;
}
.about-two__feature__item:hover .about-two__feature__icon {
    animation: shake 0.3s linear 2;
    background-color: var(--solinom-base, #ccb487);
    color: var(--solinom-white, #fff);
}
.about-two__feature__item:hover .about-two__feature__bg {
    transform: scale(1.1);
}
.about-two__feature__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    z-index: -2;
    transform: scale(1);
    transition: all 0.4s ease-in-out;
}
.about-two__feature__icon {
    margin-top: 25px;
    width: 60px;
    border-radius: 50%;
    background-color: var(--solinom-text, #162137);
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--solinom-base, #162137;
    font-size: 30px;
    transition: all 0.4s ease-in-out;
}
.about-two__feature__title {
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 350%;
    color: var(--solinom-white, #fff);
    text-transform: capitalize;
    margin-top: -6px;
    margin-bottom: -15px;
    padding-bottom: 0;
}
.about-two__feature__title a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}
.about-two__feature__title a:hover {
    background-size: 100% 1px;
}
.about-two__feature__text {
    font-weight: 500;
    font-size: 16px;
    line-height: 188%;
    margin-bottom: -10px;
    padding-bottom: 0;
    color: white;
}
.about-two .solinom-btn {
    padding: 11px 40px;
    border: 1px solid transparent;
}
.about-two .solinom-btn:hover {
    border-color: rgba(var(--solinom-white-rgb, 255, 255, 255), 0.4);
}










