@import url('https://fonts.googleapis.com/css?family=Comfortaa');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Lato', sans-serif;
}

.site-header {
  border-bottom: 1px solid #ed1b2e;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo {
  max-height:80px; padding:5px;
}

.navbar {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.nav-menu {
  list-style: none;
  display: flex; text-transform:uppercase;
  justify-content: flex-end;
  align-items: center;
  gap:20px;
}

.nav-menu li {
  position: relative;
}

.nav-menu > li > a {
  text-decoration: none;
  color:#176bb2;
  font-size: 16px;
  padding: 2px 0;
  display: inline-block;
  position: relative;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
  border-bottom:2px solid #ed1b2e;
  border-top: 2px solid #ed1b2e;
}

.arrow {
  border: solid #fff;
  border-width: 0 1.5px 1.5px 0;
  display: inline-block;
  padding: 3px;
  margin-left: 5px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

/* Dropdown */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 200px;
  z-index: 999;
  list-style: none;
  padding: 0;
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu li a {
  color: #2c3e50;
  padding: 10px 13px;
  display: block;
  font-size: 13px;
  border-bottom: 1px solid #e1b756;
  text-decoration: none;
}

.dropdown-menu li:last-child a {
  border-bottom: none;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li a:hover {
  background-color: #f4f4f4;
}

/* Book Now Button */
.book-now-btn {
  background-color:#3b7bc3;
  color: white;
  padding: 5px 15px;
  text-decoration: none;
  font-size: 17px;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.book-now-btn:hover {
  background-color: #ed1b2e;
}
.menu-toggle .bar {
  height: 3px;
  width: 25px;
  background-color: #2c3e50;
 /* margin: 4px 15px 4px 20px;*/
  transition: 0.3s;
}
/* Responsive */
@media (max-width: 768px) {
  .nav-menu {
    flex-direction: column;
    align-items: flex-start;   gap:10px;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
  }

  .book-now-btn {
    margin-top: 10px;
  }
}

.menu-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  color: #176BB2;
  cursor: pointer;
}


@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
    width: 100%;
    flex-direction: column;
    padding: 10px 0;
	
 }


  .nav-menu.active {
    display: flex;
  }

  .nav-menu li {
    width: 100%;
  /*padding: 10px 20px;*/
  }

  .nav-menu li a {
    width: 100%; margin:0;
    display: block;
  }
    .dropdown-menu {
    position: static;
    width: 100%;
  }
}

/*Rooms*/
      .rooms-section {
            padding:20px;
            max-width:1400px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center !important;
            font-size: clamp(2.5rem, 5vw, 4rem);
            color: #1a202c;
            font-weight: 700;
            margin-bottom: 60px;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: #4299e1;
            border-radius: 2px;
        }

        .rooms-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 35px;
        }

        .room-card {
            background: white;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            border: 1px solid #e2e8f0;
            position: relative;
        }

        .room-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 25px 60px rgba(0,0,0,0.15);
        }

        .room-image {
            width: 100%;
            height: 240px;
            object-fit: cover;
            position: relative;
        }

        .room-badges {
            position: absolute;
            top: 20px;
            right: 20px;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .badge {
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            color: white;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }

        .pool-badge {
            background-color: #48bb78;
        }

        .ada-badge {
            background-color: #f56565;
        }

        .tub-badge {
            background-color: #805ad5;
            font-size: 0.75rem;
        }

        .room-content {
            padding: 35px 30px 30px;
        }

        .room-type {
            font-size: 1.35rem;
            font-weight: 700;
            color: #2d3748;
            margin-bottom: 8px;
            line-height: 1.3;
        }

        .room-subtitle {
            color: #718096;
            font-size: 1rem;
            margin-bottom: 25px;
            font-weight: 500;
        }

        .features-list {
            list-style: none;
            margin-bottom: 30px;
        }

        .features-list li {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 0;
            color: #4a5568;
            font-size:1rem;
            border-bottom: 1px solid #e2e8f0;
        }

        .features-list li:last-child {
            border-bottom: none;
        }

        .feature-icon {
            width: 22px;
            height: 22px;
            background-color: #bee3f8;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            color: #3182ce;
            font-weight: 600;
        }

        .room-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 20px;
            border-top: 2px solid #f7fafc;
        }

        .room-price {
            font-size: 2.2rem;
            font-weight: 800;
            color: #2b6cb0;
        }

        .price-small {
            font-size: 0.85rem;
            font-weight: 500;
            color: #718096;
            vertical-align: super;
        }

        .book-btn {
            padding: 14px 28px;
            background-color: #4299e1;
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(66, 153, 225, 0.3);
        }

        .book-btn:hover {
            background-color: #3182ce;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(66, 153, 225, 0.4);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .rooms-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .room-content {
                padding: 28px 25px 25px;
            }
            
            .room-footer {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .rooms-section {
                padding: 50px 15px;
            }
            
            .room-type {
                font-size: 1.25rem;
            }
        }
		
		/* amen*/

  h2 {
    text-align: center !important;
    font-size: 2.5rem;
    margin:40px 0 50px 0;
    background: linear-gradient(90deg, #00f5ff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .flip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
  }
  .flip-card {
    height: 260px;
    perspective: 1000px;
  }
  .flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
  }
  .flip-card:hover .flip-inner,
  .flip-card:focus-within .flip-inner {
    transform: rotateY(180deg);
  }
  .front, .back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 18px;
    padding: 24px; text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
  }
  .front {
    background: linear-gradient(135deg, #9391ff 0%, #003a80 100%);
  }
  .back {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    transform: rotateY(180deg);
  }
  .front i {
    font-size: 2.8rem;
    margin-bottom: 16px; color:#fff;
  }
  .front h3 {
    font-size: 1.35rem; color:#fff;
    margin: 0;
  }
  .back p {
    font-size:1.3rem; color:#fff;
    line-height: 1.6;
    text-align: center;
    margin: 0;
    padding: 0 10px;
  }
  @media (max-width: 480px) {
    .flip-card { height: 220px; }
    .front i { font-size: 2.4rem; }
    .front h3 { font-size: 1.2rem; }
    .back p { font-size: 0.9rem; }
  }
/*gallery*/

    .gallery-container {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 10px;
      padding: 20px;
    }

    .gallery-container img {
      width: 100%;
      height: auto;
      border-radius: 6px;
      cursor: pointer;
      transition: transform 0.3s ease;
    }

    .gallery-container img:hover {
      transform: scale(1.05);
    }

    /* Lightbox overlay */
    .lightbox {
      display: none;
      position: fixed;
      z-index: 1000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.9);
      justify-content: center;
      align-items: center;
      flex-direction: column;
    }

    .lightbox img {
      max-width: 90%;
      max-height: 80%;
      border-radius: 8px;
    }

    .close-btn {
      position: absolute;
      top: 20px;
      right: 30px;
      font-size: 40px;
      color: #fff;
      cursor: pointer;
    }

    /* Navigation arrows */
    .prev, .next {
      cursor: pointer;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      font-size: 50px;
      color: white;
      padding: 10px;
      user-select: none;
    }

    .prev { left: 30px; }
    .next { right: 30px; }

    .prev:hover, .next:hover {
      color: #ffcc00;
    }

    /* View More Button */
    .view-more {
      display: inline-block;
      margin: 20px auto 40px;
      padding: 12px 25px;
      font-size: 18px;
      font-weight: bold;
      background: linear-gradient(135deg, #ffcc00, #ff9900);
      color: #fff;
      border-radius: 30px;
      text-decoration: none;
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
      transition: 0.3s;
    }

    .view-more:hover {
      background: linear-gradient(135deg, #ff9900, #ff6600);
      box-shadow: 0 6px 15px rgba(0,0,0,0.3);
    }
	.faqlink {color:#00000; text-decoration:none;}
	.faqlink a{color:#0000FF; text-decoration:none;}
	.faqlink a:hover{color:#00000; text-decoration:none;}