:root {
  --primary-color: #f7f5f0; /* warm earthy linen */
  --text-color: #3e3a35; /* deep rich charcoal brown */
  --accent-color: #BE8C8A; /* mauve / blush / pastel rust */
  --secondary-bg: #ebe7dd; /* warm taupe for alternating sections */
  --glass-bg: rgba(255, 255, 255, 0.45);
  --glass-border: rgba(255, 255, 255, 0.3);
  --shadow-soft: 0 15px 35px rgba(62, 58, 53, 0.08); /* earthy shadow */
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;
  --font-cursive: 'Herr Von Muellerhoff', cursive;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-color);
  background-color: var(--primary-color);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
}

.cursive {
  font-family: var(--font-cursive);
  font-weight: 400;
  letter-spacing: 0;
}

/* Photo Enhancement Class (improves color/brightness of less-than-perfect photos) */
.enhance-photo {
  filter: brightness(1.08) contrast(1.05) saturate(1.15);
  transition: var(--transition);
}

.enhance-photo:hover {
  filter: brightness(1.12) contrast(1.08) saturate(1.2);
}

/* Reusable Components */
.section {
  padding: 100px 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section.alt-bg {
  background-color: var(--secondary-bg);
}

.section-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  text-align: center;
  position: relative;
  padding-bottom: 10px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background-color: var(--accent-color);
}

.section-subtitle {
  font-size: 1.1rem;
  text-align: center;
  max-width: 800px;
  margin-bottom: 4rem;
  opacity: 0.8;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.grid-2.reverse .content-block {
  order: 2;
}

.grid-2.reverse .image-block {
  order: 1;
}

.image-block img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.content-block h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.content-block p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: #555;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  background-color: transparent;
  color: var(--text-color);
  border: 1px solid var(--text-color);
  border-radius: 4px;
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary {
  background-color: var(--accent-color);
  color: #fff;
  border-color: var(--accent-color);
}

.btn-primary:hover {
  background-color: #A57472; /* slightly deeper mauve */
  border-color: #A57472;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(190, 140, 138, 0.3);
}

.btn-outline:hover {
  background-color: var(--text-color);
  color: #fff;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: rgba(247, 245, 240, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 2px 10px rgba(62, 58, 53, 0.05);
  transition: var(--transition);
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--text-color);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
}

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

.book-nav-btn {
  background: var(--accent-color);
  color: #fff;
  padding: 10px 20px;
  border-radius: 4px;
}
.book-nav-btn:hover {
  background: #444444;
  color: #fff;
}

/* Hero Section (Live Wedding Painting Focus) */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 80px; /* offset header */
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(247, 245, 240, 0.45); /* Earthy warm light overlay */
  z-index: -1;
}

.hero-content {
  max-width: 900px;
  padding: 0 20px;
  animation: fadeInDown 1.5s ease;
}

.hero h1 {
  font-size: 4.5rem;
  margin-bottom: 20px;
  color: var(--text-color);
  text-shadow: 0 2px 10px rgba(255,255,255,0.8);
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 40px;
  font-weight: 300;
  color: #333;
  text-shadow: 0 1px 5px rgba(255,255,255,0.8);
}

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

/* Services Sections Overview */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  width: 100%;
  align-items: center;
}

.grid-2.reverse {
  direction: rtl;
}
.grid-2.reverse > * {
  direction: ltr;
}

.content-block h3 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.content-block p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.image-block {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.image-block img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Pillar 1: Wedding (Featured Again heavily) */
.wedding-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
  width: 100%;
  max-width: 1200px;
}
.feature-card {
  text-align: center;
  padding: 30px;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(62, 58, 53, 0.12);
}
.feature-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 20px;
}
.feature-card h4 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}
/* Gallery Carousel Section */
.carousel-container {
  overflow: hidden;
  margin-top: 40px;
  width: 100%;
  padding: 10px 0;
}
.carousel-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scroll 30s linear infinite;
}
.carousel-track:hover {
  animation-play-state: paused;
}
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 10px)); }
}
.gallery-item {
  flex: 0 0 280px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 5;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gallery-item:hover img {
  transform: scale(1.05);
}

/* Contact / Booking Section */
.booking {
  background-color: var(--text-color);
  color: #fff;
}
.booking .section-title::after {
  background-color: var(--accent-color);
}
.booking p {
  opacity: 0.8;
  max-width: 600px;
  text-align: center;
  margin-bottom: 40px;
}

.contact-form {
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
  color: #fff;
  border-radius: 4px;
  outline: none;
  transition: var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--accent-color);
  background: rgba(255,255,255,0.1);
}

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

/* Footer */
footer {
  text-align: center;
  padding: 30px;
  background-color: #1a1a1a;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in-section {
  opacity: 0;
  transform: translateY(40px);
  visibility: hidden;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, visibility;
}
.fade-in-section.is-visible {
  opacity: 1;
  transform: none;
  visibility: visible;
}

/* Responsive */
@media (max-width: 900px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .grid-2.reverse {
    direction: ltr;
  }
  .hero h1 {
    font-size: 3rem;
  }
  .wedding-features {
    grid-template-columns: 1fr;
  }
  nav ul {
    display: none; /* simple mobile nav approach for now */
  }
}
