   :root {
  --primary-color: #1a365d;
  --secondary-color: #2c5282;
  --accent-color: #d69e2e;
  --text-dark: #2d3748;
  --text-light: #718096;
  --white: #ffffff;
  --light-bg: #f7fafc;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  --gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gold-gradient: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
}
   
   * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      color: #333;
      background: #545454;
    }
 html {
  scroll-behavior: smooth;
} 

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}
/* ANIMATION KEYFRAMES - NEW ADDITIONS */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(80px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

@keyframes rotateIn {
  from {
    opacity: 0;
    transform: rotate(-180deg);
  }
  to {
    opacity: 1;
    transform: rotate(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes wiggle {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(5deg); }
  50% { transform: rotate(-5deg); }
  75% { transform: rotate(5deg); }
  100% { transform: rotate(0deg); }
}

@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  100% { transform: translateY(-100px) rotate(360deg); }
}

/* Navbar Styles */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgb(52, 86, 100);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  animation: fadeInDown 0.8s ease-out;
}
.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-left: 2rem;
  animation: fadeInLeft 1s ease-out 0.2s both;
}

#main-nav {
  display: flex;
  align-items: center;
}

.nav-toggle-btn {
  display: none;
  background: none;
  border: 2px solid rgb(255, 255, 255);
  font-size: 1.1rem;
  color: var(--white);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  z-index: 999;
  position: relative;
  width: 60px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.nav-toggle-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.1);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding-right: 3rem;
}

.nav-links li a {
  color: var(--white);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 670;
  padding: 0.6rem 1.5rem;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: var(--white);
  background: var(--gradient);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}


.breadcrumb-nav {
  background-color: #f8f8f8;
  padding: 10px 20px;
  font-size: 0.9rem;
}
.breadcrumb {
  list-style: none;
  display: flex;
  gap: 8px;
}
.breadcrumb li::after {
  content: ">";
  margin: 0 6px;
}
.breadcrumb li:last-child::after {
  content: "";
}
.breadcrumb a {
  text-decoration: none;
  color: #0066cc;
}

  /* Hero Section */
  .hero {
      background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), 
                  url('../images/Rooms/img 2.jpg') no-repeat center center;
      background-size: cover;
      background-position: center;
      background-attachment:fixed;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: white;
      margin-top: 0px;
      overflow: hidden;
    
    }


    .hero-content {
      position: relative;
      z-index: 2;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
      animation: fadeInUp 1s ease-out;
    }
    .hero-content h2 {
      font-size: 2.8rem;
      margin-bottom: 1rem;
      font-weight: 600;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.544);
      animation: SlideInRight 1.1s ease-out;
    }

    .hero-content p {
      font-size: 1.3rem;
      margin-bottom: 2rem;
      opacity: 0.9;
      animation: SlideInRight 1.1s ease-out ;
    }

    @keyframes SlideInRight {
      from {
        opacity: 0;
        transform: translateX(80px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }
   /* Slider container */
#hero-rooms::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  animation: roomSlider 20s infinite ease-in-out;
  transition: background-image 1s ease-in-out;
}

/* Overlay dark layer for better text visibility */
#hero-rooms::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.218);
  z-index: 2;
}

#hero-rooms .hero-content {
  position: relative;
  z-index: 3;
}

@keyframes roomSlider {
  0%, 16.66% {
    background-image: url('../images/Rooms/img1.jpg');
  }
  16.67%, 33.33% {
    background-image: url('../images/Rooms/img 2.jpg');
  }
  33.34%, 50% {
    background-image: url('../images/Rooms/img3.jpg');
  }
  50.01%, 66.66% {
    background-image: url('../images/Rooms/img3.avif');
  }
  66.67%, 83.33% {
    background-image: url('../images/Rooms/img4.avif');
  }
  83.34%, 100% {
    background-image: url('../images/Rooms/img8.jpg');
  }
}

    /* Container */
    .container {
      max-width: 1450px;
      margin: 0 auto;
      padding: 0 2rem;
    }

    /* Room Types Section */
    .popular-rooms {
      padding: 5rem 0;
      background: white;
    }

    .popular-rooms h2 {
      text-align: center;
      font-size: 2.5rem;
      margin-bottom: 3rem;
      color: #1a3b5c;
      position: relative;
    }

    .popular-rooms h2::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      border-radius: 2px;
    }

    .room-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }

    .room-card {
      background: rgb(200, 204, 207);
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      transition: all 0.3s ease;
      position: relative;
    }

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

    .room-card img {
      width: 100%;
      height: 280px;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

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

    .room-card h3 {
      font-size: 1.5rem;
      color: #1a3b5c;
      margin: 1rem;
      font-weight: 600;
      margin-bottom: 0.2rem; 
    }

    .room-card p {
      color: #1d1d1d;
      margin: 0 1rem 0.5rem;
      font-size: 1rem;
      font-weight: 400;
    }

    .room-card ul {
      list-style: none;
      margin: 1rem;
      padding-bottom: 1rem;
    }

    .room-card li {
      color: #0e0424;
      margin-bottom: 0.3rem;
      position: relative;
      padding-left: 1.5rem;
    }

    .room-card li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: #00d676;
      font-weight: bold;
    }

    /* Pricing Section */
    .room-pricing {
      padding: 4rem 0;
      background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
    }

    .room-pricing h2 {
      text-align: center;
      font-size: 2.4rem;
      margin-bottom: 3rem;
      color: #1a3b5c;
      position: relative;
    }
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
      max-width: 1400px;
     
    }

    .pricing-card {
      background: rgba(245, 245, 245, 0.23);
      padding: 2rem;
      border-radius: 20px;
      text-align: center;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.144);
      transition: transform 0.3s ease;
      position: relative;
      overflow: hidden;
      
    }

    .pricing-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    }

    .pricing-card:hover {
      transform: translateY(-5px);
    }

    .pricing-card h4 {
      font-size: 1.8rem;
      color: #1a3b5c;
      margin-bottom: 0.5rem;
      font-weight: 500;
      
    }

    .price {
      font-size: 1.5rem;
      color: #667eea;
      font-weight: 600;
      margin-bottom: 0.4rem;
    }

    .price-period {
      color: #303030;
      font-size: 1rem;
      margin-bottom: 0.3rem;
    }

    /* Image Gallery */
    .image-gallery {
      padding: 5rem 0;
      background: rgb(255, 255, 255);
    }

    .image-gallery h2 {
      text-align: center;
      font-size: 2.5rem;
      margin-bottom: 3rem;
      color: #1a3b5c;
      position: relative;
    }

    .image-gallery h2::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      border-radius: 2px;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }

    .gallery-grid img {
      width: 100%;
      height: 250px;
      object-fit: cover;
      border-radius: 20px;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .gallery-grid img:hover {
      transform: scale(1.05);
      box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    }

    /* Room Highlights */
    .room-highlights {
      padding: 5rem 0;
      background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
      color: #1a3b5c;
    }

    .room-highlights h2 {
      text-align: center;
      font-size: 2.5rem;
      margin-bottom: 3rem;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    }

    .highlights-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }

    .highlight {
      text-align: center;
      padding: 2rem;
      background: rgb(255, 255, 255);
      border-radius: 20px;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.208);
      backdrop-filter: blur(10px);
      transition: transform 0.3s ease;
    }

    .highlight:hover {
      transform: translateY(-5px);
      background: rgba(226, 226, 226, 0.793);
    }

    .highlight h4 {
      font-size: 1.3rem;
      margin-bottom: 1rem;
      font-weight: 600;
    }

    .highlight p {
      opacity: 0.9;
      line-height: 1.6;
    }

    /* Amenities Section */
    .amenities {
      padding: 5rem 0;
      background: #f8f9fa;
    }

    .amenities h2 {
      text-align: center;
      font-size: 2.5rem;
      margin-bottom: 3rem;
      color: #1a3b5c;
      position: relative;
    }

    .amenities h2::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 90px;
      height: 3px;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      border-radius: 2px;
    }

    .amenities-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 1.5rem;
      margin-top: 3rem;
    }

    .amenity-item {
      background: white;
      padding: 2rem;
      border-radius: 20px;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0,0,0,0.08);
      transition: transform 0.3s ease;
    }

    .amenity-item:hover {
      transform: translateY(-5px);
    }

    .amenity-icon {
      font-size: 2.5rem;
      margin-bottom: 1rem;
      color: #667eea;
    }

    .amenity-item h4 {
      font-size: 1.2rem;
      color: #2c3e50;
      margin-bottom: 0.5rem;
    }

    .amenity-item p {
      color: #666;
      font-size: 0.956rem;
      font-weight: 400;
    }

    /* CTA Section */
    .cta-book {
      padding: 4rem 0;
      background: url('../images/Reception/img3.avif') ;
      color: white;
      text-align: center;
      background-size: cover;
     
    }

    .cta-book h2 {
      font-size: 2.5rem;
      margin-bottom: 1rem;
      font-weight: 700;
    }

    .cta-book p {
      font-size: 1.2rem;
      margin-bottom: 2rem;
      opacity: 0.9;
    }

    .btn-primary {
      display: inline-block;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
      padding: 1rem 2.5rem;
      text-decoration: none;
      border-radius: 50px;
      font-weight: 600;
      font-size: 1.1rem;
      transition: all 0.3s ease;
      box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(43, 43, 43, 0.6);
    }

    /* Footer */
    .footer {
      background: #2c3e50;
      color: white;
      padding: 3rem 0 1rem;
    }

    .footer-container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 0.6rem;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 4rem;
    }

  .footer-about h3{ 
      font-size: 1.7rem;
      margin-bottom: 0.5rem;
      background: var(--gold-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      padding-left: 0rem;
    }

    .footer-links h4,
    .footer-contact h4 {
      background: var(--gold-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 0.8rem;
      font-size: 1.3rem;
      color: #19f0c5;
    }

    .footer-links ul {
      list-style: none;
    }

    .footer-links li {
      margin-bottom: 0.5rem;
    }

    .footer-links a {
      color: #e8e8e8;
      text-decoration: none;
      transition: color 0.3s;
    }

    .footer-links a:hover {
      color: #00ddd9;
    }

    .footer-contact p {
      margin-bottom: 0.5rem;
      color: #eef0ef;
    }

    .footer-bottom {
      text-align: center;
      padding-top: 2rem;
      margin-top: 2rem;
      border-top: 1px solid #676869;
      color: #dddddd;
    }


    /* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--gradient);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-color);
}

    /* ===========================================
   RESPONSIVE MEDIA QUERIES
   =========================================== */

/* Large Tablets and Small Desktops (1024px - 1200px) */
@media screen and (max-width: 1200px) {
  .container {
    max-width: 1000px;
    padding: 0 15px;
  }
  
  .hero-content h2 {
    font-size: 2.4rem;
  }
  
  .room-cards,
  .pricing-grid,
  .gallery-grid,
  .highlights-grid,
  .amenities-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
}

/* Tablets (768px - 1024px) */
@media screen and (max-width: 1024px) {
  .container {
    max-width: 100%;
    padding: 0 15px;
  }
  .navbar {
    position: fixed;
    padding: 0.8rem 2rem;
  }
  
  .logo {
    font-size: 1.6rem;
    padding-left: 0.1rem;
  }
  .nav-toggle-btn {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 50px;
    right:-100%;
    width: 220px;
    height: 30vh;
    background: rgba(52, 86, 100, 0.915);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    transition: right 0.3s ease;
    padding: 0rem;
    z-index: 999;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links li a {
    font-size: 1rem;
    padding: 0.6rem 3.5rem;
    width: 180px;
    text-align: center;
    /* border: 2px solid rgb(0, 255, 166); */
    margin: 0.5rem 0;
  }

  .hero-content h2 {
    font-size: 2rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
  }
  
  .popular-rooms h2,
  .room-pricing h2,
  .image-gallery h2,
  .room-highlights h2,
  .amenities h2 {
    font-size: 1.6rem;
  }
  
  .room-cards,
  .pricing-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
  
  .gallery-grid,
  .highlights-grid,
  .amenities-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

/* Small Tablets and Large Phones (481px - 768px) */
@media screen and (max-width: 768px) {
  .container {
    max-width: 100%;
    padding: 0 15px;
  }
  .navbar {
    padding: 0.8rem 1rem;
    flex-wrap: wrap;
  }
  
.nav-toggle-btn {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 50px;
    right:-100%;
    width: 220px;
    height: 30vh;
    background: rgba(52, 86, 100, 0.915);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    transition: right 0.3s ease;
    padding: 0rem;
    z-index: 999;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links li a {
    font-size: 1rem;
    padding: 0.6rem 3.5rem;
    width: 180px;
    text-align: center;
    /* border: 2px solid rgb(0, 255, 166); */
    margin: 0.5rem 0;
  }
  
  .hero {
    height: 90vh;
  }
  
  #hero-rooms::before {
    background-attachment: scroll;
  }
  
  .hero-content {
    max-width: 95%;
    padding: 0 1rem;
  }
  
  .hero-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .popular-rooms,
  .room-pricing,
  .image-gallery,
  .room-highlights,
  .amenities {
    padding: 3rem 0;
  }
  
  .popular-rooms h2,
  .room-pricing h2,
  .image-gallery h2,
  .room-highlights h2,
  .amenities h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  .room-cards,
  .pricing-grid,
  .gallery-grid,
  .highlights-grid,
  .amenities-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }
  
  .room-card img,
  .gallery-grid img {
    height: 220px;
  }
  
  .cta-book {
    padding: 3rem 0;
    background-attachment: scroll;
  }
  
  .cta-book h2 {
    font-size: 2rem;
  }
  
  .cta-book p {
    font-size: 1.1rem;
  }
  
  .btn-primary {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }
  
  .footer-container {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 0 1rem;
  }
}

/* Mobile Phones (320px - 480px) */
@media screen and (max-width: 480px) {
  .container {
    padding: 5px 15px;
  }
  
  .navbar {
    padding: 0.6rem 0.8rem;
  }
  
  .logo {
    font-size: 1.4rem;
    padding-left: 0;
  }
  
.nav-toggle-btn {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 50px;
    right:-100%;
    width: 220px;
    height: 30vh;
    background: rgba(52, 86, 100, 0.915);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    transition: right 0.3s ease;
    padding: 0rem;
    z-index: 999;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links li a {
    font-size: 1rem;
    padding: 0.6rem 3.5rem;
    width: 180px;
    text-align: center;
    /* border: 2px solid rgb(0, 255, 166); */
    margin: 0.5rem 0;
  }

  .hero {
    height: 100vh;

  }
  .hero-img {
    height: 90vh;
    width: 100%;
    object-fit: contain;
  }
  

  #hero-rooms::before {
    background-attachment: fixed;
  }
  

  .hero-content h2 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
  }
  
  .hero-content p {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  
  .popular-rooms,
  .room-pricing,
  .image-gallery,
  .room-highlights,
  .amenities {
    padding: 2.5rem 1.2rem;
  }
  
  .popular-rooms h2,
  .room-pricing h2,
  .image-gallery h2,
  .room-highlights h2,
  .amenities h2 {
    font-size: 1.6rem;
    margin-bottom: 1.3rem;
  }
  
  .room-cards,
  .pricing-grid,
  .gallery-grid,
  .highlights-grid,
  .amenities-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .room-card,
  .pricing-card,
  .highlight,
  .amenity-item {
    margin: 0 0.1rem;
  }
  
  .room-card h3 {
    font-size: 1.4rem;
  }
  
  .room-card p {
    font-size: 1rem;
  }
  
  .room-card img,
  .gallery-grid img {
    height: 200px;
  }
  
  .price {
    font-size: 1.8rem;
  }
  
  .pricing-card,
  .highlight,
  .amenity-item {
    padding: 1.5rem;
  }
  
  .cta-book {
  background: #16527e80;
    padding: 2.5rem 0;
  }
  
  .cta-book h2 {
    font-size: 1.6rem;
  }
  
  .cta-book p {
    font-size: 1rem;
    font-weight: 500;
    color:#ffffff;
  }
  
  .btn-primary {
    padding: 0.8rem 1.8rem;
    font-size: 0.95rem;
  }
  
  .footer {
    padding: 2rem 0 1rem;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    padding: 0 0.8rem;
  }
  
  .footer-about h3,
  .footer-links h4,
  .footer-contact h4 {
    font-size: 1.2rem;
  }
}

/* Extra Small Devices (max-width: 320px) */
@media screen and (max-width: 320px) {
  .navbar {
    padding: 0.5rem 0.6rem;
  }
  
  .logo {
    font-size: 1.2rem;
  }
  
.nav-toggle-btn {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 50px;
    right:-100%;
    width: 220px;
    height: 30vh;
    background: rgba(52, 86, 100, 0.915);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    transition: right 0.3s ease;
    padding: 0rem;
    z-index: 999;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links li a {
    font-size: 1rem;
    padding: 0.6rem 3.5rem;
    width: 180px;
    text-align: center;
    /* border: 2px solid rgb(0, 255, 166); */
    margin: 0.5rem 0;
  }


  .hero-content h2 {
    font-size: 1.6rem;
  }
  
  .hero-content p {
    font-size: 0.9rem;
  }
  
  .popular-rooms h2,
  .room-pricing h2,
  .image-gallery h2,
  .room-highlights h2,
  .amenities h2 {
    font-size: 1.6rem;
  }
  
  .room-card,
  .pricing-card,
  .highlight,
  .amenity-item {
    margin: 0 0.2rem;
    padding: 1.2rem;
  }
  
  .room-card h3 {
    font-size: 1.3rem;
  }
  
  .price {
    font-size: 1.8rem;
  }
  
  .btn-primary {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* Landscape Orientation Fixes */
@media screen and (max-height: 500px) and (orientation: landscape) {
  .hero {
    height: 100vh;
    min-height: 400px;
  }
  
  .hero-content h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
  }
  
  .hero-content p {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  
  .navbar {
    padding: 0.4rem 1rem;
  }
}

/* High DPI Display Optimizations */
@media screen and (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .hero-content,
  .room-card,
  .pricing-card,
  .highlight,
  .amenity-item {
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}

/* Custom Animations for Mobile */
@keyframes mobileSlideIn {
  from {
    opacity: 0;
    transform: translateX(-80px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes mobileBounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Mobile-specific animations */
@media screen and (max-width: 768px) {
  .room-card,
  .pricing-card,
  .highlight,
  .amenity-item {
    animation: mobileSlideIn 0.6s ease-out;
  }
  
  .amenity-icon {
    animation: mobileBounce 2s infinite;
  }
  
  .logo {
    animation: mobileBounce 3s infinite;
  }
}

/* Utility Classes for Responsive Design */
.mobile-hidden {
  display: block;
}

.mobile-only {
  display: none;
}

@media screen and (max-width: 768px) {
  .mobile-hidden {
    display: none;
  }
  
  .mobile-only {
    display: block;
  }
}


/* JavaScript Integration Styles */
.nav-links.menu-open {
  display: flex;
  animation: slideDown 0.3s ease-out;
}

.navbar.menu-active {
  background: rgba(52, 86, 100, 0.98);
}

