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

html {
  scroll-behavior: smooth;
}

/* Global */
body {
  font-family: "Poppins", sans-serif;
  color: #2f2f2f;
  background-color: #ffffff;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* Header / Navbar */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  padding: 25px 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(95, 75, 75, 0.42);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  padding: 15px 60px;
  position: relative;
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
  padding: 0;
}

.logo img {
  height: 85px;
  width: auto;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 28px;
  margin: 0;
  padding: 0;
}

.nav-links li {
  list-style: none;
}

.nav-links a {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 400;
  transition: 0.3s ease;
}

.nav-links a:hover {
  color: #D4AF37;
}

.book-btn {
  background-color: #c89b6d;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

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

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 34px;
  cursor: pointer;
}

/* Hero */
.hero {
  position: relative;
  min-height: 92vh;
  background: url("images/hero image2.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 90px 20px 60px;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(34, 25, 25, 0.34);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  color: #ffffff;
}

.hero-tagline {
  font-size: 0.95rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: #f2dfcf;
}

.hero-content h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: 4.4rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.hero-content h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.9rem;
  font-weight: 500;
  margin-bottom: 22px;
  color: #f4e8dd;
}

.hero-text {
  font-size: 1rem;
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto 35px;
  color: #f8f2ec;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 35px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: 0.3s ease;
}

.primary-btn {
  background-color: #c89b6d;
  color: #ffffff;
}

.primary-btn:hover {
  background-color: #b68658;
}

.secondary-btn {
  border: 1.5px solid #ffffff;
  color: #ffffff;
  background-color: transparent;
}

.secondary-btn:hover {
  background-color: #ffffff;
  color: #2f2f2f;
}

.btn:hover {
  transform: translateY(-2px);
}

/* Shared section styles */
.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: #2f2a2a;
  margin-bottom: 14px;
  text-align: left;
}

.section-subtitle {
  font-size: 1.05rem;
  color: #6f6662;
  max-width: 620px;
  line-height: 1.8;
  margin-bottom: 50px;
}

/* Services */
.services {
  padding: 90px 0;
  background: #f8f4f1;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.service-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
  transition: 0.35s ease;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.10);
}

.service-card img {
  width: 100%;
  height: 310px;
  object-fit: cover;
}

.service-card h3 {
  font-size: 1.7rem;
  font-weight: 700;
  color: #2f2a2a;
  margin: 22px 22px 12px;
  font-family: "Cormorant Garamond", serif;
}

.service-card p {
  font-size: 1rem;
  line-height: 1.8;
  color: #6f6662;
  margin: 0 22px 24px;
  min-height: 86px;
}

/* About */
.about {
  padding: 90px 0;
  background: #f8f4f1;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;
}

.about-image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.about-text {
  max-width: 540px;
}

.about-text h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: #2f2a2a;
  margin-bottom: 24px;
  line-height: 1.15;
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #6f6662;
  margin-bottom: 22px;
}

/* Gallery */
.gallery {
  padding: 90px 0;
  background: #f5f1ee;
  text-align: center;
}

.gallery .section-title {
  text-align: center;
  margin-bottom: 12px;
}

.gallery .section-subtitle {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 42px;
  font-size: 1rem;
  line-height: 1.8;
  color: #6f6662;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

.gallery-item img {
  width: 100%;
  height: 255px;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.35s ease;
}

.gallery-item img:hover {
  transform: scale(1.04);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 20, 20, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 20px;
}

.lightbox.show {
  display: flex;
}

.lightbox-img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: 12px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.35);
}

.close-lightbox {
  position: absolute;
  top: 25px;
  right: 35px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  font-weight: 300;
}

/* Booking */
.booking {
  padding: 90px 0;
  background: #f8f4f1;
}

.booking .section-title,
.booking .section-subtitle {
  text-align: center;
}

.booking .section-subtitle {
  max-width: 520px;
  margin: 0 auto 36px;
}

.booking-form {
  max-width: 560px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 18px;
}

.booking-form input,
.booking-form select {
  width: 100%;
  height: 56px;
  border: 1px solid #ddd6d1;
  border-radius: 30px;
  padding: 0 20px;
  font-size: 1rem;
  background: #ffffff;
  color: #2f2a2a;
  transition: 0.3s ease;
}

.booking-form input:focus,
.booking-form select:focus {
  outline: none;
  border-color: #c89b6d;
  box-shadow: 0 0 0 3px rgba(200, 155, 109, 0.12);
}

.booking-form select {
  appearance: none;
  cursor: pointer;
}

.booking-form button {
  width: 100%;
  border: none;
  height: 56px;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  margin-top: 6px;
}

/* Contact */
.contact {
  padding: 90px 0 50px;
  background: #f8f4f1;
}

.contact .section-title {
  margin-bottom: 14px;
}

.contact .section-subtitle {
  max-width: 520px;
  line-height: 1.8;
  color: #6f6662;
  margin-bottom: 34px;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: start;
}

.contact-info {
  padding-top: 10px;
}

.contact-info p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #2f2a2a;
  margin-bottom: 10px;
}

.contact-info strong {
  color: #2f2a2a;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #ddd6d1;
  border-radius: 20px;
  padding: 18px 20px;
  font-size: 1rem;
  background: #ffffff;
  color: #2f2a2a;
  transition: 0.3s ease;
}

.contact-form input {
  height: 58px;
}

.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #c89b6d;
  box-shadow: 0 0 0 3px rgba(200, 155, 109, 0.12);
}

.contact-form button {
  width: 100%;
  border: none;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

/* Footer */
.footer {
  background-color: #2f2a27;
  color: #f5eee8;
  padding: 70px 0 0;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
}

.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 18px;
  color: #e7c6a5;
}

.footer-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  margin-bottom: 15px;
  color: #ffffff;
}

.footer-col p {
  color: #ddd2ca;
  line-height: 1.9;
  font-size: 0.95rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #ddd2ca;
  transition: 0.3s ease;
}

.footer-links a:hover {
  color: #e7c6a5;
  padding-left: 4px;
}

.footer-bottom {
  margin-top: 40px;
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  font-size: 0.9rem;
  color: #cfc2b8;
}

.footer-bottom a {
  color: #e7c6a5;
  margin-left: 5px;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Testimonials */
.testimonials {
  padding: 90px 0;
  background: #f8f4f1;
  text-align: center;
}

.testimonials .section-title {
  text-align: center;
  margin-bottom: 12px;
}

.testimonials .section-subtitle {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 34px;
  color: #6f6662;
  line-height: 1.8;
}

.review-form-wrapper {
  max-width: 620px;
  margin: 0 auto 45px;
}

.review-form {
  background: #ffffff;
  padding: 28px;
  border-radius: 22px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
  display: grid;
  gap: 16px;
}

.review-form input,
.review-form textarea {
  width: 100%;
  border: 1px solid #ddd6d1;
  border-radius: 18px;
  padding: 16px 18px;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  background: #fff;
  color: #2f2a2a;
  transition: 0.3s ease;
}

.review-form textarea {
  min-height: 120px;
  resize: vertical;
}

.review-form input:focus,
.review-form textarea:focus {
  border-color: #c89b6d;
  box-shadow: 0 0 0 3px rgba(200, 155, 109, 0.12);
}

.review-form .btn {
  justify-self: center;
  min-width: 190px;
  border: none;
  width: auto;
}

#review-message {
  margin-top: 12px;
  text-align: center;
  color: #b68658;
  font-size: 0.95rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 20px;
  align-items: stretch;
}

.testimonial-card {
  width: 100%;
  min-height: 165px;
  background: #ffffff;
  padding: 20px 18px;
  border-radius: 24px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  transition: 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.10);
}

.testimonial-text,
.testimonial-card p {
  font-size: 0.96rem;
  line-height: 1.7;
  color: #5f5753;
  margin-bottom: 10px;
  font-style: italic;
}

.testimonial-card h3,
.testimonial-card h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  color: #2f2a2a;
  margin-bottom: 6px;
}

.testimonial-card span,
.testimonial-stars,
.stars {
  color: #c89b6d;
  font-size: 1rem;
  letter-spacing: 3px;
  margin-top: 0;
}

.btn-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.btn-wrapper .btn {
  min-width: 240px;
  text-align: center;
}

/* Tablet */
@media (max-width: 992px) {
  .hero {
    min-height: 85vh;
    padding: 100px 20px 60px;
    background-position: 55% center;
  }

  .hero-content h1 {
    font-size: 3.4rem;
  }

  .hero-content h2 {
    font-size: 1.6rem;
  }

  .hero-text {
    font-size: 0.98rem;
    max-width: 520px;
  }

  .services {
    padding: 75px 0;
  }

  .section-title {
    font-size: 2.7rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .service-card img {
    height: 280px;
  }

  .about {
    padding: 75px 0;
  }

  .about-container {
    gap: 40px;
  }

  .about-text h2 {
    font-size: 2.7rem;
  }

  .about-text p {
    font-size: 1rem;
  }

  .gallery {
    padding: 75px 0;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .gallery-item img {
    height: 240px;
  }

  .booking {
    padding: 75px 0;
  }

  .booking-form {
    max-width: 580px;
  }

  .contact {
    padding: 75px 0 50px;
  }

  .contact-container {
    gap: 35px;
  }

  .testimonials {
    padding: 75px 0;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .testimonial-card {
    min-height: 160px;
    padding: 20px 18px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .container {
    width: 92%;
    max-width: 100%;
  }

  .header {
    padding: 12px 0;
  }

  .navbar {
    padding: 10px 16px !important;
    min-height: 72px !important;
  }

  .logo img {
    height: 48px !important;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .book-btn {
    display: none;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    right: 16px;
    width: 220px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    background: rgba(61, 45, 45, 0.95);
    padding: 20px;
    border-radius: 14px;
    z-index: 1000;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    font-size: 0.9rem;
  }

  .hero {
    min-height: 78vh;
    padding: 90px 18px 50px;
    background-size: cover;
    background-position: 58% center;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
  }

  .hero-tagline {
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 14px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.1;
  }

  .hero-content h2 {
    font-size: 1.3rem;
    line-height: 1.4;
    margin-bottom: 16px;
  }

  .hero-text {
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 92%;
    margin: 0 auto 28px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero-buttons .btn {
    width: 220px;
    max-width: 100%;
    text-align: center;
    padding: 13px 24px;
  }

  .section-title {
    font-size: 2.3rem;
    text-align: center;
  }

  .section-subtitle {
    font-size: 0.98rem;
    text-align: center;
    margin: 0 auto 35px;
    max-width: 540px;
  }

  .services {
    padding: 65px 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .service-card img {
    height: 210px;
    object-fit: cover;
  }

  .service-card h3 {
    font-size: 1.5rem;
  }

  .service-card p {
    min-height: auto;
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .about {
    padding: 65px 0;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-image img {
    border-radius: 20px;
  }

  .about-text {
    max-width: 100%;
    text-align: center;
  }

  .about-text h2 {
    font-size: 2.3rem;
    margin-bottom: 18px;
  }

  .about-text p {
    font-size: 0.98rem;
    line-height: 1.8;
    margin-bottom: 18px;
  }

  .gallery {
    padding: 55px 0;
  }

  .gallery .section-subtitle {
    max-width: 90%;
    margin: 0 auto 24px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .gallery-item img {
    height: 260px;
    object-fit: cover;
  }

  .close-lightbox {
    top: 15px;
    right: 20px;
    font-size: 34px;
  }

  .booking {
    padding: 65px 0;
  }

  .booking .section-subtitle {
    margin-bottom: 28px;
  }

  .booking-form {
    max-width: 100%;
  }

  .booking-form input,
  .booking-form select,
  .booking-form button {
    height: 54px;
    font-size: 0.95rem;
  }

  .contact {
    padding: 65px 0 50px;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact .section-title,
  .contact .section-subtitle,
  .contact-info {
    text-align: center;
  }

  .contact-form input {
    height: 54px;
    font-size: 0.95rem;
  }

  .contact-form textarea {
    font-size: 0.95rem;
    min-height: 150px;
  }

  .footer {
    padding: 55px 0 0;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-links a:hover {
    padding-left: 0;
  }

  .footer-bottom {
    margin-top: 30px;
    padding: 18px 0;
  }

  .footer-bottom p {
    font-size: 0.85rem;
    line-height: 1.8;
  }

  .testimonials {
    padding: 65px 0;
  }

  .review-form-wrapper {
    margin-bottom: 35px;
    padding: 0 10px;
  }

  .review-form {
    padding: 20px;
  }

  .review-form input,
  .review-form textarea {
    font-size: 0.95rem;
    padding: 12px 14px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 20px;
    margin-bottom: 24px;
  }

  .testimonial-card {
    min-height: auto;
    padding: 20px 18px;
  }

  .testimonial-card h3,
  .testimonial-card h4 {
    font-size: 1.5rem;
  }

  .testimonial-text,
  .testimonial-card p {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .btn-wrapper {
    margin-top: 18px;
  }

  .btn-wrapper .btn {
    width: 100%;
    max-width: 280px;
  }
}
