.about-img {
	width: 100%;
	max-width: 500px;
	border-radius: 20px;
	margin-bottom: 2rem;
	box-shadow: 0 4px 16px rgba(122,92,79,0.10);
}
.testimonial-img {
	width: 60px;
	height: 60px;
	object-fit: cover;
	border-radius: 50%;
	margin-bottom: 1rem;
	box-shadow: 0 2px 8px rgba(122,92,79,0.10);
}
.hero-img {

	width: 100%;
	max-width: 700px;
	border-radius: 20px;
	margin-bottom: 2rem;
	box-shadow: 0 8px 32px rgba(122,92,79,0.15);
}
/* Gallery Section */
.gallery {
	padding: 4rem 2rem;
	background: #fff;
	text-align: center;
}
.gallery h2 {
	font-family: 'Playfair Display', serif;
	font-size: 2.2rem;
	color: #7a5c4f;
	margin-bottom: 2rem;
}
.gallery-images {
	display: flex;
	gap: 1.5rem;
	justify-content: center;
	flex-wrap: wrap;
}
.gallery-images img {
	width: 220px;
	height: 150px;
	object-fit: cover;
	border-radius: 15px;
	box-shadow: 0 2px 8px rgba(122,92,79,0.10);
	transition: transform 0.2s;
}
.gallery-images img:hover {
	transform: scale(1.05);
}

/* Testimonials Section */
.testimonials {
	padding: 4rem 2rem;
	background: #e7d8c9;
	text-align: center;
}
.testimonials h2 {
	font-family: 'Playfair Display', serif;
	font-size: 2.2rem;
	color: #7a5c4f;
	margin-bottom: 2rem;
}
.testimonial-cards {
	display: flex;
	gap: 2rem;
	justify-content: center;
	flex-wrap: wrap;
}
.testimonial {
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 4px 16px rgba(122,92,79,0.08);
	padding: 2rem;
	width: 300px;
	text-align: center;
	font-size: 1.1rem;
	color: #5c4a3f;
	margin-bottom: 1rem;
}
.testimonial span {
	display: block;
	margin-top: 1rem;
	color: #7a5c4f;
	font-weight: 600;
}

/* Team Section */
.team {
	padding: 4rem 2rem;
	background: #fff;
	text-align: center;
}
.team h2 {
	font-family: 'Playfair Display', serif;
	font-size: 2.2rem;
	color: #7a5c4f;
	margin-bottom: 2rem;
}
.team-cards {
	display: flex;
	gap: 2rem;
	justify-content: center;
	flex-wrap: wrap;
}
.team-member {
	background: #e7d8c9;
	border-radius: 20px;
	box-shadow: 0 4px 16px rgba(122,92,79,0.08);
	padding: 2rem;
	width: 220px;
	text-align: center;
	transition: transform 0.2s, box-shadow 0.2s;
}
.team-member:hover {
	transform: translateY(-8px) scale(1.03);
	box-shadow: 0 8px 32px rgba(122,92,79,0.15);
}
.team-member img {
	width: 100px;
	height: 100px;
	object-fit: cover;
	border-radius: 50%;
	margin-bottom: 1rem;
}
.team-member h3 {
	font-family: 'Playfair Display', serif;
	font-size: 1.1rem;
	color: #7a5c4f;
	margin-bottom: 0.5rem;
}
.team-member p {
	color: #5c4a3f;
	font-size: 1rem;
}
body {
	margin: 0;
	font-family: 'Montserrat', Arial, sans-serif;
	background: #f7f6f3;
	color: #333;
}

header {
	background: #fff;
	box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.5rem 3rem;
}
.logo {
	font-family: 'Playfair Display', serif;
	font-size: 2rem;
	color: #7a5c4f;
	font-weight: 700;
}
.nav-links {
	list-style: none;
	display: flex;
	gap: 2rem;
}
.nav-links a {
	text-decoration: none;
	color: #7a5c4f;
	font-weight: 600;
	transition: color 0.2s;
}
.nav-links a:hover {
	color: #bfa18f;
}
/* Hero Section */
.hero {
  background: linear-gradient(120deg, #e7d8c9 0%, #f7f6f3 100%);
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  max-width: 1200px;
  width: 100%;
}

.hero-text {
  flex: 1;
  text-align: left;
}

.hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: #7a5c4f;
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  color: #5c4a3f;
  max-width: 500px;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 30px;
  object-fit: cover;
  box-shadow: 0 12px 32px rgba(122, 92, 79, 0.25);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Subtle hover effect */
.hero-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 16px 40px rgba(122, 92, 79, 0.35);
}

/* Responsive for Tablets and Mobiles */
@media (max-width: 992px) {
  .hero-content {
    flex-direction: column-reverse;
    text-align: center;
  }
  .hero-text {
    text-align: center;
  }
  .hero-text h1 {
    font-size: 2.4rem;
  }
  .hero-text p {
    font-size: 1.1rem;
    margin: 1rem auto 2rem;
  }
}

.btn {
	background: #7a5c4f;
	color: #fff;
	padding: 0.8rem 2rem;
	border: none;
	border-radius: 30px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	text-decoration: none;
	transition: background 0.2s;
}
.btn:hover {
	background: #bfa18f;
}
.services {
	padding: 4rem 2rem;
	background: #fff;
	text-align: center;
}
.services h2 {
	font-family: 'Playfair Display', serif;
	font-size: 2.5rem;
	color: #7a5c4f;
	margin-bottom: 2rem;
}
.service-cards {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  background: #f7f6f3;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(122,92,79,0.08);
  padding: 2rem;
  width: 300px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(122,92,79,0.15);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 1rem;
}

.about {
	padding: 4rem 2rem;
	background: #e7d8c9;
	text-align: center;
}
.about-content h2 {
	font-family: 'Playfair Display', serif;
	font-size: 2.2rem;
	color: #7a5c4f;
	margin-bottom: 1rem;
}
.about-content p {
	font-size: 1.1rem;
	color: #5c4a3f;
	max-width: 700px;
	margin: 0 auto;
}
footer {
	background: #7a5c4f;
	color: #fff;
	text-align: center;
	padding: 1.5rem 0;
	font-size: 1rem;
	letter-spacing: 1px;
}

/* ===== Base (Already Included) ===== */
/* Keep your existing CSS as it is */

/* ===== Responsive Styles ===== */

/* Tablets (<= 992px) */
@media (max-width: 992px) {
  .navbar {
    padding: 1rem 2rem;
  }
  .nav-links {
    gap: 1rem;
  }
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .hero-content p {
    font-size: 1.1rem;
  }
  .service-cards,
  .testimonial-cards,
  .team-cards,
  .gallery-images {
    justify-content: center;
  }
  .card,
  .testimonial,
  .team-member {
    width: 260px;
  }
}

/* Mobiles (<= 768px) */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-links {
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
  }
  .hero {
    padding: 3rem 1.5rem;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .hero-img {
    max-width: 100%;
  }
  .service-cards,
  .testimonial-cards,
  .team-cards,
  .gallery-images {
    flex-direction: column;
    align-items: center;
  }
  .card,
  .testimonial,
  .team-member,
  .gallery-images img {
    width: 100%;
    max-width: 320px;
  }
  .about-content p {
    font-size: 1rem;
    padding: 0 1rem;
  }
}

/* Small Mobiles (<= 480px) */
@media (max-width: 480px) {
  .navbar {
    padding: 1rem;
  }
  .logo {
    font-size: 1.5rem;
  }
  .hero-content h1 {
    font-size: 1.8rem;
  }
  .hero-content p {
    font-size: 0.95rem;
  }
  .btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }
  .services h2,
  .about-content h2,
  .gallery h2,
  .testimonials h2,
  .team h2 {
    font-size: 1.6rem;
  }
  .card,
  .testimonial,
  .team-member {
    padding: 1.5rem;
  }
}
/* Hamburger button */
/* Navbar default styles */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1rem;
  background-color: #fff;
  position: relative;
  z-index: 1000;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.nav-links li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}



/* Hamburger button */
.hamburger {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
}

/* MOBILE STYLES */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    background-color: #fff;
    display: none;
    gap: 0;
    border-top: 1px solid #ddd;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links li {
    text-align: center;
    border-bottom: 1px solid #eee;
    padding: 0.8rem 0;
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-links li a {
    display: block;
    width: 100%;
  }

  /* Push language button to bottom */
  #langBtn {
    display: block;
    width: 90%;
    margin: 0.5rem auto;
  }
}


/* Language globe icon */
.icon-btn {
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  display: none; /* show only on mobile */
}

/* Hamburger default hidden on desktop */
.hamburger {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
}

/* MOBILE STYLES */
@media (max-width: 768px) {
  .icon-btn {
    display: block;
  }

  .hamburger {
    display: block;
  }

  .navbar {
    position: relative;
    justify-content: space-between;
    padding: 0.5rem 1rem;
  }

  /* nav links hidden initially */
  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    flex-direction: column;
    background-color: #fff;
    display: none;
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid #ddd;
    z-index: 999;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links li {
    text-align: center;
    border-bottom: 1px solid #eee;
    padding: 0.8rem 0;
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-links li a {
    display: block;
    width: 100%;
  }

  /* Align globe and hamburger horizontally */
  #langBtn {
    position: relative;
    z-index: 1001;
  }
}

/* === Global Section Styling (Luxury Upgrade) === */
section {
  padding: 5rem 2rem;
  text-align: center;
  background: #fdfcf9; /* softer luxury background */
}

section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  margin-bottom: 2.5rem;
  color: #6b4c3b; /* deep luxury brown */
  position: relative;
  display: inline-block;
}

section h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #c8a97e, #7a5c4f);
  margin: 0.6rem auto 0;
  border-radius: 2px;
}

/* === OFFERS === */
.offer-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.offer {
  background: linear-gradient(145deg, #ffffff, #f9f6f2);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(122, 92, 79, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(200, 169, 126, 0.3);
}

.offer:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 12px 32px rgba(122, 92, 79, 0.2);
}

.offer h3 {
  margin-bottom: 0.8rem;
  color: #6b4c3b;
  font-size: 1.4rem;
  font-weight: 700;
}

.offer p {
  font-size: 1rem;
  color: #5c4a3f;
  margin-bottom: 1rem;
}

.offer .price {
  font-weight: bold;
  font-size: 1.4rem;
  color: #c8a97e;
}

/* === WHY US === */
.why-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.why-card {
  background: #fffdfc;
  padding: 1.8rem;
  border-radius: 16px;
  border: 1px solid rgba(200,169,126,0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 18px rgba(122,92,79,0.08);
}

.why-card:hover {
  transform: translateY(-6px);
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(122,92,79,0.15);
}

.why-card img {
  width: 70px;
  margin-bottom: 1.2rem;
  filter: drop-shadow(0 3px 6px rgba(0,0,0,0.1));
}

/* === MEMBERSHIP === */
.membership-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.plan {
  background: linear-gradient(160deg, #ffffff, #faf8f5);
  padding: 2.5rem;
  border-radius: 16px;
  flex: 1 1 260px;
  max-width: 320px;
  border: 1px solid rgba(200,169,126,0.3);
  box-shadow: 0 8px 28px rgba(122,92,79,0.1);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.plan:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 14px 36px rgba(122,92,79,0.2);
}

.plan h3 {
  color: #6b4c3b;
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
}

.plan span {
  display: block;
  margin-top: 1rem;
  font-size: 1.4rem;
  font-weight: bold;
  color: #c8a97e;
}

/* === BOOKING === */
.booking {
  background: url("https://images.unsplash.com/photo-1588167109957-4e7a3eac34d4?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
  color: #fff;
  text-align: center;
  border-radius: 20px;
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

.booking::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(47, 29, 19, 0.6);
  backdrop-filter: blur(2px);
  border-radius: 20px;
}

.booking-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.booking h2 {
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
  color: #fff;
}

.booking p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  color: #f9f9f9;
}

.booking .btn {
  background: linear-gradient(135deg, #c8a97e, #7a5c4f);
  color: #fff;
  padding: 0.9rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.booking .btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

/* === FAQ === */
.faq-items {
  max-width: 850px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  margin-bottom: 1.8rem;
  padding: 1.2rem;
  border-bottom: 1px solid rgba(200,169,126,0.3);
}

.faq-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  color: #6b4c3b;
  font-weight: 600;
}

/* === NEWSLETTER === */
.newsletter {
  background: linear-gradient(145deg, #faf8f5, #ffffff);
  padding: 3.5rem 2rem;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(122,92,79,0.1);
  border: 1px solid rgba(200,169,126,0.25);
}

.newsletter p {
  margin-bottom: 1rem;
  color: #5c4a3f;
  font-size: 1rem;
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.newsletter-form input {
  padding: 0.8rem 1rem;
  border: 1px solid #ddd;
  border-radius: 10px;
  min-width: 260px;
  flex: 1;
  font-size: 1rem;
}

.newsletter-form .btn {
  background: linear-gradient(135deg, #c8a97e, #7a5c4f);
  color: #fff;
  border: none;
  padding: 0.9rem 1.6rem;
  border-radius: 30px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.newsletter-form .btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}
/* === FOOTER === */
footer {
  background: #111;
  color: #ddd;
  padding: 3rem 2rem 1.5rem;
  font-family: "Poppins", sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-col h3,
.footer-col h4 {
  color: #f5c542; /* golden accent */
  margin-bottom: 1rem;
  font-family: "Playfair Display", serif;
}

.footer-col p,
.footer-col ul {
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul li a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #f5c542;
}

/* Social links */
.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  font-size: 1.2rem;
  color: #ddd;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #f5c542;
}

/* Footer bottom */
.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  font-size: 0.9rem;
  color: #aaa;
}
 .modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.5s;
  }

  /* Modal Content */
  .modal-content.luxurious {
    background: linear-gradient(135deg, #fdf6f0, #ffe8e0);
    border-radius: 20px;
    margin: 10% auto;
    padding: 2rem;
    width: 90%;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    animation: slideDown 0.5s ease-out;
    font-family: "Playfair Display", serif;
    color: #3e2c2a;
  }

  /* Close Button */
  .modal-content .close {
    color: #a76f5e;
    float: right;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
  }

  .modal-content .close:hover {
    color: #d18c6a;
  }

  /* Modal Typography */
  .modal-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .modal-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  .modal-content .btn {
    background: #a76f5e;
    color: #fff;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .modal-content .btn:hover {
    background: #d18c6a;
    transform: scale(1.05);
  }

  /* Animations */
  @keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
  }

  @keyframes slideDown {
    from {transform: translateY(-50px); opacity: 0;}
    to {transform: translateY(0); opacity: 1;}
  }

  @media (max-width: 768px) {
    .modal-content.luxurious {
      margin-top: 20%;
      padding: 1.5rem;
    }

    .modal-content h2 {
      font-size: 1.5rem;
    }

    .modal-content p {
      font-size: 1rem;
    }
  }

/* ========= REASONS SECTION (Luxury Spa Theme) ========= */
.reasons {
  background: linear-gradient(135deg, #faf8f5, #f2eee8);
  padding: 90px 20px;
  text-align: center;
  color: #2c2c2c;
  font-family: 'Playfair Display', serif;
}

.reasons h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 60px;
  background: linear-gradient(90deg, #b8860b, #daa520, #f5deb3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
}

.reasons h2::after {
  content: "";
  display: block;
  width: 90px;
  height: 3px;
  margin: 15px auto 0;
  background: linear-gradient(90deg, #b8860b, #daa520, #f5deb3);
  border-radius: 3px;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
}

.reason-card {
  background: #fff;
  border-radius: 18px;
  padding: 35px 25px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  border: 1px solid rgba(218,165,32,0.2);
  position: relative;
  overflow: hidden;
}

.reason-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(218,165,32,0.15) 0%, transparent 70%);
  transform: rotate(25deg);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.reason-card:hover::before {
  opacity: 1;
}

.reason-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 15px 35px rgba(184,134,11,0.25);
  border-color: #daa520;
}

.reason-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #b8860b;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}

.reason-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
  font-family: 'Montserrat', sans-serif;
}
