/* Light Brown Theme Colors */
body {
  --color-bg-light: #f5f0eb;
  --color-text-primary: #4a3c32;
  --color-text-secondary: #6b5a4e;
  --color-accent-brown: #8b6b4d;
  --color-accent-light: #d4bea5;
  --color-overlay-bg: rgba(245, 240, 235, 0.95);
  --max-width: 1200px;
}

/* Base Reset and Typography */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background-color: var(--color-bg-light);
  color: var(--color-text-primary);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Navigation Bar Styling */
nav {
  background: var(--color-bg-light);
  color: var(--color-text-primary);
  padding: 0.75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  position: sticky;
  top: 0;
  z-index: 1000;
  user-select: none;
  border-bottom: 1px solid var(--color-accent-light);
}

nav .logo {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}


.logo-divider {
  height: 35px;
  width: 1px;
  background: var(--color-accent-light);
  position: relative;
}

.logo-divider::before,
.logo-divider::after {
  content: '';
  position: absolute;
  left: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-accent-brown);
  transform: translateX(-50%);
}

.logo-divider::before {
  top: 0;
}

.logo-divider::after {
  bottom: 0;
}

/* Hamburger button */
nav .hamburger {
  display: none;
  flex-direction: column;
  width: 28px;
  height: 24px;
  justify-content: space-between;
  cursor: pointer;
  order: 2; /* place hamburger on right */
}
nav .hamburger span {
  display: block;
  height: 3px;
  background: var(--color-text-primary);
  border-radius: 2px;
}

/* Desktop menu */
nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  order: 1;
}

nav ul li a {
  color: var(--color-text-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.3s ease;
  position: relative;
  padding: 0.2rem 0;
}

nav ul li a::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background: var(--color-accent-brown);
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s ease;
}

nav ul li a:hover,
nav ul li a:focus {
  color: var(--color-accent-brown);
  outline: none;
}

nav ul li a:hover::after,
nav ul li a:focus::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

/* Overlay menu for mobile */
.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: var(--color-overlay-bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  transition: opacity 0.3s ease;
}
.mobile-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}
.mobile-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}
.mobile-overlay ul {
  list-style: none;
  text-align: center;
  padding: 0;
  margin: 0;
}
.mobile-overlay ul li {
  margin: 2rem 0;
}
.mobile-overlay ul li a {
  color: var(--color-text-primary);
  font-size: 2.5rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.3s ease;
}
.mobile-overlay ul li a:hover,
.mobile-overlay ul li a:focus {
  color: var(--color-accent-brown);
  outline: none;
}

/* Responsive */
@media (max-width: 768px) {
  /* Hide desktop menu on mobile */
  nav ul {
    display: none;
  }
  /* Show hamburger on mobile */
  nav .hamburger {
    display: flex;
  }
  
  /* Enhanced mobile navigation */
  nav {
    padding: 1rem 1.5rem;
    box-shadow: 0 2px 10px rgba(139, 107, 77, 0.1);
    justify-content: flex-start; /* Just align logo to left */
    position: relative; /* For absolute positioning of hamburger */
  }
  
  /* Fix hamburger positioning - use absolute positioning */
  nav .hamburger {
    position: absolute !important;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
  }
  
  /* Ensure logo stays on left */
  nav .logo {
    order: 1;
    margin-right: 1rem;
  }
  
  .logo-text {
    font-size: 1.2rem;
    font-weight: 600;
  }
  
  .logo-divider {
    height: 28px;
  }
  
  .main-logo {
    height: 35px;
  }
  
  /* Improved hamburger button */
  nav .hamburger {
    width: 28px;
    height: 24px;
    padding: 2px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
  }
  
  nav .hamburger:hover {
    background-color: var(--color-accent-light);
  }
  
  nav .hamburger span {
    height: 2px;
    border-radius: 1px;
    transition: all 0.3s ease;
  }
  
  /* Enhanced mobile menu */
  .mobile-overlay {
    backdrop-filter: blur(10px);
    background: rgba(245, 240, 235, 0.98);
  }
  
  .mobile-overlay ul li {
    margin: 2rem 0;
  }
  
  .mobile-overlay ul li a {
    font-size: 2.2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
  }
  
  .mobile-overlay ul li a:hover {
    background-color: var(--color-accent-light);
    transform: translateX(10px);
  }
  
  /* Improved container spacing */
  .container {
    padding: 2rem 1.5rem;
    gap: 2.5rem;
  }
  
  /* Enhanced form styling */
  form.contact-form button {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
  }
  
  /* Footer improvements */
  .footer-logo-img {
    width: 70px;
  }
}

/* Main container */
.container {
  flex: 1;
  padding: 3rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  scroll-margin-top: 70px;
}

/* Content Divs */
section.content-section {
  background: #ffffff;
  padding: 2.5rem 3rem;
  border-radius: 0;
  box-shadow: 0 4px 15px rgba(139, 107, 77, 0.1);
  border: 1px solid var(--color-accent-light);
}
section.content-section h2 {
  margin-bottom: 1rem;
  color: var(--color-accent-brown);
  font-weight: 700;
  font-size: 1.8rem;
}
section.content-section p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
  font-style: italic;
}

/* Contact Form */
form.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

form.contact-form label {
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--color-text-primary);
}

form.contact-form input,
form.contact-form textarea,
form.contact-form select {
  padding: 0.85rem 1rem;
  border: 2px solid var(--color-accent-light);
  border-radius: 0 !important;
  font-size: 1.1rem;
  background: #ffffff;
  color: var(--color-text-primary);
  resize: vertical;
  transition: border-color 0.3s ease, background-color 0.3s ease;
  width: 100%;
}

form.contact-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%238b6b4d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  border-radius: 0 !important;
}

form.contact-form input:focus,
form.contact-form textarea:focus,
form.contact-form select:focus {
  border-color: var(--color-accent-brown);
  outline: none;
  background-color: #faf6f2;
}

form.contact-form input::placeholder,
form.contact-form textarea::placeholder,
form.contact-form select::placeholder {
  color: #999;
}

form.contact-form button {
  align-self: flex-start;
  width: 170px;
  padding: 0.8rem 1rem;
  border: none;
  background-color: var(--color-accent-brown);
  color: #ffffff;
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: 0 !important;
  cursor: pointer;
  box-shadow: 0 0 12px rgba(139, 107, 77, 0.3);
  transition: background-color 0.3s ease;
}

form.contact-form button:hover,
form.contact-form button:focus {
  background-color: #7a5d42;
  outline: none;
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  form.contact-form {
    gap: 1.25rem;
    padding: 0 0.5rem;
  }
  
  form.contact-form input,
  form.contact-form select {
    padding: 1rem 1.25rem;
    font-size: 1rem;
    border-radius: 8px !important;
  }
  
  form.contact-form label {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
  }
  
  form.contact-form button {
    width: 100%;
    padding: 1.25rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 8px !important;
    margin-top: 0.5rem;
  }
  
  /* Enhanced content sections */
  section.content-section {
    padding: 2rem 1.5rem;
    margin: 1rem 0.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(139, 107, 77, 0.08);
  }
  
  section.content-section h2 {
    font-size: 1.6rem;
    margin-bottom: 1.25rem;
    text-align: center;
  }
  
  section.content-section p {
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
  }
  
  /* Improved service checkboxes on mobile */
  .services-checkboxes {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  .service-checkbox {
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 0.5rem;
  }
  
  .service-name {
    font-size: 1rem;
    font-weight: 600;
  }
  
  .service-price-tag {
    font-size: 0.9rem;
    margin-top: 0.25rem;
  }
  
  .services-label {
    font-size: 1rem;
    margin-bottom: 1rem;
    text-align: center;
  }
}

/* Footer */
footer {
  background: var(--color-bg-light);
  color: var(--color-text-primary);
  padding: 2rem;
  text-align: center;
  border-top: 1px solid var(--color-accent-light);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  margin-bottom: 0.5rem;
}

.footer-logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
  display: block;
}

footer .social-icons {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 3rem;
}

footer .social-icons a {
  color: var(--color-text-primary);
  text-decoration: none;
  font-size: 1.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
  padding: 0.5rem;
}

footer .social-icons a:hover {
  color: var(--color-accent-brown);
}

/* Legal Links */
.legal-links {
  margin: 0.5rem 0;
  text-align: center;
}

.legal-link {
  color: var(--color-text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}

.legal-link:hover {
  color: var(--color-accent-brown);
  text-decoration: underline;
}

@media (max-width: 768px) {
  footer .social-icons {
    gap: 2.5rem;
  }
  
  .legal-links {
    margin: 0.75rem 0;
  }
  
  .legal-link {
    font-size: 0.85rem;
  }
}

/* Parallax Sections */
.parallax-section {
  position: relative;
  height: 100vh;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.parallax-content {
  background: rgba(245, 240, 235, 0.85);
  padding: 4rem;
  border-radius: 12px;
  max-width: 800px;
  margin: 0 2rem;
  text-align: center;
  backdrop-filter: blur(5px);
}

/* Special styling for hero section */
#home .parallax-content {
  background: none !important;
  backdrop-filter: none !important;
  padding: 0;
  max-width: none;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  border-radius: 0;
  margin: 0;
}

#home .parallax-content h2 {
  color: #ffffff;
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
  font-family: 'Dancing Script', cursive;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: 1px;
}

#home .parallax-content p {
  color: #ffffff;
  font-size: 1.5rem;
  margin-bottom: 2rem;
  font-weight: 400;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
  letter-spacing: 0.5px;
  font-style: italic;
}

#home .parallax-content .cta-button {
  display: inline-block;
  padding: 1.25rem 2.5rem;
  background-color: var(--color-accent-brown);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  letter-spacing: 1px;
}

#home .parallax-content .cta-button:hover {
  background-color: #7a5d42;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.hero-logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  text-align: center;
}

.hero-logo {
  max-width: 300px;
  height: auto;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.hero-logo-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-accent-brown), transparent);
  margin: 1rem 0;
  border-radius: 2px;
}

.hero-logo-text {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-text-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-description {
  font-size: 1.3rem;
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.6;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.parallax-content h2 {
  color: var(--color-accent-brown);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  font-family: 'Dancing Script', cursive;
}

/* Special styling for events divider section */
#events-divider .parallax-content h2 {
  color: var(--color-text-primary);
  text-shadow: none;
}

#events-divider .parallax-content p {
  color: var(--color-text-secondary);
  text-shadow: none;
}

.parallax-content p {
  color: var(--color-text-primary);
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.parallax-content .cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: var(--color-accent-brown);
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
}

.parallax-content .cta-button:hover {
  background-color: #7a5d42;
}

/* Content Sections */
.content-container {
  background: var(--color-bg-light);
  padding: 6rem 2rem;
}

.content-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(139, 107, 77, 0.1);
  border: 1px solid var(--color-accent-light);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card h3 {
  color: var(--color-accent-brown);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--color-text-secondary);
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .parallax-section {
    min-height: 40vh;
    padding: 2rem 1.5rem;
    background-attachment: scroll !important;
    background-position: center center !important;
  }
  
  .parallax-content {
    padding: 1.5rem 1rem;
    max-width: 100%;
    margin: 0 0.5rem;
  }
  
  #home .parallax-content {
    padding: 2rem 1rem;
    max-width: 100%;
    margin: 0 1rem;
  }
  
  #home .parallax-content h2 {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    line-height: 1.2;
    font-family: 'Dancing Script', cursive;
  }
  
  #home .parallax-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
  }
  
  .hero-logo {
    max-width: 180px;
    margin-bottom: 1.5rem;
  }
  
  .parallax-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    line-height: 1.3;
  }
  
  .parallax-content p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    max-width: 100%;
  }
  
  .parallax-content .cta-button {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    min-width: 180px;
  }
  
  /* Enhanced content container */
  .content-container {
    padding: 2rem 1rem;
  }
  
  .content-wrapper {
    max-width: 100%;
    padding: 0 0.5rem;
  }
  
  /* Improved features grid */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .feature-card {
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
  }
  
  .feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }
  
  .feature-card p {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  /* Enhanced services showcase */
  .services-showcase {
    margin-top: 3rem;
  }
  
  .services-showcase h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .services-intro {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    padding: 0 1rem;
  }
}

/* Services Showcase */
.services-showcase {
  margin-top: 4rem;
  padding-top: 4rem;
  position: relative;
}

.services-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: var(--color-accent-brown);
}

.services-showcase::after {
  content: '•';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-accent-brown);
  font-size: 1.5rem;
}

.services-showcase h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-text-primary);
  text-align: center;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.services-intro {
  font-size: 1.2rem;
  color: var(--color-text-secondary);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.service-item {
  display: flex;
  min-height: 500px;
  position: relative;
  background: #ffffff;
  box-shadow: 0 4px 15px rgba(139, 107, 77, 0.1);
  border: 1px solid var(--color-accent-light);
  overflow: hidden;
}

.service-item:nth-child(even) {
  flex-direction: row-reverse;
}

.service-image {
  flex: 1;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: transform 0.3s ease;
}

.service-item:hover .service-image {
  transform: scale(1.05);
}

.service-content {
  flex: 1;
  padding: 4rem;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 0;
  position: relative;
  width: 80px;
  height: 80px;
  background: var(--color-bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-accent-light);
  transition: transform 0.3s ease;
  align-self: center;
}

.service-item:hover .service-icon {
  transform: rotate(10deg);
}

.service-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
  text-align: center;
}

.service-price {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-accent-brown);
  text-align: center;
  margin-bottom: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--color-accent-light);
  border-radius: 25px;
  display: inline-block;
  margin: 0 auto 0.5rem;
}

.service-content h3::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--color-accent-brown);
  margin: 1rem auto;
  border-radius: 2px;
}

.service-content p {
  color: var(--color-text-secondary);
  font-size: 1.2rem;
  line-height: 1.8;
  margin: 2rem 0 2.5rem;
  text-align: center;
}

.service-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.service-content li {
  color: var(--color-text-secondary);
  font-size: 1.1rem;
  line-height: 1.6;
  padding-left: 2.8rem;
  position: relative;
  margin-bottom: 0.5rem;
}

.service-content li::before {
  content: "•";
  color: var(--color-accent-brown);
  position: absolute;
  left: 0;
  top: 0.1em;
  font-size: 1.2rem;
  font-weight: bold;
  background: var(--color-accent-light);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .service-item,
  .service-item:nth-child(even) {
    flex-direction: column;
    min-height: auto;
  }

  .service-image {
    height: 350px;
  }

  .service-content {
    padding: 3rem 2rem;
  }

  .service-content::before {
    left: 2rem;
  }

  .service-content h3 {
    font-size: 1.8rem;
  }

  .service-content p {
    font-size: 1.1rem;
  }

  .service-content ul {
    grid-template-columns: 1fr;
  }

  .services-showcase h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .service-item,
  .service-item:nth-child(even) {
    flex-direction: column;
    min-height: auto;
  }
  
  .service-image {
    height: 250px !important;
    border-radius: 12px 12px 0 0;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    position: relative;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    min-height: 250px !important;
  }
  
  .service-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30px;
    background: linear-gradient(transparent, rgba(0,0,0,0.1));
    border-radius: 0 0 12px 12px;
  }
  
  .service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .service-content {
    padding: 1.5rem;
    border-radius: 0 0 12px 12px;
  }
  
  .service-content::before {
    display: none;
  }
  
  .service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }
  
  .service-content h3::before {
    display: none;
  }
  
  .service-content h3::after {
    width: 50px;
    height: 2px;
    margin: 0.75rem auto;
  }
  
  .service-content .title-divider {
    display: none;
  }
  
  .services-showcase h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  
  .service-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
  }
  
  .service-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
  
  .service-content ul {
    text-align: left;
    padding-left: 0;
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .expanded-service-details ul {
    text-align: left;
  }
  
  .service-content li {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    line-height: 1.5;
    padding-left: 2.3rem;
  }
  
  .service-content li::before {
    width: 18px;
    height: 18px;
    font-size: 1rem;
    top: 0.1em;
  }
  
  /* Enhanced footer for mobile */
  footer {
    padding: 2rem 1.5rem;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
  
  .footer-logo {
    margin-bottom: 1rem;
  }
  
  .footer-logo-img {
    width: 80px;
    height: auto;
  }
  
  /* Logo banner mobile improvements */
  .logo-banner {
    padding: 1rem 0;
  }
  
  .logo-banner-content {
    padding: 0 1.5rem;
  }
  
  .banner-logo {
    max-width: 250px;
  }
}

/* Logo Styles */
.main-logo {
  height: 45px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Logo Text Styling */
.logo-text {
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 1px;
  color: var(--color-text-primary);
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .main-logo {
    height: 40px;
  }
  
  .logo-text {
    font-size: 1.4rem;
  }
}

.service-icon-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.social-icon {
  width: 24px;
  height: 24px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.social-icon:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .footer-logo-img {
    height: 65px;
  }
}

/* Remove the comparison styles */
.logo-container.comparison,
.main-logo.original {
  display: none;
}

/* Original font settings */
.logo-text {
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 1px;
  color: var(--color-text-primary);
}

@media (max-width: 768px) {
  .main-logo {
    height: 40px;
  }
  
  .logo-text {
    font-size: 1.4rem;
  }
}

/* About Page Styles */
.about-section {
  padding: 2rem 0;
  background: var(--color-bg-light);
}

.about-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4rem;
  overflow: hidden;
}

.about-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.7);
}

.about-hero-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(139, 107, 77, 0.8) 0%,
    rgba(212, 190, 165, 0.6) 100%
  );
}

.about-hero .section-title {
  position: relative;
  z-index: 2;
  color: white;
  font-size: 3.5rem;
  font-weight: 700;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.about-intro-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
  padding: 0 2rem;
}

.about-intro-content {
  order: 1;
}

.about-intro-image {
  order: 2;
  height: 400px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(139, 107, 77, 0.15);
}

.lead-text {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin-bottom: 2rem;
}

/* Owners Section Styles */
.owners-section {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #f8f4f0 0%, #f0e8e0 100%);
  margin: 4rem 0;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(139, 107, 77, 0.1);
}

.owners-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  position: relative;
}

.owners-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--color-accent-brown);
  border-radius: 2px;
}

.owners-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  margin-bottom: 3rem;
  font-style: italic;
}

.owners-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.owner-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(139, 107, 77, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.owner-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(139, 107, 77, 0.25);
}

.owner-image-container {
  position: relative;
  height: 300px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-accent-light) 0%, var(--color-accent-brown) 100%);
}

.owner-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.3s ease;
  background: linear-gradient(135deg, var(--color-accent-light) 0%, var(--color-accent-brown) 100%);
}

.owner-card:hover .owner-image {
  transform: scale(1.05);
}

.owner-content {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 400px;
}

.owner-header {
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.owner-signature-img {
  height: 40px;
  max-width: 120px;
}

.owner-card:hover .owner-signature-img {
  opacity: 1;
  transform: scale(1.05);
}

.owner-title {
  font-size: 1rem;
  color: var(--color-accent-brown);
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.owner-bio {
  color: var(--color-text-secondary);
  line-height: 1.7;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.owner-bio p {
  margin-bottom: 1.5rem;
}

.bio-divider {
  text-align: center;
  margin: 1.5rem 0;
  position: relative;
}

.bio-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-accent-light), transparent);
  transform: translateY(-50%);
}

.divider-icon {
  background: white;
  padding: 0 1rem;
  font-size: 1rem;
  position: relative;
  z-index: 1;
  color: var(--color-accent-brown);
  font-family: "Times New Roman", serif;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.owner-card:hover .divider-icon {
  opacity: 1;
}

.owner-signature {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-accent-light);
  font-style: italic;
  color: var(--color-text-primary);
}

.signature-text {
  display: block;
  margin-top: 0.5rem;
  font-weight: 600;
  color: var(--color-accent-brown);
  font-style: normal;
}

.xoxo-image {
  height: 30px;
  width: auto;
  margin: 0.5rem 0;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.owner-card:hover .xoxo-image {
  opacity: 1;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 4rem;
  padding: 0 2rem;
}

.about-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(139, 107, 77, 0.15);
  transition: transform 0.3s ease;
}

.about-card:hover {
  transform: translateY(-4px);
}

.about-card-image {
  height: 250px;
  background-size: cover;
  background-position: center;
}

.about-card-content {
  padding: 2rem;
}

.about-card h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--color-text-primary);
}

.about-card p {
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.values-list {
  list-style: none;
  margin-top: 1rem;
}

.values-list li {
  padding: 0.5rem 0;
  color: var(--color-text-secondary);
  position: relative;
  padding-left: 1.5rem;
}

.values-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-accent-brown);
  font-weight: bold;
}

@media (max-width: 1024px) {
  .about-intro-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-intro-image {
    order: 1;
    height: 300px;
  }

  .about-intro-content {
    order: 2;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .owners-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .about-hero {
    height: 40vh;
    min-height: 300px;
  }

  .about-hero .section-title {
    font-size: 2.5rem;
  }

  .about-intro-container {
    padding: 0 1rem;
  }

  .lead-text {
    font-size: 1.1rem;
  }

  .about-grid {
    padding: 0 1rem;
  }

  .about-card-image {
    height: 200px;
  }

  .about-card h2 {
    font-size: 1.3rem;
  }

  .owners-section {
    padding: 3rem 1rem;
    margin: 3rem 0;
  }

  .owners-title {
    font-size: 2rem;
  }

  .owners-subtitle {
    font-size: 1rem;
  }

  .owner-image-container {
    height: 250px;
  }

  .owner-content {
    padding: 1.5rem;
  }

  .owner-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .owner-signature-img {
    height: 30px;
    max-width: 100px;
    align-self: flex-end;
  }

  .owner-bio {
    font-size: 0.95rem;
  }
}

/* Gallery Page Styles */
.gallery-container {
  padding: 4rem 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.gallery-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--color-accent-brown);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.gallery-description {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--color-text-secondary);
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .gallery-container {
    padding: 2rem 1rem;
  }
  
  .gallery-title {
    font-size: 2rem;
  }
  
  .gallery-description {
    font-size: 1.1rem;
    padding: 0 1rem;
  }
}

/* Gallery Section Styles */
.gallery-section {
  margin-bottom: 4rem;
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.filter-button {
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--color-accent-brown);
  background: transparent;
  color: var(--color-accent-brown);
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.filter-button:hover {
  background: var(--color-accent-brown);
  color: white;
}

.filter-button.active {
  background: var(--color-accent-brown);
  color: white;
}

.gallery-category {
  display: none;
}

.gallery-category.active {
  display: block;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.02);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: white;
  padding: 1rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
  transform: translateY(0);
}

.gallery-item-title {
  font-weight: 600;
  font-size: 0.9rem;
}

.no-images {
  text-align: center;
  padding: 3rem;
  color: var(--color-text-light);
  font-style: italic;
}

.loading {
  text-align: center;
  padding: 3rem;
  color: var(--color-accent-brown);
  font-weight: 600;
}

.error {
  text-align: center;
  padding: 3rem;
  color: #e74c3c;
  background: #fdf2f2;
  border: 1px solid #fecaca;
  border-radius: 8px;
  margin: 2rem 0;
}

.gallery-section:first-child {
  margin-top: 2rem;
}

.gallery-section:last-child {
  margin-bottom: 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--color-text-primary);
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Make both section titles prominent */
.gallery-section .section-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-accent-brown);
  margin-bottom: 1.5rem;
}

.section-description {
  text-align: center;
  color: var(--color-text-secondary);
  font-size: 1.2rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.no-content {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--color-text-secondary);
  font-size: 1.1rem;
  font-style: italic;
}

@media (max-width: 768px) {
  .gallery-section {
    margin-bottom: 3rem;
  }
  
  .gallery-section:first-child {
    margin-top: 1rem;
  }
  
  .section-title {
    font-size: 2rem;
    margin-bottom: 0.75rem;
  }
  
  .gallery-section .section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .section-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
  }
}

/* Gallery Grid Styles */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  padding: 1rem;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(139, 107, 77, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: var(--color-background-light);
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 25px rgba(139, 107, 77, 0.2);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Modal Styles */
.modal img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  animation: modalImageScale 0.3s ease;
}

.modal iframe {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  animation: modalImageScale 0.3s ease;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(33, 33, 33, 0.95);
  z-index: 2000;
  padding: 2rem;
  cursor: pointer;
  backdrop-filter: blur(5px);
}

.modal.active {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: modalFadeIn 0.3s ease;
}

.loading {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--color-text-secondary);
  font-size: 1.1rem;
}

.error {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--color-error);
  font-size: 1.1rem;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes modalImageScale {
  from {
    transform: scale(0.95);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    gap: 1rem;
    padding: 0.5rem;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
  
  .modal {
    padding: 1rem;
  }
}

/* YouTube Gallery Styles */
.gallery-item.youtube-item {
  position: relative;
  aspect-ratio: 16/9;
}

.gallery-item.youtube-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item.youtube-item:hover img {
  transform: scale(1.1);
}

.youtube-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item.youtube-item:hover .youtube-overlay {
  opacity: 1;
}

.youtube-overlay .play-icon {
  color: white;
  font-size: 2rem;
  background: rgba(255, 0, 0, 0.8);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.gallery-item.youtube-item:hover .youtube-overlay .play-icon {
  transform: scale(1.1);
  background: rgba(255, 0, 0, 1);
}

/* Load More Button Styles */
.load-more-container {
  text-align: center;
  margin-top: 3rem;
}

.load-more-button {
  background: var(--color-accent-brown);
  color: white;
  border: 2px solid var(--color-accent-brown);
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.load-more-button:hover {
  background: transparent;
  color: var(--color-accent-brown);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(139, 107, 77, 0.2);
}

@media (max-width: 768px) {
  .load-more-container {
    margin-top: 2rem;
  }
  
  .load-more-button {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
  }
}

/* Logo Banner - New section between nav and main content */
.logo-banner {
  background: var(--color-bg-light);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-accent-light);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.logo-banner-content {
  max-width: 1200px;
  width: 100%;
  padding: 0 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-logo {
  max-width: 300px;
  height: auto;
  width: 100%;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.about-preview-image {
  max-width: 450px;
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(139, 107, 77, 0.10);
  display: block;
  margin: 0 auto;
  flex-shrink: 0;
}

/* Global CTA Button Styles */
.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: var(--color-accent-brown);
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: background-color 0.3s, transform 0.3s;
  box-shadow: 0 4px 16px rgba(139, 107, 77, 0.10);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 1.5rem;
}
.cta-button:hover, .cta-button:focus {
  background-color: #7a5d42;
  transform: translateY(-2px);
  color: #fff;
  text-decoration: none;
}

.cta-button.secondary {
  background-color: var(--color-accent-light);
  color: var(--color-accent-brown);
  border: 1.5px solid var(--color-accent-brown);
  box-shadow: 0 2px 8px rgba(139, 107, 77, 0.08);
}
.cta-button.secondary:hover, .cta-button.secondary:focus {
  background-color: var(--color-accent-brown);
  color: #fff;
}

/* About Preview Layout */
.about-preview-section {
  margin-bottom: 3rem;
}

.about-preview-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-text-primary);
  text-align: center;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-preview-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  text-align: left;
  margin-bottom: 3rem;
}

.about-preview-image {
  max-width: 450px;
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(139, 107, 77, 0.10);
  display: block;
  margin: 0 auto;
  flex-shrink: 0;
}

.about-preview-text {
  max-width: 420px;
}

.about-preview-text p {
  font-size: 1.25rem;
  color: var(--color-text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-weight: 400;
  letter-spacing: 0.1px;
}

@media (max-width: 768px) {
  .about-preview-section {
    padding: 1.5rem 0.5rem;
  }
  
  .about-preview-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  
  .about-preview-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .about-preview-text {
    max-width: 100%;
  }
}

/* Service Checkboxes */
.services-checkboxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.service-checkbox {
  display: flex;
  align-items: center;
  padding: 1.5rem;
  background: #ffffff;
  border: 2px solid var(--color-accent-light);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(139, 107, 77, 0.08);
}

.service-checkbox:hover {
  border-color: var(--color-accent-brown);
  box-shadow: 0 4px 16px rgba(139, 107, 77, 0.15);
  transform: translateY(-2px);
}

.service-checkbox input[type="checkbox"] {
  margin-right: 1rem;
  width: 20px;
  height: 20px;
  accent-color: var(--color-accent-brown);
}

.checkbox-label {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  flex: 1;
}

.service-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 0.25rem;
}

.service-price-tag {
  font-size: 0.9rem;
  color: var(--color-accent-brown);
  font-weight: 500;
}

.services-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
  display: block;
}

.logo-link {
  display: inline-block;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.logo-link:hover {
  opacity: 0.8;
}

.logo-link:focus {
  outline: 2px solid var(--color-accent-brown);
  outline-offset: 2px;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .services-checkboxes {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  .service-checkbox {
    padding: 1.25rem;
  }
  
  .service-name {
    font-size: 1rem;
  }
  
  .service-price-tag {
    font-size: 0.85rem;
  }
}

/* Expandable Services Container */
.expandable-services-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
}

.expandable-service-box {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(139, 107, 77, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  min-height: 200px;
}

.expandable-service-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(139, 107, 77, 0.25);
}

.expandable-service-box.expanded {
  border-color: var(--color-accent-brown);
  box-shadow: 0 20px 60px rgba(139, 107, 77, 0.3);
}

.service-box-header {
  padding: 2.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  position: relative;
  background: linear-gradient(135deg, #f8f4f0 0%, #f0e8e0 100%);
  min-height: 180px;
}

.service-box-icon {
  width: 160px;
  height: 160px;
  border-radius: 16px;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(139, 107, 77, 0.2);
  border: 3px solid rgba(255, 255, 255, 0.8);
  position: relative;
}

.service-box-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  z-index: 1;
}

.service-box-icon-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease, opacity 0.3s ease;
  position: relative;
  z-index: 2;
}


.expandable-service-box:hover .service-box-icon-img {
  transform: scale(1.08);
}

.expandable-service-box:hover .service-box-icon {
  box-shadow: 0 12px 32px rgba(139, 107, 77, 0.3);
  border-color: rgba(255, 255, 255, 0.95);
}

.service-box-content-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-box-title {
  font-size: 2.2rem;
  font-weight: 700;
  font-family: 'Dancing Script', cursive;
  color: var(--color-text-primary);
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.service-box-subtitle {
  font-size: 1rem;
  color: var(--color-text-secondary);
  font-weight: 500;
  margin: 0;
}

.service-box-description {
  font-size: 1rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
  margin-top: 0.5rem;
}

.expand-indicator {
  position: absolute;
  right: 2.5rem;
  top: 2.5rem;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--color-accent-brown);
  transition: transform 0.3s ease;
}

.expandable-service-box.expanded .expand-indicator {
  transform: rotate(180deg);
}

.external-link-indicator {
  position: absolute;
  right: 2.5rem;
  top: 2.5rem;
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-accent-brown);
  transition: transform 0.3s ease;
}

.expandable-service-box:hover .external-link-indicator {
  transform: translateX(4px);
}

.service-box-content {
  background: white;
  overflow: auto;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  max-height: 0;
  opacity: 0;
}

.service-box-content.expanded {
  max-height: 5000px;
  opacity: 1;
}

.expanded-service-item {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  padding: 2rem;
  border-bottom: 1px solid var(--color-accent-light);
}

.expanded-service-item:last-child {
  border-bottom: none;
}

.expanded-service-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(139, 107, 77, 0.15);
  transition: transform 0.3s ease, opacity 0.3s ease;
  cursor: pointer;
}

.expanded-service-image:hover {
  transform: scale(1.02);
  opacity: 0.9;
}

.expanded-service-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.expanded-service-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.expanded-service-icon {
  font-size: 1.5rem;
}

.expanded-service-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0;
}

.expanded-service-price {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  font-weight: 500;
  margin-left: auto;
}

.expanded-service-details p {
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

.expanded-service-details ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.expanded-service-details li {
  padding: 0.5rem 0;
  color: var(--color-text-secondary);
  position: relative;
  padding-left: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.expanded-service-details li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-accent-brown);
  font-weight: bold;
}

/* Events Box Special Styling */
.events-box {
  background: linear-gradient(135deg, #f0e8e0 0%, #e8d8c8 100%);
  color: var(--color-text-primary);
  border: 2px solid var(--color-accent-brown);
}

.events-box .service-box-header {
  background: transparent;
}

.events-box .service-box-title,
.events-box .service-box-subtitle,
.events-box .service-box-description {
  color: var(--color-text-primary);
}

.events-box .external-link-indicator {
  color: var(--color-accent-brown);
}

.events-box:hover {
  border-color: var(--color-accent-brown);
  background: linear-gradient(135deg, #f8f4f0 0%, #f0e8e0 100%);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .expanded-service-item {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .expanded-service-image {
    height: 150px;
  }
}

/* iPhone 12 Pro and smaller screens */
@media (max-width: 390px) {
  .service-box-title {
    font-size: 1.4rem;
  }
}

@media (max-width: 768px) {
  .expandable-services-container {
    margin-top: 2rem;
  }
  
  .service-box-header {
    padding: 2rem;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    min-height: auto;
  }
  
  .service-box-icon {
    width: 140px;
    height: 140px;
    margin-bottom: 0.5rem;
  }
  
  .service-box-content-wrapper {
    width: 100%;
    align-items: center;
  }
  
  .service-box-title {
    font-size: 1.6rem;
    text-align: center;
    font-family: 'Dancing Script', cursive;
    font-weight: 700;
    white-space: nowrap;
  }
  
  .service-box-subtitle {
    font-size: 1rem;
    text-align: center;
  }
  
  .service-box-description {
    font-size: 1rem;
    margin-top: 0.5rem;
    text-align: center;
  }
  
  .expand-indicator,
  .external-link-indicator {
    right: 1.5rem;
    top: 1.5rem;
    font-size: 1.8rem;
  }
  
  .expanded-service-item {
    padding: 1.5rem;
  }
  
  .expanded-service-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .expanded-service-price {
    margin-left: 0;
  }
  
  .expanded-service-details li {
    font-size: 0.9rem;
    line-height: 1.5;
    padding-left: 1.2rem;
  }
}

/* About Page Parallax Hero */
.about-hero-parallax {
  height: 80vh;
  min-height: 600px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-title-minimal {
  text-align: center;
  position: relative;
  z-index: 10;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: none;
  padding: 0;
}

.about-hero-title {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: white;
  margin: 0 0 1rem 0;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: 1px;
  line-height: 1.2;
}

/* Mobile Responsive for About Hero */
@media (max-width: 768px) {
  .about-hero-parallax {
    height: 60vh;
    min-height: 400px;
    background-attachment: scroll;
  }
  
  .about-hero-title {
    font-size: 2.5rem;
  }
  
  .about-hero-content {
    padding: 0 1rem;
  }
}

.hero-title-container {
  background: rgba(255, 255, 255, 0.95);
  padding: 2rem 3rem;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 600px;
  margin: 0 auto;
}

.about-hero-title {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0;
  text-align: center;
  letter-spacing: 1px;
  line-height: 1.2;
}

/* Mobile Responsive for Hero Title */
@media (max-width: 768px) {
  .hero-title-container {
    padding: 1.5rem 2rem;
    max-width: 90%;
    margin: 0 1rem;
  }
  
  .about-hero-title {
    font-size: 2.5rem;
  }
}

.hero-title-card {
  background: white;
  padding: 3rem 4rem;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.05);
  max-width: 500px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.hero-title-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent-brown) 0%, #d4bc9a 100%);
  border-radius: 8px 8px 0 0;
}

.about-hero-title {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0;
  text-align: center;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

/* Mobile Responsive for Hero Title */
@media (max-width: 768px) {
  .hero-title-card {
    padding: 2rem 2.5rem;
    max-width: 90%;
    margin: 0 1rem;
  }
  
  .about-hero-title {
    font-size: 2.8rem;
    margin: 0 0 0.75rem 0;
  }
  
  .title-accent-line {
    width: 60px;
    height: 2px;
  }
}

.hero-title-minimal {
  text-align: center;
  position: relative;
  z-index: 10;
  filter: blur(0);
}

.about-hero-title {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: white;
  margin: 0 0 1rem 0;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: 1px;
  line-height: 1.2;
}

.title-accent-line {
  width: 80px;
  height: 3px;
  background: var(--color-accent-brown);
  margin: 0 auto;
  border-radius: 2px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Image Modal Styles */
.image-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  height: 100svh; /* Small viewport height - newest standard */
  background-color: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  cursor: pointer;
  animation: modalFadeIn 0.3s ease;
  padding: 0;
  box-sizing: border-box;
  /* Aggressive iOS coverage */
  min-height: 100vh;
  min-height: 100dvh;
  min-height: 100svh;
  /* Force full coverage */
  bottom: 0;
  right: 0;
}

.image-modal > div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.image-modal img {
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  animation: modalImageScale 0.3s ease;
}

.image-modal img.horizontal {
  max-width: 50vw;
  max-height: 90vh;
}

.image-modal img.vertical {
  max-width: 35vw;
  max-height: 70vh;
}

.image-modal button {
  position: fixed;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  transition: background-color 0.3s ease;
  z-index: 10001;
}

.image-modal button:hover {
  background: rgba(255, 255, 255, 1);
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes modalImageScale {
  from {
    transform: scale(0.95);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .image-modal {
    /* Aggressive iOS Safari fixes for latest design */
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    height: 100svh;
    min-height: 100vh;
    min-height: 100dvh;
    min-height: 100svh;
    padding: 0;
    /* Force coverage beyond viewport */
    margin: 0;
    border: none;
    outline: none;
  }
  
  .image-modal img.horizontal {
    max-width: 85vw;
    max-height: 90vh;
    max-height: 90dvh;
  }
  
  .image-modal img.vertical {
    max-width: 70vw;
    max-height: 85vh;
    max-height: 85dvh;
  }
  
  .image-modal button {
    position: fixed;
    top: calc(15px + env(safe-area-inset-top));
    right: calc(15px + env(safe-area-inset-right));
    width: 35px;
    height: 35px;
    font-size: 18px;
  }
}

/* iOS Safari specific fixes */
@supports (-webkit-touch-callout: none) {
  .image-modal {
    height: -webkit-fill-available;
    min-height: -webkit-fill-available;
  }
  
  @media (max-width: 768px) {
    .image-modal {
      height: -webkit-fill-available;
      min-height: -webkit-fill-available;
    }
  }
}

/* Events Page Styles */
.events-hero {
  background: linear-gradient(135deg, var(--color-accent-brown) 0%, #d4bc9a 100%);
  padding: 6rem 2rem;
  text-align: center;
  color: white;
}

.events-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.events-hero-title {
  font-family: 'Dancing Script', cursive;
  font-size: 4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.events-hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.events-hero-description {
  font-size: 1.2rem;
  line-height: 1.6;
  opacity: 0.9;
}

.events-calendar-section {
  padding: 4rem 2rem;
  background: var(--color-bg-light);
}

.calendar-title {
  font-family: 'Dancing Script', cursive;
  font-size: 3rem;
  font-weight: 600;
  color: var(--color-text-primary);
  text-align: center;
  margin-bottom: 1rem;
}

.calendar-description {
  font-size: 1.2rem;
  color: var(--color-text-secondary);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.calendar-container {
  max-width: 1000px;
  margin: 0 auto;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.calendar-cta {
  text-align: center;
  margin-top: 3rem;
}

.calendar-cta p {
  font-size: 1.2rem;
  color: var(--color-text-secondary);
  margin-bottom: 1rem;
}

/* Terms & Conditions Page Styles */
.terms-hero {
  background: linear-gradient(135deg, var(--color-accent-brown) 0%, #d4bc9a 100%);
  padding: 6rem 2rem;
  text-align: center;
  color: white;
}

.terms-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.terms-hero-title {
  font-family: 'Dancing Script', cursive;
  font-size: 4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.terms-hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.terms-hero-description {
  font-size: 1.2rem;
  line-height: 1.6;
  opacity: 0.9;
}

.terms-content-section {
  padding: 4rem 2rem;
  background: var(--color-bg-light);
}

.terms-content {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.terms-section {
  margin-bottom: 2.5rem;
}

.terms-section:last-child {
  margin-bottom: 0;
}

.terms-section h2 {
  color: var(--color-accent-brown);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--color-accent-light);
  padding-bottom: 0.5rem;
}

.terms-section p {
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.terms-section ul {
  margin: 1rem 0;
  padding-left: 2rem;
}

.terms-section li {
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.contact-info {
  background: var(--color-accent-light);
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  color: var(--color-text-primary) !important;
  margin-top: 1rem;
}

/* Mobile Responsive for Terms Page */
@media (max-width: 768px) {
  .terms-hero {
    padding: 4rem 1rem;
  }
  
  .terms-hero-title {
    font-size: 2.5rem;
  }
  
  .terms-hero-subtitle {
    font-size: 1.2rem;
  }
  
  .terms-hero-description {
    font-size: 1rem;
  }
  
  .terms-content-section {
    padding: 2rem 1rem;
  }
  
  .terms-content {
    padding: 2rem 1.5rem;
    border-radius: 8px;
  }
  
  .terms-section h2 {
    font-size: 1.5rem;
  }
  
  .terms-section p,
  .terms-section li {
    font-size: 1rem;
  }
  
  .contact-info {
    padding: 1rem;
    font-size: 0.95rem;
  }
}

/* Mobile Responsive for Events Page */
@media (max-width: 768px) {
  .events-hero {
    padding: 4rem 1rem;
  }
  
  .events-hero-title {
    font-size: 2.5rem;
  }
  
  .events-hero-subtitle {
    font-size: 1.2rem;
  }
  
  .events-hero-description {
    font-size: 1rem;
  }
  
  .events-calendar-section {
    padding: 2rem 1rem;
  }
  
  .calendar-title {
    font-size: 2.2rem;
  }
  
  .calendar-description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .calendar-container {
    border-radius: 8px;
  }
}

/* Accessibility Improvements */

/* Skip to Content Link */
.skip-to-content {
  position: absolute;
  top: -9999px;
  left: -9999px;
  background: var(--color-accent-brown);
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: 600;
  z-index: 9999;
  border-radius: 0 0 4px 0;
  clip: rect(0, 0, 0, 0);
}

.skip-to-content:focus {
  position: fixed;
  top: 20px;
  left: 20px;
  clip: auto;
  outline: 3px solid var(--color-accent-light);
  outline-offset: 0;
}

/* Screen Reader Only Content */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Enhanced Focus Styles */
*:focus {
  outline: 2px solid var(--color-accent-brown);
  outline-offset: 2px;
}

/* Removed outline for mouse users, keep for keyboard users */
*:focus:not(:focus-visible) {
  outline: none;
}

/* Ensure buttons and interactive elements are keyboard accessible */
button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 2px solid var(--color-accent-brown);
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  *:focus {
    outline: 3px solid;
    outline-offset: 3px;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}