* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* -----------------------------
   GLOBAL STYLES
----------------------------- */

body {
  font-family: 'Inter', sans-serif;
  background: #f8f5f1;
  color: #2b2b2b;
  line-height: 1.7;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* -----------------------------
   HEADER
----------------------------- */

.header {
  background: rgba(252, 251, 249, 0.85);
  backdrop-filter: blur(10px);

  position: sticky;
  top: 0;
  z-index: 1000;

  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 1.2rem 0;
}

.logo {
  color: #c8a97e;
  font-size: 2rem;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: #2b2b2b;
  font-weight: 500;

  transition: 0.3s ease;
}

.nav-links a:hover {
  color: #c8a97e;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #2b2b2b;
}

/* -----------------------------
   HERO SECTION
----------------------------- */

.hero {
  padding: 7rem 0;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;

  animation: fadeUp 0.8s ease;
}

.hero h2 {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero p {
  margin-bottom: 2rem;
  color: #555;
  font-size: 1.05rem;
}

/* -----------------------------
   HERO IMAGE
----------------------------- */

.hero-image-wrapper {
  position: relative;
  width: 100%;
  border-radius: 28px;
  overflow: hidden;
}

.hero-image-wrapper img {
  width: 100%;
  display: block;

  border-radius: 28px;

  filter: brightness(0.96) contrast(1.02);

  transition: transform 0.5s ease;
}

.hero-image-wrapper img:hover {
  transform: scale(1.02);
}

/* Fade effect */
.hero-image-wrapper::after {
  content: "";

  position: absolute;
  bottom: 0;
  left: 0;

  width: 100%;
  height: 40%;

  background: linear-gradient(
    to bottom,
    rgba(248, 245, 241, 0) 0%,
    rgba(248, 245, 241, 1) 100%
  );
}

/* -----------------------------
   BUTTONS
----------------------------- */

.btn {
  display: inline-block;

  background: #c8a97e;
  color: white;

  padding: 1rem 2.2rem;

  border-radius: 999px;

  text-decoration: none;

  font-weight: 500;
  letter-spacing: 0.5px;

  transition: all 0.3s ease;

  border: none;
}

.btn:hover {
  transform: translateY(-3px);

  box-shadow:
    0 12px 25px rgba(0,0,0,0.12);
}

.btn-light {
  background: white;
  color: #2b2b2b;
}

.btn-blue {
  background: #2b2b2b;
  color: white;
}

.services-book-btn {
  margin-top: 1.8rem;
}

/* -----------------------------
   PAGE SECTIONS
----------------------------- */

.about,
.services-section,
.info-section {
  padding: 6rem 0;
}

.page-header {
  background: linear-gradient(
    135deg,
    #c8a97e,
    #b89568
  );

  color: white;

  padding: 5rem 0;

  text-align: center;
}

.page-header h2 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.05rem;
  opacity: 0.95;
}

/* -----------------------------
   CARDS
----------------------------- */

.card-grid,
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.card {
  background: rgba(255,255,255,0.75);

  backdrop-filter: blur(12px);

  padding: 2rem;

  border-radius: 24px;

  border: 1px solid rgba(255,255,255,0.4);

  box-shadow:
    0 10px 40px rgba(0,0,0,0.06);

  transition: all 0.35s ease;
}

.card:hover {
  transform: translateY(-8px);

  box-shadow:
    0 20px 50px rgba(0,0,0,0.1);
}

.card h3 {
  margin-bottom: 1rem;
  font-size: 2rem;
}

.card p {
  color: #555;
}

/* -----------------------------
   SERVICE CARDS
----------------------------- */

.service-card img {
  width: 100%;
  height: 220px;

  object-fit: cover;

  border-radius: 18px;

  margin-bottom: 1.5rem;

  transition: transform 0.4s ease;
}

.service-card:hover img {
  transform: scale(1.03);
}

.price {
  display: inline-block;

  margin-top: 1rem;

  font-weight: 600;

  color: #c8a97e;

  font-size: 1.1rem;
}

/* -----------------------------
   CTA SECTION
----------------------------- */

.booking,
.cta {
  background: #2b2b2b;
  color: white;

  padding: 6rem 0;

  text-align: center;
}

.cta h2,
.booking h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.cta p,
.booking p {
  margin-bottom: 2rem;
  color: rgba(255,255,255,0.8);
}

/* -----------------------------
   INFO PAGE
----------------------------- */

.hours {
  list-style: none;
}

.hours li {
  margin-bottom: 0.7rem;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.social-links a,
.map-link {
  color: #c8a97e;
  text-decoration: none;
  font-weight: 600;

  transition: 0.3s ease;
}

.social-links a:hover,
.map-link:hover {
  opacity: 0.7;
}

/* -----------------------------
   PRICING NOTE
----------------------------- */

.pricing-note {
  padding: 0 0 5rem;
  text-align: center;
}

.pricing-note p {
  color: #777;
  font-size: 0.95rem;
  font-style: italic;
}

/* -----------------------------
   FOOTER
----------------------------- */

.footer {
  background: #1f1f1f;
  color: rgba(255,255,255,0.8);

  padding: 2.5rem 0;

  text-align: center;

  font-size: 0.95rem;
}

/* -----------------------------
   ANIMATIONS
----------------------------- */

.card,
.page-header,
.cta,
.hero-content {
  animation: fadeUp 0.8s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* -----------------------------
   MOBILE RESPONSIVE
----------------------------- */

@media (max-width: 768px) {

  .hero-content,
  .card-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 4rem 0;
  }

  .hero h2 {
    font-size: 3rem;
  }

  .page-header h2 {
    font-size: 2.7rem;
  }

  .cta h2,
  .booking h2 {
    font-size: 2.5rem;
  }

  .nav-links {
    position: absolute;

    top: 80px;
    right: 20px;

    background: rgba(255,255,255,0.96);

    backdrop-filter: blur(10px);

    flex-direction: column;

    padding: 1.2rem;

    border-radius: 16px;

    display: none;

    box-shadow:
      0 10px 30px rgba(0,0,0,0.08);
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}