body{
    height: 1000px;
    font-family: 'Outfit', sans-serif;

}
/* Navbar styling */
.navbar-custom {
    transition: all 0.4s ease;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    margin: 20px auto;
    max-width: 90%;
}

.navbar-custom .nav-link,
.navbar-custom .btn-book,
.navbar-custom .navbar-brand {
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 250 !important;
  line-height: 1.5;
}

.navbar-nav .nav-item {
    margin: 0 15px;
}

.navbar-brand {
    padding: 0 !important;
    margin: 0 !important;
    display: flex;
    align-items: center;
}

.navbar-brand img {
    height: 85px;
    width: auto;
    display: block;
    margin-left:-27px;
}

/* Transparent navbar initially */
.navbar-custom.scrolled {
  background: rgba(33, 33, 33, 0.6);
  backdrop-filter: blur(12px);
  box-shadow: 0px 4px 20px rgba(0,0,0,0.1);
}

/* Navbar links underline effect */
.navbar-nav .nav-link {
  position: relative;
  font-weight: 500;
  margin-right: 20px;
  color: #fff;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: -3px; 
  left: 0;
  width: 0%;
  height: 1px;
  background: #fff;
  transition: width 0.3s ease-in-out;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

.navbar-custom.scrolled .nav-link {
  color: #ffffff;
}

/* Default button */
.btn-book {
  border-radius: 50px;
  font-weight: 600;
  padding: 11px 24px;
  font-size: 1rem;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

/* Hover state */
.btn-book:hover {
  background-color: transparent !important;
  color: #fff !important;
  border: 1px solid #fff !important;
}
.btn-book i {
  vertical-align: middle;
  margin-left: 8px;
  font-size: 0.95em;
  line-height: 1;
}

/* Custom X toggler button */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
    transition: all 0.3s;
    position: relative;
    z-index: 1040;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Hide the default Bootstrap toggler icon */
.navbar-toggler-icon {
    background-image: none !important;
    display: inline-block;
    position: relative;
    width: 24px;
    height: 24px;
}

/* Create custom hamburger icon */
.navbar-toggler-icon::before,
.navbar-toggler-icon::after,
.navbar-toggler-icon .middle-bar {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #fff;
    left: 0;
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before {
    top: 3px;
}

.navbar-toggler-icon .middle-bar {
    top: 11px;
}

.navbar-toggler-icon::after {
    bottom: 3px;
}

/* X shape when expanded */
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    transform: rotate(45deg);
    top: 11px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon .middle-bar {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transform: rotate(-45deg);
    bottom: 11px;
}

/* Mobile / Tablet adjustments */
@media (max-width: 991px) {
    /* Navbar slide from left animation */
    .navbar-collapse {
        position: fixed;
        top: 0;
        left: -280px; /* Start off-screen */
        width: 280px;
        height: 100vh;
        background: rgba(33, 33, 33, 0.85);
        backdrop-filter: blur(12px);
        transition: left 0.3s ease;
        z-index: 1030;
        padding: 4.5rem 1rem 1rem;
        margin-top: 0;
        overflow-y: auto;
    }
    
    /* When menu is shown */
    .navbar-collapse.show {
        left: 0;
    }
    
    /* Position toggle button above the menu */
    .navbar-toggler {
        position: relative;
        z-index: 1040;
    }
    
    /* Other mobile navbar styles */
    .navbar-nav {
        text-align: left;
    }
    
    .navbar-nav .nav-item {
        margin: 8px 0;
    }
    
    .navbar-nav .nav-link::after {
        display: none;
    }
    
    .btn-book {
        display: block;
        width: 100%;
        margin: 15px 0 0;
        padding: 9px 0;
        font-size: 16px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .navbar-brand img {
        height: 55px;
    }

    .navbar-custom {
        margin: 10px auto;
        border-radius: 30px;
    }
}

/* ----------------main----------------------- */


.hero-section {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    
}

.hero-section img {
    object-fit: cover;
    height: 110vh;
}

.hero-overlay {
    background: linear-gradient(90deg, rgba(0,0,0,0.5) 20%, rgba(0,0,0,0) 70%);
    padding: 2rem;
    border-radius: inherit;
}

.promo-box {
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(6px);
    max-width: 250px;
}

/* ----------------footer----------------------- */
.footer-section {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 0;
}

.footer-logo {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-logo::after {
    content: '→';
    margin: 0 8px;
}

.footer-tagline {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 1rem;
    font-weight: 300;
}

.footer-description {
    color: #999999;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 300px;
}

.social-links {
    margin-bottom: 3rem;
}

.social-links span {
    color: #cccccc;
    font-size: 0.9rem;
    margin-right: 15px;
}

.social-icon {
    display: inline-block;
    width: 35px;
    height: 35px;
    background-color: #333333;
    border-radius: 6px;
    text-align: center;
    line-height: 35px;
    color: #ffffff;
    text-decoration: none;
    margin-right: 10px;
    transition: background-color 0.3s ease;
}

.social-icon:hover {
    background-color: #555555;
    color: #ffffff;
}

.footer-section-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #999999;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-links a::before {
    content: '○';
    margin-right: 8px;
    font-size: 0.7rem;
    opacity: 0.6;
}

.contact-info {
    color: #999999;
    font-size: 0.95rem;
    line-height: 1.8;
}

.contact-info strong {
    color: #ffffff;
}

.main-cta {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 60px 0;
    text-align: center;
    margin-bottom: 0;
}

.main-cta h2 {
    color: #ffffff;
    font-size: 2.2rem;
    font-weight: 300;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.book-now-btn {
    background-color: #ffffff;
    color: #2c3e50;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.book-now-btn:hover {
    background-color: #f8f9fa;
    color: #2c3e50;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.book-now-btn::after {
    content: '→';
    font-size: 1.2rem;
}

.footer-bottom {
    background-color: #111111;
    padding: 25px 0;
    border-top: 1px solid #333333;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #666666;
    font-size: 0.9rem;
}

.footer-bottom-links a {
    color: #666666;
    text-decoration: none;
    margin-left: 25px;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #ffffff;
}
@media (max-width: 576px) {
  .hero-section {
    height: 70vh;  /* smaller height on mobile */
  }

  .hero-section img {
    object-fit: cover;
    height: 100%;
    width: 100%;
  }

  .hero-overlay h1 {
    font-size: 1.5rem; /* smaller heading for mobile */
  }

  .hero-overlay p {
    font-size: 0.85rem; /* smaller text */
  }

  .promo-box {
    font-size: 0.8rem;
    padding: 0.5rem 0.75rem;
  }
}

/* Footer responsive styles */
@media (max-width: 992px) {
    .footer-logo {
        font-size: 2.2rem;
    }
    
    .main-cta h2 {
        font-size: 1.8rem;
    }
    
    .footer-section {
        padding: 50px 0 0;
    }
}

@media (max-width: 768px) {
    .footer-logo {
        font-size: 2rem;
        text-align: center;
    }

    .footer-tagline {
        text-align: center;
        font-size: 1rem;
    }
            
    .footer-description {
        text-align: center;
        margin: 0 auto 2rem;
    }

    .social-links {
        text-align: center;
        margin-bottom: 3rem;
    }

    .main-cta h2 {
        font-size: 1.6rem;
        padding: 0 15px;
    }

    .footer-section-title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-bottom-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .footer-bottom-links a {
        margin: 0;
    }

    .contact-info {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .footer-section {
        padding: 40px 0 0;
    }

    .footer-logo {
        font-size: 1.8rem;
    }

    .main-cta {
        padding: 40px 0;
    }

    .main-cta h2 {
        font-size: 1.4rem;
    }

    .book-now-btn {
        padding: 12px 30px;
        font-size: 0.9rem;
    }

    .social-icon {
        width: 30px;
        height: 30px;
        line-height: 30px;
        margin-right: 8px;
    }

    .footer-section-title {
        margin-bottom: 0.8rem;
    }

    .footer-links li {
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .footer-description {
        font-size: 0.9rem;
    }

    .footer-links a,
    .contact-info {
        font-size: 0.9rem;
    }

    .footer-bottom {
        padding: 20px 0;
    }

    .footer-bottom-content {
        font-size: 0.85rem;
    }
}

@media (max-width: 375px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .footer-logo {
        font-size: 1.6rem;
    }

    .main-cta h2 {
        font-size: 1.2rem;
        line-height: 1.4;
    }

    .book-now-btn {
        padding: 10px 25px;
        font-size: 0.85rem;
    }
}




/* Small Menu Styles */



 .small-hero-section {
                position: relative;
                border-radius: 20px;
                overflow: hidden;
                /* Add max-height to control overall container size */
                max-height: 60vh; /* Adjust this value as needed */
                
            }

.small-hero-section img {
                object-fit: cover;
                /* Reduce height significantly */
                height: 70vh; /* Changed from 110vh to 70vh */
                width: 100%;
                /* Alternative options for different sizes: */
                /* height: 60vh; - Even smaller */
                /* height: 50vh; - Much smaller */
                /* height: 500px; - Fixed pixel height */
            }

    .small-hero-overlay {
        background: linear-gradient(90deg, rgba(0,0,0,0.5) 20%, rgba(0,0,0,0) 70%);
        padding: 2rem;
        border-radius: inherit;
        /* Ensure overlay covers the reduced container */
        min-height: 100%;
    }



:root {
    --primary: #4361ee;
    --secondary: #3f37c9;
    --accent: #4895ef;
    --dark: #1b263b;
    --light: #f8f9fa;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}


/* Animation for smalll menu */
@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px); /* start from left */
  }
  100% {
    opacity: 1;
    transform: translateX(0); /* end at normal position */
  }
}

.slide-in-left {
  display: inline-block;
  animation: slideInLeft 1.0s ease-out forwards;
}
      
        
        /* Gallery Styles */

   

        .theme-toggle {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 0.25rem;
            cursor: pointer;
            margin-top: 1rem;
            transition: var(--transition);
        }

        .theme-toggle:hover {
            background: var(--secondary);
            transform: translateY(-2px);
        }

        .gallery {
            max-width: 1400px;
            margin: 2rem auto;
            padding: 0 1rem;
        }

        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            grid-auto-rows: minmax(150px, auto);
            grid-gap: 1rem;
            grid-auto-flow: dense;
        }

        .grid-item {
            position: relative;
            overflow: hidden;
            border-radius: 0.5rem;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .grid-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .grid-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: var(--transition);
        }

        .grid-item:hover img {
            transform: scale(1.05);
        }

        .grid-item::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 50%);
            opacity: 0;
            transition: var(--transition);
        }

        .grid-item:hover::after {
            opacity: 1;
        }

        .caption {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 1rem;
            color: white;
            transform: translateY(100%);
            transition: var(--transition);
            z-index: 1;
        }

        .grid-item:hover .caption {
            transform: translateY(0);
        }

        .wide {
            grid-column: span 2;
        }

        .tall {
            grid-row: span 2;
        }

        .big {
            grid-column: span 2;
            grid-row: span 2;
        }

        @media (max-width: 768px) {
            .grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
            
            .wide, .tall, .big {
                grid-column: span 1;
                grid-row: span 1;
            }
        }

        @media (max-width: 480px) {
            .grid {
                grid-template-columns: 1fr;
            }
            
            h1 {
                font-size: 2rem;
            }
        }

/* contact */
        .contact-section {
  background: #f9f9f9;
  font-family: 'Outfit', sans-serif;
}

.contact-section h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.contact-section p {
  font-size: 0.95rem;
  color: #555;
}

.contact-section .form-control {
  border-radius: 8px;
  padding: 12px 15px;
}

.contact-section .btn {
  border-radius: 30px;
  font-weight: 500;
}


/* aboutus */

/* Hidden state */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.9s ease;
}

/* Visible state */
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}


.about-text {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: normal;
}

.tranquility-text {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
}

.expectation-text {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-weight: normal;
}

    .about-section {
      padding: 60px 0;
    }

    .about-section h2 {
      font-weight: 700;
      font-size: 2.5rem;
      line-height: 1.2;
      margin-bottom: 20px;
    }

    .about-section p {
      font-size: 1rem;
      line-height: 1.6;
      color: #6c757d;
    }

    .about-section .card img {
      border-radius: 12px;
      object-fit: cover;
      height: 100%;
    }

    .about-section .card {
      border: none;
      border-radius: 12px;
      overflow: hidden;
    }

.services-section {
  background-color: #ffffff;
}

.services-section .dot {
  height: 10px;
  width: 10px;
  background-color: #666;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
}

.services-section .service-img-overlay {
  width: 55%;
  bottom: -40px;
  right: -20px;
}



.reputation-section {
  background-color: #ffffff;
}

.reputation-section .dot {
  height: 10px;
  width: 10px;
  background-color: #666;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
}

.testimonial-card {
  border: 1px solid #eee;
}

.testimonial-card .quote-mark {
  font-size: 40px;
  color: #e0e0e0;
  position: absolute;
  top: 10px;
  left: 15px;
}

.stars {
  font-size: 18px;
}

.reputation-section .img-overlay {
  width: 50%;
  bottom: -30px;
  left: -20px;
}

.reputation-section img {
  max-height: 550px; /* Make image taller */
  object-fit: cover; /* Ensures no empty gaps */
  border-radius: 15px;
}

.extra-content {
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  margin-top: 15px;
}







/* Blogs */




    /* Modal Styles */
    .modal-content {
      border-radius: 20px;
      border: none;
    }

    .modal-header {
      background: linear-gradient(135deg, #2c3e50, #34495e);
      color: white;
      border-radius: 20px 20px 0 0;
    }

    .modal-body {
      padding: 2rem;
    }

    .modal-image {
      width: 100%;
      height: 300px;
      object-fit: cover;
      border-radius: 15px;
      margin-bottom: 2rem;
    }

    

    /* Responsive Design */
   


/* Rooms */


/* Card Styling */
.room-card {
  border: none !important; /* Removed border */
  overflow: hidden;
  transition: all 0.3s ease;
  background: #fff;
}
.room-card:hover {
  transform: translateY(-8px);
  /* box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15); */
}

/* Room Images */
.room-card img {
  height: 220px;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

/* Carousel Buttons */
.custom-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.custom-carousel-btn:hover {
  background: #fff;
  color: #000;
}
.carousel-control-prev.custom-carousel-btn { left: 10px; }
.carousel-control-next.custom-carousel-btn { right: 10px; }

/* Title & Text */
.room-card .card-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.room-card p {
  font-size: 0.9rem;
}

/* Price */
.price-tag {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c3e50;
}

.btn-book-room {
  background: #000;
  color: #fff;
  border-radius: 30px;
  padding: 6px 18px;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}
.btn-book-room:hover {
  background: #fff;
  color: #000 !important;
  border: 1px solid #000;
}


/* SOLID + REGULAR icons */
.fa-solid, .fas {
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900; /* solid */
}

.far {
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 400; /* regular */
}

/* BRANDS icons (Instagram, Facebook, etc.) */
.fab {
  font-family: "Font Awesome 6 Brands" !important;
  font-weight: 400;
}



/* Scroll Animation */
.scroll-animate {
  opacity: 0;
  transform: translateX(100px);
  transition: all 0.8s ease-out;
}

.scroll-animate.show {
  opacity: 1;
  transform: translateX(0);
}
/* Cards Scroll Animation */
.card-animate {
  opacity: 0;
  transform: translateY(80px);
  transition: all 0.8s ease-out;
}

.card-animate.show {
  opacity: 1;
  transform: translateY(0);
}


/* Make logo responsive */
/* .navbar-brand img {
  max-height: 50px;
  width: auto;
} */

/* Responsive image in "Discover Your Perfect Stay" section */
.scroll-animate img {
  max-width: 100%;
  height: auto;
}

/* Fix column padding for smaller screens */
@media (max-width: 768px) {
  .scroll-animate .col-md-6 {
    padding-left: 0 !important;
    text-align: center;
  }
}

/* Adjust hero text size on mobile */
.small-hero-overlay h1 {
  font-size: 2rem;
}
@media (min-width: 768px) {
  .small-hero-overlay h1 {
    font-size: 2.5rem;
  }
}
@media (min-width: 1200px) {
  .small-hero-overlay h1 {
    font-size: 3rem;
  }
}

/* Footer logo */
.footer-section img {
  max-width: 100%;
  height: auto;
}

/* Make social icons scale better */
.social-icon {
  font-size: 1.2rem;
  margin-right: 10px;
}