/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Colors */
  --primary: #a78bba;
  --primary-dark: #8b6fa0;
  --primary-light: #c5b3d4;
  --background: #fdfcfd;
  --foreground: #1a1a1a;
  --muted: #f5f3f6;
  --muted-foreground: #6b6b6b;
  --accent: #f8f5fa;
  --card: #ffffff;
  --border: #e8e4eb;

  /* Typography */
  --font-heading: "Playfair Display", serif;
  --font-body: "Inter", sans-serif;
}

body {
  font-family: var(--font-body);
  color: var(--foreground);
  background-color: var(--background);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

.icon {
  width: 24px;
  height: 24px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
}

.btn-primary {
  background-color: var(--primary);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: white;
  border-color: white;
}

.btn-secondary:hover {
  background-color: white;
  color: var(--foreground);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 600px;
  background-image: url("hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 5rem 1rem;
}

.hero-text {
  max-width: 48rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
}

.badge .icon {
  width: 20px;
  height: 20px;
  stroke: var(--primary);
}

.hero h1 {
  font-size: 3rem;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (min-width: 768px) {
  .hero {
    min-height: 700px;
  }

  .hero h1 {
    font-size: 4.5rem;
  }

  .hero-subtitle {
    font-size: 1.5rem;
  }
}

/* Services Section */
.services {
  padding: 5rem 0;
  background-color: var(--background);
}

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

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.section-header p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 42rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .section-header h2 {
    font-size: 3rem;
  }
}

/* Loyalty Card */
.loyalty-card {
  max-width: 80rem;
  margin: 0 auto 3rem;
  background-color: var(--primary);
  color: white;
  padding: 2rem;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.loyalty-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.loyalty-icon .icon {
  width: 2rem;
  height: 2rem;
  stroke: white;
}

.loyalty-text h3 {
  font-size: 1.875rem;
  margin-bottom: 0.5rem;
}

.loyalty-text p {
  font-size: 1.125rem;
  opacity: 0.9;
}

@media (min-width: 768px) {
  .loyalty-card {
    flex-direction: row;
    text-align: left;
  }

  .loyalty-text h3 {
    font-size: 2rem;
  }
}

/* Services List */
.services-list {
  max-width: 80rem;
  margin: 0 auto;
}

.service-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.service-header {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.service-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: rgba(167, 139, 186, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-icon .icon {
  stroke: var(--primary);
}

.service-info {
  flex: 1;
}

.service-info h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--foreground);
}

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

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price-label {
  color: var(--muted-foreground);
}

.price-value {
  color: var(--primary);
  font-weight: 600;
  font-size: 1.125rem;
}

@media (min-width: 640px) {
  .price-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .price-item {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Additional Services */
.additional-services {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.small-service-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.small-service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.small-service-card p {
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.small-service-card .price {
  color: var(--primary);
  font-weight: 600;
  font-size: 1.125rem;
}

@media (min-width: 768px) {
  .additional-services {
    grid-template-columns: repeat(2, 1fr);
  }

  .small-service-card.full-width {
    grid-column: 1 / -1;
  }
}

/* CTA Section */
.cta {
  padding: 5rem 0;
  background-color: var(--accent);
  text-align: center;
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--foreground);
}

.cta p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 42rem;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .cta h2 {
    font-size: 3rem;
  }

  .cta p {
    font-size: 1.25rem;
  }
}

/* Footer */
footer {
  background-color: var(--foreground);
  color: var(--background);
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
  margin-bottom: 3rem;
}

.footer-column h3 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-column p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Photos Page Styles */
.photos-header {
  background-color: var(--background);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
  background-color: rgba(253, 252, 253, 0.95);
}

.back-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  color: var(--foreground);
  text-decoration: none;
  border-radius: 0.5rem;
  transition: background-color 0.2s;
  font-weight: 500;
}

.back-button:hover {
  background-color: var(--muted);
}

.back-button .icon {
  width: 16px;
  height: 16px;
}

.photos-hero {
  padding: 4rem 0;
  background-color: var(--accent);
  text-align: center;
}

.photos-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.photos-hero p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 42rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .photos-hero h1 {
    font-size: 3.75rem;
  }

  .photos-hero p {
    font-size: 1.25rem;
  }
}

/* Gallery */
.gallery {
  padding: 4rem 0;
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  aspect-ratio: 1;
  background-color: var(--muted);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  display: flex;
  align-items: flex-end;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay p {
  color: white;
  padding: 1rem;
  font-weight: 500;
}

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

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}
