html, body {
  height: 100%;
}
/* Base Styles */
body {
  font-family: 'Lato', sans-serif;
  background-color: bisque;
  color: #333;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* Container */
.container {
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  border: 2px solid #b76e79;
  border-radius: 2px;
}

/* Navigation */
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-left {
  display: flex;
  align-items: center;
}

.logo-image {
  width: 80px;
  height: auto;
  margin-right: 10px;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: bold;
  color: #b76e79;
  text-decoration: none;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-item .nav-link {
  text-decoration: none;
  font-size: 16px;
  color: black;
  transition: color 0.3s ease;
  position: relative;
}

.nav-item .nav-link:hover {
  color: #b76e79;
}

.nav-item .nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #b76e79;
  transition: width 0.3s ease;
}

.nav-item .nav-link:hover::after {
  width: 100%;
}

/* Hamburger Menu (hidden by default) */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #333;
  border-radius: 2px;
}

/* Hero Section */
.hero-section {
  position: relative;
  width: 100%;
  height: 80vh;
  background-image: url('../images/hero.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(rgba(183,110,121,0.3), rgba(255,255,255,0.4));
  z-index: 1;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  text-align: left;
  background-color: rgba(255, 255, 255, 0.6);
  padding: 40px;
  border-radius: 12px;
}

.hero-heading {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  color: #b76e79;
  margin-bottom: 20px;
}

.hero-text {
  font-size: 20px;
  font-family: 'Lato', sans-serif;
  color: #333;
}

/* Info Section */
.info-section {
  display: flex;
  justify-content: space-around;
  background-color:white;
  padding: 60px 20px;
  flex-wrap: wrap;
  gap: 20px;
}

.info-box {
  width: 300px;
  text-align: center;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 20px;
}

.info-box img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
}

.info-box h3 {
  font-family: 'Playfair Display', serif;
  color: #b76e79;
  margin-bottom: 10px;
}

.info-box p {
  font-family: 'Lato', sans-serif;
  color: #555;
  font-size: 15px;
  text-align: justify;
}

/* Book Now Section */
.book-now-section {
  text-align: center;
  padding: 40px 20px;
  background-color: #fff5f2;
}

.book-now-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #b76e79;
  color: white;
  font-family: 'Lato', sans-serif;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.book-now-btn:hover {
  background-color: #a05c68;
  transform: scale(1.05);
}

.book-now-btn i {
  font-size: 22px;
}
.pricing-hero {
  width: 100%;
  height: 60vh;
  background-image: url('../images/backgroundivy.jpg'); /* your new background */
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-overlay {
  background: rgba(0, 0, 0, 0.5); /* dark overlay */
  padding: 40px;
  border-radius: 10px;
  text-align: center;
}

.pricing-overlay h1 {
  color: white;
  font-size: 48px;
  font-family: 'Playfair Display', serif;
}

.pricing-overlay p {
  color: white;
  font-size: 20px;
  margin-top: 10px;
}
/* Pricing Section */ 
.pricing-section { 
  display: flex; 
  gap: 30px; 
  padding: 60px 20px; 
  justify-content: space-between; 
  flex-wrap: wrap;
 } 
 .pricing-box { 
  background-color: #b76e79;
  color: white;
  padding: 30px;
  border-radius: 12px; 
  flex: 1; 
  min-width: 320px; 
  max-width: 450px; 
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
 } 
 .pricing-box h2 { 
  font-family: 'Playfair Display', serif; 
  margin-bottom: 10px; 
} 
.pricing-subtitle { 
  font-size: 15px; 
  margin-bottom: 20px; 
  font-style: italic; 
  color: #f8eaea; 
} 
/* Treatment blocks */ 
.treatment { 
  margin-bottom: 22px; 
} 
.treatment h4 { 
  font-size: 17px; 
  margin-bottom: 5px; 
  font-family: 'Playfair Display', serif;
 } 
 .treatment p { 
  font-size: 15px; 
  line-height: 1.5; 
  color: #fcecec; 
}
/* Centered Contact Box */
.contact-center {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
}

.contact-box {
  background: white;
  padding: 30px 40px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-align: center;
  max-width: 400px;
  width: 100%;
}

.contact-box h2 {
  font-family: 'Playfair Display', serif;
  color: #b76e79;
  margin-bottom: 20px;
}

.contact-box p {
  font-size: 18px;
  color: #444;
  margin-bottom: 15px;
}

.contact-box a {
  color: #b76e79;
  font-weight: bold;
  text-decoration: none;
}



/* Footer */
.site-footer {
  background-color: #b76e79;
  color: white;
  text-align: center;
  padding: 20px;
  font-family: 'Lato', sans-serif;
  margin-top: auto;
}




/* ===========================
   Responsive Design
   =========================== */

/* Tablets */
@media (max-width: 992px) {
  .hero-heading {
    font-size: 36px;
  }
  .hero-text {
    font-size: 18px;
  }
  .info-section {
    justify-content: center;

  }
}
#about-block {
  max-width: 1200px;   /* wider container */
  padding: 30px 40px;
  text-align: left;
  margin: 0 auto;
}

#about-block h3 {
  margin-bottom: 15px;
  font-family: 'Playfair Display', serif;
  color: #b76e79;
}

#about-block p {
  margin-bottom: 12px;
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}
.pricing-overlay h1 {
    font-size: 36px;
  }

  .pricing-overlay p {
    font-size: 18px;
  }

/* Mobile */
@media (max-width: 768px) {
  .nav-container {
    flex-direction: row;
    justify-content: space-between;
  }
.nav-menu {
  display: none;
  flex-direction: column;
  background: #fff5f2;
  position: absolute;
  top: 70px;
  right: 20px;
  width: 200px;          /* ✅ give it width */
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  z-index: 1000;         /* ✅ keep it above hero */
}

.nav-menu.active {
  display: flex;
}

.nav-item {
  margin-bottom: 15px;   /* ✅ spacing between links */
}

.nav-link {
  font-size: 18px;
  color: #333;
}
  .nav-menu {
    display: none;
    flex-direction: column;
    background: #fff5f2;
    position: absolute;
    top: 70px;
    right: 20px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }

  .nav-menu.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .hero-heading {
    font-size: 28px;
  }

  .hero-text {
    font-size: 16px;
  }

  .info-box {
    width: 90%;
  }
   /* Hero section height */
  .pricing-hero {
    height: 40vh;
  }

  .pricing-overlay {
    padding: 20px;
  }

  .pricing-overlay h1 {
    font-size: 28px;
  }

  .pricing-overlay p {
    font-size: 16px;
  }

  /* Pricing boxes full width */
  .pricing-box {
    width: 90%;
  }

  /* Reduce spacing */
  .pricing-section {
    padding: 30px 10px;
    gap: 20px;
  }
  .contact-center {
    padding: 40px 15px;
  }

  .contact-box {
    padding: 25px 20px;
  }

  .contact-box p {
    font-size: 16px;
  }
}