/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #323232;
    background-color: #DDD0C8;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

.section-title {
    font-size: 3rem;
    color: #323232;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section-description {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(221, 208, 200, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(50, 50, 50, 0.1);
}

.logo-img {
    width: 100px;
    height:100px;
    object-fit: contain;
  }
.navbar.scrolled {
    background: rgba(221, 208, 200, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #323232;
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.nav-logo svg {
    color: #323232;
    transition: transform 0.3s ease;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    text-decoration: none;
    color: #323232;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #323232, #666);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: #000;
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #323232;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #323232, #2a2a2a);
    color: #DDD0C8;
    padding: 0.75rem 1.5rem;
    border: 2px solid #f4f4f4;
        border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
  
    color: #424040;
    padding: 0.75rem 1.5rem;
    border: 2px solid #323232;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #323232;
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-secondary:hover::before {
    left: 0;
}

.btn-secondary:hover {
    color: #DDD0C8;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(50, 50, 50, 0.3);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    z-index: -2;
}

.hero-image {
    width: 100%;
    height: 130%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 1s ease-out;
}

.hero:hover .hero-image {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.2) 50%,
        rgba(0, 0, 0, 0.3) 100%
    );
    z-index: -1;
}

.hero-content {
    color: white;
    z-index: 1;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(80px);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  background-color: white;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(50px);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    color: white ;
    transform: translateY(50px);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    animation: bounce 2s infinite;
    cursor: pointer;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}

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

/* Section Styles */
.section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

/* About Section */
.about {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8f6f4, #f0ede8);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(50, 50, 50, 0.1), transparent);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text {
    opacity: 0;
    transform: translateX(-80px);
    transition: all .2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-features {
    margin-top: 3rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 1rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.feature-item:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.5);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #DDD0C8, #c9beb0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #323232;
    flex-shrink: 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #323232;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
}

.about-image {
    opacity: 0;
    transform: translateX(80px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 50px;
}

.about-img {
   
    height: 500px;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease;
}

.about-image:hover .about-img {
    transform: scale(1.05) rotate(2deg);
}

@media (max-width: 768px) {
  .about-image {
    width: 100%;
    opacity: 1 !important;
    transform: translateX(0);
    transition: none;
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
  }

  .about-img {
    width: 90%;
    height: auto;
    max-height: 300px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    object-fit: cover;
  }
}





/* === Universal Reset & Base Styles === */
.scroll-section {
  overflow: hidden;
}
.section-heading {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #323232;
  padding: 3rem 28rem 2rem;
  text-align: center;
  text-shadow: 1px 1px 0 #DDD0C8;
  letter-spacing: 2px;
}

.wrapper {
  height: 100vh;
}
.list {
  display: flex;
  align-items: center;
  height: 100%;
  position: relative;
  padding: 0.2rem;
}
.item {
  width: 100vw;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.item_content {
  background-color: #fff;
  color: #292929;
  width: 50%;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.item_media {
  width: 50%;
  height: 600px;
  object-fit: cover;
}
.item_number {
  font-size: 1.5rem;
  background: black;
  color: white;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 6rem;
  left: 3rem;
}
.item_content {
  padding: 1rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.room-title {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  color: #323232;
}

.room-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.tag {
  background: #DDD0C8;
  color: #323232;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  font-size: 0.9rem;
}

.room-desc {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

.room-icons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.icon-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.icon-box img {
  width: 36px;
  height: 36px;
  margin-bottom: 0.4rem;
}

.icon-box p {
  font-size: 0.85rem;
  color: #444;
}

.room-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-book {
  background-color: #323232;
  color: #DDD0C8;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}

.btn-book:hover {
  background-color: #444;
}

.price-tag {
  font-size: 1.1rem;
  color: #323232;
  font-weight: bold;
}



.restaurant-section {
  padding: 60px 20px;
}

.restaurant-container {
  display: flex;
  max-width: 1500px;
  height: 70vh;
  margin: auto;
  border-radius: 20px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.restaurant-left {
  flex: 1;
  background-color: #323232;
}

.restaurant-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.restaurant-right {
  flex: 2;
  padding: 40px;
  overflow-y: auto;
}

.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.menu-header h2 {
  font-size: 28px;
  color: #323232;
}

#category-select {
  padding: 10px 14px;
  font-size: 16px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.dish-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}

.dish-card {
  background: #f5f5f5;
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transform: scale(0.95);
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}

.dish-card img {
 width: 140px;
  border-radius: 10px;
  height: 120px;
  object-fit: cover;
  margin-bottom: 10px;
}

.dish-card h4 {
  font-size: 16px;
  color: #323232;
}

.dish-card.show {
  opacity: 1;
  transform: scale(1);
}

@media (max-width: 768px) {
  /* Section Heading */
  .section-heading {
    font-size: 2rem;
    padding: 1rem;
    text-align: center;
  }

  /* Scroll Section */
  .wrapper {
    height: auto;
  }

  .item {
    flex-direction: column;
    height: auto;
    position: relative;
  }

  .item_content,
  .item_media {
    width: 100%;
    height: auto;
  }

  .item_media {
    height: 250px;
  }

  .item_number {
    top: 1rem;
    left: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1rem;
  }

  .room-title {
    font-size: 1.5rem;
  }

  .room-desc {
    font-size: 0.95rem;
  }

  .room-tags .tag {
    font-size: 0.8rem;
    padding: 0.2rem 0.6rem;
  }

  .icon-box p {
    font-size: 0.75rem;
  }

  .btn-book {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
  }

  .price-tag {
    font-size: 1rem;
  }

  /* Restaurant Section */
  .restaurant-container {
    flex-direction: column;
    height: auto;
  }

  .restaurant-left,
  .restaurant-right {
    width: 100%;
    height: auto;
  }

  .restaurant-left img {
    height: 200px;
  }

  .restaurant-right {
    padding: 20px;
  }

  .menu-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .menu-header h2 {
    font-size: 1.5rem;
  }

  #category-select {
    font-size: 14px;
    padding: 8px 10px;
  }

  .dish-list {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 15px;
  }

  .dish-card {
    padding: 12px;
  }

  .dish-card img {
    width: 100%;
    height: auto;
  }

  .dish-card h4 {
    font-size: 14px;
  }
}

  


/* Amenities Section */
.amenities {
    padding: 1rem 0;
    background: linear-gradient(135deg, #f8f6f4, #f0ede8);
    position: relative;
  }
  .section-title animate-on-scroll{
    margin-top: -100px;
  }
  .amenities-grid {
    display: flex;
  flex-direction: row;
  gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
width: 1500px;
    margin-top: 2rem;
    margin-left: -180px;
  }
  
  .amenity-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    padding: 1rem 2rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    transform: translateY(50px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
 
    
    
  }
  
  .amenity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.8s ease-in-out;
    z-index: 1;
  }
  
  .amenity-card:hover::before {
    left: 100%;
  }
  
  .amenity-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.95);
  }
  
  .amenity-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #DDD0C8, #c9beb0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: #323232;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    z-index: 2;
    position: relative;
  }
  
  .amenity-card:hover .amenity-icon {
    transform: scale(1.1) rotate(10deg);
    background: linear-gradient(135deg, #323232, #555);
    color: #DDD0C8;
  }
  
  .amenity-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #323232;
    transition: color 0.3s ease;
    z-index: 2;
    position: relative;
  }
  
  .amenity-card:hover h3 {
    color: #000;
  }
  
  .amenity-card p {
    color: #666;
    line-height: 1.7;
    transition: color 0.3s ease;
    z-index: 2;
    position: relative;
  }
  
  .amenity-card:hover p {
    color: #555;
  }
/* Mobile & Tablet Responsive Adjustments */
@media (max-width: 1024px) {
  .amenities-grid {
    flex-direction: column;
    align-items: center;
    margin-left: 0;
    width: 100%;
    padding: 0 1rem;
  }

  .amenity-card {
    max-width: 95%;
    margin: 1rem auto;
  }

  .amenity-icon {
    width: 80px;
    height: 80px;
  }

  .amenity-card h3 {
    font-size: 1.3rem;
  }

  .amenity-card p {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .amenities {
    padding: 2rem 1rem;
  }

  .amenity-icon {
    width: 70px;
    height: 70px;
  }

  .amenity-card h3 {
    font-size: 1.1rem;
  }

  .amenity-card p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .amenities {
    padding: 1.5rem 1rem;
  }

  .amenity-card {
    padding: 1rem;
  }

  .amenity-icon {
    width: 60px;
    height: 60px;
  }

  .amenity-card h3 {
    font-size: 1rem;
  }

  .amenity-card p {
    font-size: 0.85rem;
    line-height: 1.5;
  }
}


 
/* ==============================
   1. Base & Font
   ============================== */
   @import url('https://fonts.googleapis.com/css2?family=Forum&display=swap');

   * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
   }
   body {
     font-family: 'Forum', sans-serif;
     background-color: #f9f6f2;
   }
   
   /* ==============================
      2. Grid Container
      ============================== */
   .grid-container {
     display: grid;
     height: 100vh;
     width: 100vw;
     grid-template-columns:
       3.125% 3.125% 6.25% 12.5% 25% 50%;
     grid-template-rows:
       50% 25% 12.5% 6.25% 6.25%;
     grid-template-areas:
       "box2 box2 box2 box2 box2 box1"
       "box4 box4 box4 box4 box3 box1"
       "box6 box6 box6 box5 box3 box1"
       "box8 box8 box7 box5 box3 box1"
       "box10 box9 box7 box5 box3 box1";
   }
   
   /* Assign areas */
   .box1  { grid-area: box1; }
   .box2  { grid-area: box2; }
   .box3  { grid-area: box3; }
   .box4  { grid-area: box4; }
   .box5  { grid-area: box5; }
   .box6  { grid-area: box6; }
   .box7  { grid-area: box7; }
   .box8  { grid-area: box8; }
   .box9  { grid-area: box9; }
   .box10 { grid-area: box10; }
   
   /* ==============================
      3. Shared Box Styles
      ============================== */
   .box {
     position: relative;
     overflow: hidden;
     border-radius: 12px;
     transition: transform 0.3s ease, box-shadow 0.3s ease;
   }
   .box img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.4s ease;
   }
   .box:hover {
     transform: translateY(-5px) scale(1.02);
     box-shadow: 0 14px 28px rgba(0,0,0,0.15);
   }
   .box:hover img {
     transform: scale(1.05);
   }
   
   /* ==============================
      4. Hero Box (box1)
      ============================== */

      .box7 {
        height: 100%;
        grid-column: span 3; /* Optional: full-width span */
      }
      
   .box1 {
     position: relative;
     overflow: hidden;
     border-radius: 16px;
     box-shadow: 0 12px 30px rgba(0,0,0,0.2);
     transition: transform 0.4s ease, box-shadow 0.4s ease;
   }
   .box1:hover {
     transform: scale(1.02);
     box-shadow: 0 20px 40px rgba(0,0,0,0.3);
   }
   .box1-bg {
     position: absolute;
     inset: 0;
     width: 100%;
     height: 100%;
     object-fit: cover;
     /* ❌ Removed dark filter */
     transition: transform 0.5s ease;
   }
   .box1:hover .box1-bg {
     transform: scale(1.05);
   }
   
   /* ==============================
      5. Responsive Breakpoint
      ============================== */
   @media (max-width: 1024px) {
     .grid-container {
       display: flex;
       flex-direction: column;
       height: auto;
     }
     .box, .box1 {
       height: 300px;
       margin: 20px 0;
       border-radius: 12px;
     }
     .box1 {
       box-shadow: 0 8px 20px rgba(0,0,0,0.15);
     }
   }
   
  

/* Contact Section */
.contact {
    padding: 8rem 0;
    background: linear-gradient(135deg, #DDD0C8, #d0c5b8);
    position: relative;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.contact-info {
    opacity: 0;
    transform: translateX(-80px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact-details {
    margin-top: 3rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 1.5rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.contact-item:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.5);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #323232, #555);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #DDD0C8;
    flex-shrink: 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(-5deg);
}

.contact-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #323232;
}

.contact-item p {
    color: #666;
    line-height: 1.6;
}

.contact-form {
    opacity: 0;
    transform: translateX(80px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.form {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.25rem;
    border: 2px solid rgba(50, 50, 50, 0.1);
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #323232;
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

/* Footer */

.footer {
    position: relative;
    background: url('/images/restarant.jpeg') center/cover no-repeat;
    color: #DDD0C8;
  }
  
  .footer-overlay {
    background-color: rgba(0, 0, 0, 0.85);
    padding: 5rem 0 3rem;
  }
  
  .footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(221, 208, 200, 0.3), transparent);
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
  }
  
  .footer-section h3,
  .footer-section h4 {
    margin-bottom: 1.5rem;
    color: #DDD0C8;
    font-size: 1.4rem;
  }
  
  .footer-section p {
    line-height: 1.7;
    color: rgba(221, 208, 200, 0.8);
  }
  
  .footer-section ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-section ul li {
    margin-bottom: 0.75rem;
    color: rgba(221, 208, 200, 0.8);
    font-size: 1rem;
  }
  
  .footer-section a {
    color: rgba(221, 208, 200, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
  }
  
  .footer-section a:hover {
    color: #DDD0C8;
    transform: translateX(5px);
  }
  
  .footer-section a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #DDD0C8;
    transition: width 0.3s ease;
  }
  
  .footer-section a:hover::after {
    width: 100%;
  }
  
  /* ✅ Centered Subscribe Section */
  .footer-section.subscribe {
    grid-column: 1 / -1;
    text-align: center;
  }
  
  .footer-section.subscribe p {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .footer-section.subscribe .subscribe-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 1rem;
    gap: 0.75rem;
  }
  
  .subscribe-form input {
    padding: 0.6rem 1rem;
    border-radius: 6px;
    border: none;
    font-family: 'Forum', serif;
    font-size: 1rem;
    background-color: #fefefe;
    width: 100%;
    max-width: 300px;
  }
  
  .subscribe-form button {
    padding: 0.6rem 1rem;
    background-color: #DDD0C8;
    color: #323232;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 160px;
  }
  
  .subscribe-form button:hover {
    background-color: #c7bcb3;
  }
  
  /* ✅ SOCIAL LINKS FIXED */
  .footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(221, 208, 200, 0.2);
   
  }
  
  .social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
  }
  
  .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(221, 208, 200, 0.15);
    border: 1px solid rgba(221, 208, 200, 0.25);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
  }
  
  .social-link img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    filter: brightness(3) invert(3);
    transition: transform 0.3s ease;
  }
  
  .social-link:hover {
    background-color: rgba(221, 208, 200, 0.3);
    transform: scale(1.1);
    border-color: #DDD0C8;
  }
  
  .social-link:hover img {
    transform: scale(1.2);
    filter: brightness(1.3);
  }
  
  
  .whatsapp-link {
    position: fixed;
    bottom: 100px;
    right: 35px;
    background-color: #25D366;
    padding: 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: transform 0.3s ease;
  }
  
  .whatsapp-link:hover {
    transform: scale(1.1);
  }
  
  .whatsapp-link img {
    width: 28px;
    height: 28px;
  }
  

  
/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #323232, #555);
    color: #DDD0C8;
    border: none;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.slide-in-left {
    opacity: 1 !important;
    transform: translateX(0) !important;
}

.slide-in-right {
    opacity: 1 !important;
    transform: translateX(0) !important;
}

/* Parallax Effect */
.parallax {
    transform: translateZ(0);
    will-change: transform;
}



.map-section {
    padding: 100px 20px;
    text-align: center;
    position: relative;
    background-image: url("images/bedroom-5664221_640.jpg"); /* ✅ Use your background image here */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
  }
  
  /* Optional overlay if bg is too bright */
  .map-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4); /* Darken overlay */
    z-index: 0;
  }
  
  /* Push content above overlay */
  .map-section * {
    position: relative;
    z-index: 1;
  }
  
  .map-title {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 30px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
  }
  
  .map-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  }
  
  /* Keep iframe map same */
  .map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
  }
  
  /* Pop-out tags (same as before) */
  .map-tags { /* unchanged */ }
  .tag { /* unchanged */ }
  .tag.show { /* unchanged */ }
  

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .room-card {
        grid-template-columns: 1fr;
        max-width: 600px;
        height: auto;
    }
    
    .amenities-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .rooms-stack {
        height: auto;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(221, 208, 200, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 3rem;
        transition: left 0.3s ease;
        gap: 2rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about,
    .rooms,
    .amenities,
    .contact {
        padding: 6rem 0;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .rooms-stack {
        height: auto;
        perspective: none;
    }
    
    .room-card {
        position: relative;
        transform: none;
        margin-bottom: 2rem;
        grid-template-columns: 1fr;
        max-width: none;
    }
    
    .room-content {
        padding: 2rem;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .amenity-card {
        padding: 2rem 1.5rem;
    }
    
    .form {
        padding: 2rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .about,
    .rooms,
    .amenities,
    .contact {
        padding: 4rem 0;
    }
    
    .room-content {
        padding: 1.5rem;
    }
    
    .form {
        padding: 1.5rem;
    }
    
    .amenity-card {
        padding: 1.5rem;
    }
    
    .amenity-icon {
        width: 80px;
        height: 80px;
    }
    
    .feature-icon,
    .contact-icon {
        width: 50px;
        height: 50px;
    }
}

/* Performance Optimizations */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Smooth Transitions */
.transition-smooth {
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #323232, #555);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #555, #323232);
}