:root {
  --primary-color: #fdf9f1; /* Warm ivory */
  --secondary-color: #f5edda; /* Pale champagne */
  --accent-color: #b8860b; /* Dark goldenrod */
  --accent-light: #d4af37; /* Bright gold */
  --text-dark: #2b1f0e; /* Deep warm brown */
  --text-light: #7a6540; /* Muted antique gold */
  --white: #ffffff;

  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --font-accent: 'Alex Brush', cursive;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--primary-color);
  color: var(--text-dark);
  line-height: 1.8;
  font-weight: 300;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  color: var(--text-dark);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* Header & Nav */
header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background-color: transparent;
  transition: all 0.4s ease;
}

header.scrolled {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 1rem 5%;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--white);
  transition: color 0.4s ease;
}

header.scrolled .logo {
  color: var(--text-dark);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links li a {
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  position: relative;
}

header.scrolled .nav-links li a {
  color: var(--text-dark);
}

.nav-links li a:hover {
  color: var(--accent-color);
}

.book-btn {
  background-color: transparent;
  border: 1px solid var(--white);
  color: var(--white);
  padding: 0.6rem 1.5rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s ease;
}

header.scrolled .book-btn {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.book-btn:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--white) !important;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3); /* Lighter overlay */
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  padding: 0 2rem;
  color: var(--white);
}

.hero-content .accent-text {
  font-family: var(--font-accent);
  font-size: 3.5rem;
  color: var(--accent-color);
  margin-bottom: -10px;
}

.hero-content h1 {
  font-size: 4.5rem;
  margin-bottom: 1.5rem;
  color: var(--white);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hero-content p {
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 2.5rem;
  text-transform: uppercase;
}

.hero-content .book-btn {
  padding: 1rem 2.5rem;
  font-size: 0.9rem;
  background-color: var(--accent-color);
  border: none;
}

.hero-content .book-btn:hover {
  background-color: #9a6f00;
}

/* Our Story Section */
.our-story-section {
  padding: 6rem 5%;
  background-color: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.our-story-content {
  text-align: left;
}

.our-story-content .accent-text {
  font-family: var(--font-accent);
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

.our-story-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
}

.our-story-content p {
  color: var(--text-light);
  font-size: 1.1rem;
}

.our-story-image {
  width: 100%;
}

.our-story-image img,
.our-story-image video {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  display: block;
  object-fit: cover;
  max-height: 500px;
}

.our-story-services {
  margin-top: 2rem;
}

.our-story-services h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.service-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 1.5rem;
}

.service-list li {
  font-size: 0.95rem;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-list li i {
  color: var(--accent-color);
  font-size: 0.8rem;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .our-story-section {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .our-story-content {
    text-align: center;
  }
}

/* Services Section */
.services-section {
  padding: 6rem 5%;
  background-color: var(--secondary-color);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--text-light);
  font-size: 1rem;
  letter-spacing: 1px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Image-based Service Cards */
.service-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .service-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .service-cards-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.service-card-img {
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .service-card-img img {
  transform: scale(1.05);
}

.service-card-body {
  padding: 1.8rem;
  text-align: center;
}

.service-card-body h3 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  color: var(--text-dark);
}

.service-card-body p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.service-card-btn {
  display: inline-block;
  padding: 0.6rem 1.6rem;
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.service-card-btn:hover {
  background-color: var(--accent-color);
  color: var(--white);
}

.service-category {
  background: var(--white);
  padding: 3rem 2.5rem;
  text-align: left;
  border-top: 4px solid var(--accent-color);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease;
}

.service-category:hover {
  transform: translateY(-5px);
}

.service-category h3 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: var(--text-dark);
  text-align: center;
}

.service-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1.2rem;
  border-bottom: 1px dashed #eaeaea;
  padding-bottom: 0.5rem;
}

.service-name {
  color: var(--text-dark);
  font-weight: 400;
  font-size: 1rem;
}

.service-price {
  color: var(--accent-color);
  font-weight: 500;
  font-size: 1.1rem;
}

.service-duration {
  font-size: 0.8rem;
  color: var(--text-light);
  display: block;
  margin-top: 0.2rem;
}

/* Testimonials Section */
.testimonials-section {
  padding: 6rem 5%;
  background-color: var(--secondary-color);
}

.rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1rem;
}

.rating-summary .stars {
  color: var(--accent-color);
  font-size: 1.3rem;
  letter-spacing: 2px;
}

.rating-summary span {
  color: var(--text-light);
  font-size: 0.95rem;
}

.testimonials-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  max-width: 1200px;
  margin: 3rem auto 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.review-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-4px);
}

.review-stars {
  color: var(--accent-color);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.review-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1rem;
  flex-shrink: 0;
}

.reviewer strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.reviewer span {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* Testimony Video */
.testimony-video-wrap {
  text-align: center;
}

.testimony-video-wrap .accent-text {
  font-family: var(--font-accent);
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 0.3rem;
}

.testimony-video-wrap h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.testimony-video-wrap video {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  display: block;
  max-height: 480px;
  object-fit: cover;
}

.testimony-book-btn {
  display: inline-block;
  margin-top: 2rem;
  background-color: var(--accent-color);
  color: var(--white);
  padding: 0.9rem 2.5rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: none;
  border-radius: 2px;
}

.testimony-book-btn:hover {
  background-color: #9a6f00;
}

@media (max-width: 900px) {
  .testimonials-layout {
    grid-template-columns: 1fr;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

/* Gallery Section Placeholder */

.gallery-section {
  padding: 5rem 5%;
  background-color: var(--white);
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

.gallery-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.gallery-img:hover {
  opacity: 0.8;
}

/* Location & Contact Section */
.contact-section {
  padding: 6rem 5%;
  background-color: var(--secondary-color);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info h2 {
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
  letter-spacing: 2px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.info-item i {
  color: var(--accent-color);
  font-size: 1.2rem;
  margin-right: 1.5rem;
  margin-top: 0.3rem;
}

.info-text h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.info-text p {
  color: var(--text-light);
}

.map-container {
  width: 100%;
  height: 450px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Footer */
footer {
  background-color: #222222; /* Dark minimalist footer */
  color: #dddddd;
  padding: 4rem 5% 2rem;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--white);
  letter-spacing: 2px;
}

.social-links {
  display: flex;
  gap: 1.5rem;
}

.social-links a {
  color: var(--white);
  font-size: 1.2rem;
}

.social-links a:hover {
  color: var(--accent-color);
}

.footer-bottom {
  margin-top: 3rem;
  border-top: 1px solid #333;
  padding-top: 2rem;
  font-size: 0.8rem;
  letter-spacing: 1px;
  color: #888;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-section {
    grid-template-columns: 1fr;
  }
  .hero-content h1 {
    font-size: 3rem;
  }
  .nav-links {
    display: none;
  }
}
