
  body {
    font-family: 'Roboto', sans-serif !important;
    background: #f8f9fc !important;
  }
  
  h1, h2, h3, .navbar-brand {
    font-family: 'Cinzel', serif !important;
  }

  /* TOP BAR */
.top-bar {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    padding: 6px 0;
    font-family: 'Cinzel', serif;
    border-bottom: 1px solid rgba(255,255,255,0.3); /* underline */
    transition: all 0.4s ease;
    font-weight: 800;
    font-size: 16px;
    margin-top: 10px;
}

.top-bar.hide-top {
    transform: translateY(-100%);
    opacity: 0;
}

/* NAVBAR */
#navbar {
    background: transparent;
    position: absolute;
    top: 35px; /* below top bar */
    width: 100%;
    z-index: 999;
    transition: all 0.4s ease;
}

/* Sticky Navbar */
#navbar.sticky {
    background: rgba(0, 0, 0, 0.9);
    position: fixed;
    top: 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Logo */
.logo-img {
    max-height: 80px;
}

@media(max-width: 768px) {
    .logo-img {
        max-height: 40px;
    }
}

/* Nav Links */
.navbar-nav .nav-link {
    font-weight: 800;
    margin: 0 0.5rem;
    transition: 0.3s;
}

.navbar-nav .nav-link:hover {
    color: #92BFB1 !important; 
} 

/* MOBILE FIX */
@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    #navbar {
        top: 0;
    }
}
  
  /* Luxury Button */
  .luxury-btn {
    border: 2px solid #fff;
    color: #fff;
    transition: 0.3s;
  }
  /* Amenities Section */
.amenities {
    background: #f8f9fc;
    padding: 100px 60px;
    font-family: 'Cinzel', serif;
    position: relative;
  }
  
  .amenities .section-header h2 {
    font-size: 3rem;
    color: #222;
    margin-bottom: 10px;
  }
  
  .amenities .section-header p {
    color: #555;
    font-size: 1.2rem;
    margin-bottom: 60px;
  }
  
  .amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: auto;
  }
  
  .amenity-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s, box-shadow 0.4s;
  }
  
  .amenity-card i {
    font-size: 2.5rem;
    color:  #92BFB1;
    margin-bottom: 20px;
    display: inline-block;
  }
  
  .amenity-card h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #222;
  }
  
  .amenity-card p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .amenity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.15);
  }
  
  /* Responsive */
  @media(max-width:768px){
    .amenities {
      padding: 80px 20px;
    }
    .amenities .section-header h2 {
      font-size: 2.2rem;
    }
    .amenities .section-header p {
      font-size: 1rem;
      margin-bottom: 40px;
    }
  }
  .luxury-btn:hover {
    background: #d4af37;
    border-color: #d4af37;
    color: #000;
  }
  

  

  @media (max-width: 991px) {
    .navbar-nav .nav-link {
      margin: 0.5rem 0;
    }
  }
.hero {
    height: 100vh;
    width: 100%;
    overflow: hidden;
    position: relative;
  }
  
  .carousel {
    height: 100%;
    position: relative;
  }
  
  .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.1);
    transition: all 1s ease;
  }
  
  .slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
  }
  
  .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
  }
  
  .content {
    position: absolute;
    bottom: 20%;
    left: 10%;
    color: #fff;
    max-width: 500px;
  }
  
  .content h1 {
    font-size: 3rem;
    margin-bottom: 10px;
  }
  
  .content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
  
  .content button {
    padding: 12px 25px;
    border: none;
    background:#92BFB1;    
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
  }
  
  .content button:hover {
    background: #8de3c8;
  }
  
  /* Controls */
  .controls span {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    padding: 10px;
    z-index: 2;
  }
  
  #prev { left: 20px; }
  #next { right: 20px; }
  
  /* Dots */
  .dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .dots span {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 5px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0.5;
  }
  
  .dots .active {
    opacity: 1;
    background: #406ff3;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .content {
      left: 5%;
      bottom: 15%;
      text-align: center;
    }
  
    .content h1 {
      font-size: 2rem;
    }
  
    .content p {
      font-size: 1rem;
    }
  }
  /* rooms */
/* GRID */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

/* CARD */
.room-card {
    background: #f8f9fc;
    border-radius: 20px;
    overflow: hidden;
    font-family: 'Cinzel', serif;
    transition: all 0.5s ease;
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.room-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

/* IMAGE */
.room-img {
    position: relative;
    overflow: hidden;
}

.room-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: 1.2s ease;
}

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

/* PRICE OVERLAY */
.room-overlay {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(146,191,177,0.9);
    color: #fff;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
}

/* CONTENT */
.room-content {
    padding: 25px;
}

.room-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #000;
}

.room-content p {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

/* FEATURES */
.room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.room-features span {
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 20px;
    background: rgba(146,191,177,0.1);
    color: #92BFB1;
}

/* BUTTONS */
.room-buttons {
    display: flex;
    gap: 10px;
}

/* PRIMARY BUTTON */
.btn-primary-lux {
    background: #92BFB1;
    color: #fff;
    padding: 10px 18px;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.4s;
}

.btn-primary-lux:hover {
    background: #000;
}

/* OUTLINE BUTTON */
.btn-outline-lux {
    border: 1px solid #92BFB1;
    color: #92BFB1;
    padding: 10px 18px;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.4s;
}

.btn-outline-lux:hover {
    background: #92BFB1;
    color: #fff;
}
.btn-book {
    background: #d4af37;
    color: #000;
    padding: 8px 15px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.btn-book:hover {
    background: #fff;
}

.btn-explore {
    border: 1px solid #d4af37;
    color: #d4af37;
    padding: 8px 15px;
    border-radius: 25px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-explore:hover {
    background: #d4af37;
    color: #000;
}
  .gallery {
    padding: 100px 60px;
    background: #fafafa;
    /* margin-left: 6rem; */
  }
  
  /* Header */
  .gallery-header h2 {
    font-size: 2.8rem;
    text-align: center;
    letter-spacing: 1px;
  }
  
  .gallery-header p {
    text-align: center;
    color: #888;
    margin-bottom: 60px;
  }
  
  /* Grid */
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 20px;
  }
  
  /* Items */
  .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    cursor: pointer;
  }
  
  .gallery-item.tall { grid-row: span 2; }
  .gallery-item.wide { grid-column: span 2; }
  
  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
  }
  
  /* Luxury Overlay */
  .gallery-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    opacity: 0;
    transition: 0.4s;
  }
  
  /* Golden Shine ✨ */
  .gallery-item::after {
    content: "";
    position: absolute;
    top: -100%;
    left: -100%;
    width: 200%;
    height: 200%;
    background: linear-gradient(120deg, transparent, rgba(255,215,0,0.25), transparent);
    transform: rotate(25deg);
    transition: 0.8s;
  }
  
  /* Hover */
  .gallery-item:hover img {
    transform: scale(1.12);
  }
  
  .gallery-item:hover::before {
    opacity: 1;
  }
  
  .gallery-item:hover::after {
    top: 100%;
    left: 100%;
  }
  
  .gallery-item:hover {
    box-shadow: 0 25px 60px rgba(0,0,0,0.2);
  }
  
  /* Lightbox */
  .lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
  }
  
  .lightbox img {
    max-width: 90%;
    max-height: 85%;
    border-radius: 10px;
  }
  
  .lightbox .close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
  }
  
  /* Responsive */
  @media (max-width: 900px) {
    .gallery-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  /* Mobile FIX (important) */
  @media (max-width: 500px) {
  
    .gallery {
      padding: 60px 20px;
    }
  
    .gallery-grid {
      grid-template-columns: 1fr;
      grid-auto-rows: auto;
    }
  
    .gallery-item.tall,
    .gallery-item.wide {
      grid-column: span 1;
      grid-row: span 1;
    }
  
    .gallery-item img {
      height: 240px;
    }
  }
  /* REVIEWS SECTION ULTRA LUXE */
.reviews {
    background:  #f8f9fc; 
    padding: 120px 60px;
    margin-left: 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    font-family: 'Playfair Display', serif;
  }
  
  .reviews .section-header h2 {
    font-size: 3rem;
    color: #222;
    font-weight: 700;
  }
  
  .reviews .section-header p {
    color: #666;
    font-size: 1.2rem;
    margin-top: 10px;
  }
  
  .reviews-container {
    position: relative;
    max-width: 900px;
    margin: 60px auto 0;
    min-height: 250px;
  }
  
  .review-item {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 1s ease, transform 1s ease;
    background: #fff;
    padding: 50px 40px;
    border-radius: 25px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    color: #222;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .review-item.active {
    opacity: 1;
    position: relative;
    transform: scale(1);
  }
  
  .review-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #d4af37;
    margin-bottom: 20px;
    object-fit: cover;
  }
  
  .review-text {
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.7;
    position: relative;
    color: #333;
    margin-bottom: 25px;
  }
  
  .review-text::before {
    content: '“';
    font-size: 3rem;
    color: #d4af37;
    position: absolute;
    left: -20px;
    top: -10px;
    font-family: 'Playfair Display', serif;
    animation: shimmer 2s infinite;
  }
  
  @keyframes shimmer {
    0%, 100% { color: #d4af37; }
    50% { color: #f8e8a0; }
  }
  
  .review-author {
    font-weight: 700;
    color: #b08c2e;
    letter-spacing: 0.5px;
    font-size: 1rem;
  }
  
  .carousel-controls {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 30px;
  }
  
  .carousel-controls span {
    cursor: pointer;
    font-size: 2rem;
    color: #d4af37;
    transition: color 0.3s;
  }
  
  .carousel-controls span:hover {
    color: #b08c2e;
  }
  
  /* MOBILE RESPONSIVE */
  @media(max-width:900px){
    .reviews {
      padding: 60px 20px;
      margin-left: 0;
    }
    .review-item {
      padding: 30px 20px;
    }
    .section-header h2 { font-size: 2rem; }
    .review-text { font-size: 1rem; }
  }
  /* SECTION HEADER */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease;
  }
  
  .section-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: black; 
  }
  
  /* ABOUT SECTION ULTRA-PREMIUM LUXE */
  .about {
    background:  #f8f9fc;
    padding: 80px 60px; /* reduced padding */
    font-family: 'Cinzel', serif !important;
    position: relative;
}


  .about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

  
  /* IMAGE */
  .about-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.2);
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease;
  }
  
  .about-image img {
    width: 100%;
    display: block;
    transition: transform 0.8s ease, filter 0.8s ease;
    border-radius: 25px;
  }
  
  .about-image img:hover {
    transform: scale(1.06);
    filter: brightness(1.15);
  }
  
  /* GOLD OVERLAY */
  .gold-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 25px;
    background: radial-gradient(circle at top left, rgba(212,175,55,0.25), rgba(212,175,55,0) 70%);
    pointer-events: none;
  }
  
  /* PARTICLES */
  .particles span {
    position: absolute;
    display: block;
    width: 4px;
    height: 4px;
    background: rgba(212,175,55,0.7);
    border-radius: 50%;
    animation: float 6s linear infinite;
  }
  
  .particles span:nth-child(1){top:10%; left:20%; animation-delay: 0s;}
  .particles span:nth-child(2){top:50%; left:70%; animation-delay: 1s;}
  .particles span:nth-child(3){top:20%; left:40%; animation-delay: 2s;}
  .particles span:nth-child(4){top:70%; left:10%; animation-delay: 3s;}
  .particles span:nth-child(5){top:30%; left:80%; animation-delay: 4s;}
  .particles span:nth-child(6){top:60%; left:50%; animation-delay: 5s;}
  .particles span:nth-child(7){top:80%; left:60%; animation-delay: 6s;}
  .particles span:nth-child(8){top:40%; left:20%; animation-delay: 7s;}
  .particles span:nth-child(9){top:15%; left:70%; animation-delay: 8s;}
  .particles span:nth-child(10){top:50%; left:30%; animation-delay: 9s;}
  
  @keyframes float {
    0% { transform: translateY(0) scale(1); opacity: 0.6; }
    50% { transform: translateY(-30px) scale(1.2); opacity: 1; }
    100% { transform: translateY(0) scale(1); opacity: 0.6; }
  }
  
  /* TEXT */
  .about-text {
    flex: 1;
    color: #222;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease;
  }
  .about h1{
    /* font-family: 'Cinzel', serif !important; */
    background-color: orange;
  }
  .about-text h2 {
    font-size: 3rem;
    /* font-weight: 700; */
    font-family: 'Cinzel', serif !important;
    color: #222;
    margin-bottom: 20px;
  }
  
  .about-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    font-family: 'Cinzel', serif !important;
    margin-bottom: 20px;
  }
  
  .btn-luxe {
    display: inline-block;
    padding: 15px 35px;
    background: #92BFB1;
    color:black;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s ease;
  }
  
  .btn-luxe:hover {
    background: linear-gradient(135deg, #d4af37, #b08c2e);
    transform: scale(1.05);
  }
  
  /* RESPONSIVE */
  @media(max-width:900px){
    .about-container {
      flex-direction: column;
      gap: 30px;
      padding: 60px 20px;
    }
    .about-text h2 {
      font-size: 2rem;
    }
    .about-text p {
      font-size: 1rem;
    }
    .section-header h1{
      font-size: 2.5rem;
    }
  }
  /* Contact Section Styles */
.contact-section {
    padding: 80px 20px;
    background:  #f8f9fc;
    color: #fff;
    font-family: 'Playfair Display', serif;
  }
  
  .contact-section .section-title {
    text-align: center;
    font-size: 3rem;
    color: black; /* luxe gold */
    margin-bottom: 50px;
    letter-spacing: 2px;
  }
  
  /* Contact content layout */
  .contact-content {
    display: flex;
    gap: 40px;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  
  /* Contact Form */
  .contact-form {
    flex: 1 1 400px;
    min-width: 300px;
  }
  
  .contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 15px 20px;
    border: 2px solid #92BFB1;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 1rem;
    transition: 0.3s;
  }
  
  .contact-form input:focus,
  .contact-form textarea:focus {
    outline: none;
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
  }
  
  .contact-form button {
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    background: #92BFB1;
    color: #1c1c1c;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
  }
  
  .contact-form button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
  }
  
  /* Contact Map */
  .contact-map {
    flex: 1 1 400px;
    min-width: 300px;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.3);
  }
  
  /* Responsive Design */
  @media (max-width: 1024px) {
    .contact-content {
      flex-direction: column;
      gap: 30px;
    }
  
    .contact-map {
      height: 300px;
    }
  }
  
  @media (max-width: 600px) {
    .contact-section .section-title {
      font-size: 2.2rem;
    }
  
    .contact-form input,
    .contact-form textarea {
      font-size: 0.95rem;
      padding: 12px 15px;
    }
  
    .contact-form button {
      font-size: 1rem;
      padding: 12px 20px;
    }
  }
  /* Back to Top Button Styles */
#backToTop {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 999;
    background: #92BFB1; 
    color: #fff;
    border: none;
    padding: 15px 18px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    transition: all 0.4s ease;
    opacity: 0;
    pointer-events: none;
  }
  
  /* Hover effect */
  #backToTop:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 12px 25px rgba(0,0,0,0.4);
  }
  
  /* Show button when scrolling */
  #backToTop.show {
    opacity: 1;
    pointer-events: auto;
  }
  /* Scrollbar width */
::-webkit-scrollbar {
    width: 10px;
  }
  
  /* Track (semi-transparent dark luxe background) */
  ::-webkit-scrollbar-track {
    background: rgba(28, 28, 28, 0.3);
    border-radius: 20px;
    margin: 1px 0;
  }
  
  ::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #71ebb8, #50e667, #648d6b, #78dc8c);
    border-radius: 10px;
    background-size: 400% 400%;
    animation: luxeGradient 4s ease infinite;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
    transition: all 0.3s ease;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.9);
  }
  
  ::-webkit-scrollbar-corner {
    background: black;
  }
  
  @keyframes luxeGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }

.scrolled {
    background: #000 !important;
}
/* BASE ANIMATION */
.fade-up {
    opacity: 0;
    transform: translateY(80px) scale(0.95);
    filter: blur(6px);
    transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
}

/* WHEN VISIBLE */
.fade-up.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

.fade-up:nth-child(1) { transition-delay: 0.1s; }
.fade-up:nth-child(2) { transition-delay: 0.2s; }
.fade-up:nth-child(3) { transition-delay: 0.3s; }
.fade-up:nth-child(4) { transition-delay: 0.4s; }


.room-card img,
.gallery-item img,
.about-image img {
    transition: transform 1.5s ease;
}

.room-card:hover img,
.gallery-item:hover img {
    transform: scale(1.08);
}

/* PARALLAX HERO */
.hero {
    background-attachment: fixed;
}

/* OPTIONAL: smooth scroll */
html {
    scroll-behavior: smooth;
}
.luxe{
    color: #92BFB1 !important;
}
.rooms-header h2{
    font-size: 3rem;
    color: #222;
    margin-top: 70px;
}
