/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background: #fff8f5;
  color: #333;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Special Offers Banner */
.special-banner {
  background: linear-gradient(135deg, #ff4d6d 0%, #d14b6e 100%);
  color: white;
  text-align: center;
  padding: 0.8rem;
  font-weight: 600;
  position: relative;
  overflow: hidden;
}

.special-banner::before {
  content: "✨";
  position: absolute;
  left: 10%;
  animation: sparkle 2s infinite;
}

.special-banner::after {
  content: "✨";
  position: absolute;
  right: 10%;
  animation: sparkle 2s infinite 1s;
}

@keyframes sparkle {
  0%, 100% { opacity: 0.3; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
}

/* Header */
header {
  background-color: #ffd1dc;
  padding: 1rem;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

header h1 {
  font-size: 2rem;
  color: #b68d40;
  margin-bottom: 0.5rem;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}

.trust-badge {
  background: rgba(255,255,255,0.9);
  padding: 0.3rem 0.6rem;
  border-radius: 15px;
  font-size: 0.8rem;
  color: #b68d40;
  font-weight: 600;
}

.desktop-nav {
  margin-top: 0.5rem;
}

.desktop-nav a {
  margin: 0 1rem;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 0.5rem;
  border-radius: 20px;
}

.desktop-nav a:hover, .desktop-nav a.active {
  color: #b68d40;
  background: rgba(182, 141, 64, 0.1);
}

#hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #b68d40;
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 1001;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

#mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, #ffd1dc 0%, #ffb6c1 100%);
  z-index: 1000;
  padding: 5rem 2rem 2rem;
  overflow-y: auto;
}

#mobile-nav.open {
  display: block;
}

.mobile-nav-content {
  max-width: 400px;
  margin: 0 auto;
}

.mobile-nav-header {
  text-align: center;
  margin-bottom: 2rem;
}

.mobile-nav-header h2 {
  color: #b68d40;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.nav-section {
  margin-bottom: 2rem;
}

.nav-section h3 {
  color: #d14b6e;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid rgba(209, 75, 110, 0.3);
  padding-bottom: 0.5rem;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding: 1rem;
  border-radius: 15px;
  background: rgba(255,255,255,0.7);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.nav-links a:hover {
  background: rgba(255,255,255,0.9);
  transform: translateX(5px);
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
  padding: 120px 20px;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="sparkle" patternUnits="userSpaceOnUse" width="20" height="20"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.3)"/></pattern></defs><rect width="100" height="100" fill="url(%23sparkle)"/></svg>');
  opacity: 0.3;
  z-index: 0;
}

.hero-overlay {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.hero h2 {
  font-size: 2.75rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button {
  background: #ff4d6d;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(255, 77, 109, 0.4);
  text-decoration: none;
  display: inline-block;
}

.cta-button:hover {
  background-color: #e0425f;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 77, 109, 0.6);
}

.cta-button.secondary {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.cta-button.secondary:hover {
  background: white;
  color: #d14b6e;
}

/* Photo Gallery */
#gallery {
  padding: 3rem 1rem;
  background: linear-gradient(135deg, #f8f0ff 0%, #fff0f5 100%);
  text-align: center;
}

#gallery h2 {
  font-size: 2rem;
  color: #b68d40;
  margin-bottom: 2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  aspect-ratio: 1;
  background: linear-gradient(45deg, #ff9a9e 0%, #fecfef 50%, #fecfef 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  transition: transform 0.3s ease;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item::before {
  content: "📸";
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

/* Services */
#services {
  padding: 3rem 1rem;
  text-align: center;
  background-color: #fff;
}

#services h2 {
  font-size: 2rem;
  color: #b68d40;
  margin-bottom: 2rem;
}

.services-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
}

.service {
  background: linear-gradient(145deg, #fff8f5, #f5f0eb);
  border-radius: 15px;
  padding: 2rem;
  width: 280px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(182, 141, 64, 0.1);
}

.service:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.service h3 {
  color: #d14b6e;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.service p {
  color: #666;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.service-duration {
  background: rgba(209, 75, 110, 0.1);
  color: #d14b6e;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.9rem;
  font-weight: 600;
}

/* Staff Section */
#staff {
  padding: 3rem 1rem;
  background: linear-gradient(135deg, #fff8f5 0%, #f5f0eb 100%);
  text-align: center;
}

#staff h2 {
  font-size: 2rem;
  color: #b68d40;
  margin-bottom: 2rem;
}

.staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.staff-member {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.staff-member:hover {
  transform: translateY(-5px);
}

.staff-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(45deg, #ff9a9e 0%, #fecfef 100%);
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.staff-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: #b68d40;
  margin-bottom: 0.5rem;
}

.staff-title {
  color: #d14b6e;
  font-weight: 500;
  margin-bottom: 1rem;
}

.staff-certs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.cert-badge {
  background: rgba(182, 141, 64, 0.1);
  color: #b68d40;
  padding: 0.3rem 0.6rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Menu */
#menu {
  background: linear-gradient(135deg, #fff0f5 0%, #fce4ec 100%);
  padding: 3rem 1rem;
  text-align: center;
}

#menu h2 {
  margin-bottom: 2rem;
  font-size: 2rem;
  color: #b68d40;
}

.menu-section {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  justify-content: center;
}

.menu-category {
  background: #fff;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  text-align: left;
  transition: all 0.3s ease;
  border: 1px solid rgba(209, 75, 110, 0.1);
}

.menu-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.menu-category h3 {
  color: #d14b6e;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  border-bottom: 3px solid #ffd1dc;
  padding-bottom: 0.5rem;
  text-align: center;
}

.menu-category ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-category li {
  padding: 0.6rem 0;
  border-bottom: 1px dotted #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
}

.menu-category li:last-child {
  border-bottom: none;
}

.menu-category li span {
  font-weight: 500;
  color: #333;
}

.menu-category li span:last-child {
  color: #d14b6e;
  font-weight: 600;
}

.service-time {
  font-size: 0.8rem;
  color: #666;
  font-style: italic;
}

/* Policies Section */
#policies {
  padding: 3rem 1rem;
  background: #fff;
  text-align: center;
}

#policies h2 {
  font-size: 2rem;
  color: #b68d40;
  margin-bottom: 2rem;
}

.policies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.policy-card {
  background: linear-gradient(145deg, #fff8f5, #f5f0eb);
  border-radius: 15px;
  padding: 2rem;
  text-align: left;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.policy-card h3 {
  color: #d14b6e;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.policy-card ul {
  list-style: none;
  padding: 0;
}

.policy-card li {
  padding: 0.5rem 0;
  color: #666;
  border-bottom: 1px dotted #eee;
}

.policy-card li:last-child {
  border-bottom: none;
}

/* Testimonials */
#testimonials {
  padding: 3rem 1rem;
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  text-align: center;
}

#testimonials h2 {
  font-size: 2rem;
  color: #b68d40;
  margin-bottom: 1rem;
}

.google-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.stars {
  color: #ffc107;
  font-size: 1.5rem;
}

.rating-text {
  color: #666;
  font-weight: 500;
}

.testimonials-list {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  padding: 1rem 0 2rem 0;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #b8860b #f0e6c8;
}

.testimonials-list::-webkit-scrollbar {
  height: 8px;
}

.testimonials-list::-webkit-scrollbar-track {
  background: #f0e6c8;
  border-radius: 4px;
}

.testimonials-list::-webkit-scrollbar-thumb {
  background-color: #b8860b;
  border-radius: 4px;
}

.testimonial {
  scroll-snap-align: start;
  flex: 0 0 300px;
  max-width: 300px;
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  text-align: left;
  border: 1px solid rgba(182, 141, 64, 0.1);
  position: relative;
}

.testimonial::before {
  content: "⭐⭐⭐⭐⭐";
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.8rem;
}

.testimonial p {
  font-style: italic;
  color: #555;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.testimonial-author {
  color: #d14b6e;
  font-weight: 600;
  font-size: 0.9rem;
}

.testimonial-platform {
  color: #666;
  font-size: 0.8rem;
  margin-top: 0.3rem;
}

/* Contact */
#contact {
  background: linear-gradient(135deg, #fcefee 0%, #f8e6e5 100%);
  padding: 3rem 1rem;
  text-align: center;
}

#contact h2 {
  font-size: 2rem;
  color: #b68d40;
  margin-bottom: 2rem;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.contact-card {
  background: white;
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.contact-card h3 {
  color: #d14b6e;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.contact-card p, .contact-card a {
  color: #666;
  margin: 0.5rem 0;
  text-decoration: none;
}

.contact-card a:hover {
  color: #d14b6e;
}

.payment-methods {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.payment-badge {
  background: rgba(209, 75, 110, 0.1);
  color: #d14b6e;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.9rem;
  font-weight: 500;
}

.map {
  margin: 2rem 0;
}

.map iframe {
  width: 100%;
  height: 350px;
  border: none;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.contact-form {
  max-width: 500px;
  margin: 2rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form h3 {
  color: #b68d40;
  margin-bottom: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 1rem;
  border-radius: 10px;
  border: 2px solid #e0e0e0;
  font-size: 1rem;
  width: 100%;
  transition: border-color 0.3s ease;
  font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #d14b6e;
}

.contact-form button {
  background: linear-gradient(135deg, #ff4d6d 0%, #d14b6e 100%);
  color: white;
  border: none;
  padding: 1rem;
  font-size: 1rem;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 77, 109, 0.4);
}

.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 77, 109, 0.6);
}

/* Footer */
footer {
  background: #ffd1dc;
  text-align: center;
  padding: 2rem 1rem;
  font-size: 1rem;
  color: #555;
  margin-top: 2rem;
}

/* Book Button */
.book-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, #ff4d6d 0%, #d14b6e 100%);
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  font-size: 1rem;
  z-index: 999;
  box-shadow: 0 8px 25px rgba(255, 77, 109, 0.4);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
}

.book-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 77, 109, 0.6);
}

/* Wait Time Indicator */
.wait-time {
  position: fixed;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.95);
  padding: 1rem;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  text-align: center;
  z-index: 998;
  max-width: 150px;
}

.wait-time h4 {
  color: #b68d40;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.wait-time-value {
  color: #d14b6e;
  font-size: 1.2rem;
  font-weight: 600;
}

/* Media Queries */
@media (max-width: 768px) {
  .special-banner {
    font-size: 0.9rem;
  }

  .trust-badges {
    justify-content: center;
    gap: 0.5rem;
  }

  .trust-badge {
    font-size: 0.7rem;
    padding: 0.2rem 0.4rem;
  }

  .desktop-nav {
    display: none;
  }

  #hamburger {
    display: block;
  }

  .hero h2 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-button {
    width: 200px;
  }

  .services-list {
    flex-direction: column;
    align-items: center;
  }

  .service {
    width: 100%;
    max-width: 350px;
  }

  .staff-grid,
  .policies-grid {
    grid-template-columns: 1fr;
  }

  .menu-section {
    grid-template-columns: 1fr;
  }

  .testimonials-list {
    justify-content: flex-start;
  }

  .testimonial {
    flex: 0 0 280px;
  }

  .contact-info {
    grid-template-columns: 1fr;
  }

  .book-btn {
    bottom: 15px;
    right: 15px;
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
  }

  .wait-time {
    display: none;
  }

  .mobile-nav-content {
    padding: 1rem;
  }

  .nav-links a {
    padding: 0.8rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 80px 15px;
  }

  .hero h2 {
    font-size: 1.75rem;
  }

  .service,
  .menu-category,
  .policy-card {
    padding: 1.5rem;
  }

  .testimonial {
    flex: 0 0 250px;
    padding: 1.5rem;
  }

  .contact-form {
    padding: 0 1rem;
  }
}

/* Accessibility Enhancements */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  body {
    background: #fff;
    color: #000;
  }
  
  .hero {
    background: #000;
    color: #fff;
  }
  
  .cta-button {
    background: #000;
    color: #fff;
    border: 2px solid #fff;
  }
}

/* Focus styles for keyboard navigation */
*:focus {
  outline: 3px solid #ff4d6d;
  outline-offset: 2px;
}

button:focus,
a:focus,
input:focus,
textarea:focus {
  outline: 3px solid #ff4d6d;
  outline-offset: 2px;
}

/* Add this to the end of your style.css file */

/* Lightbox Modal */
#lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  justify-content: center;
  align-items: center;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox-image {
  width: 100%;
  height: auto;
  max-height: 70vh;
  object-fit: contain;
  display: block;
}

.lightbox-info {
  padding: 1.5rem;
  text-align: center;
  background: #fff8f5;
}

.lightbox-title {
  font-size: 1.3rem;
  color: #b68d40;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.lightbox-description {
  color: #666;
  font-size: 1rem;
}

.lightbox-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  z-index: 10;
}

.lightbox-close:hover {
  background: white;
  transform: scale(1.1);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  color: #333;
  transition: all 0.3s ease;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: white;
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

@media (max-width: 768px) {
  .lightbox-content {
    margin: 1rem;
    max-width: calc(100vw - 2rem);
  }
  
  .lightbox-prev,
  .lightbox-next {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .lightbox-prev {
    left: 10px;
  }
  
  .lightbox-next {
    right: 10px;
  }
}
