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

:root {
  --primary-color: #ab133c;
  --secondary-color: #dd8c35;
  --text-dark: #2c3e50;
  --text-light: #ecf0f1;
  --background-light: #f8f9fa;
  --white: #ffffff;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Raleway', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
}

.subtitle-h1 {
  font-size: 3rem;
  font-weight: 400;
  color: var(--text-light);
}

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

/* Navigation */
.navbar {
  background: var(--white);
  box-shadow: var(--shadow);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  padding: 1rem 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--primary-color);
  font-weight: 700;
  letter-spacing: 1px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: var(--primary-color);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--text-light);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  margin-top: 60px;
}

.hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 2px;
  animation: fadeInDown 1s ease-out;
}

.subtitle {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  animation: fadeInDown 1.2s ease-out;
}

.tagline {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  animation: fadeInDown 1.4s ease-out;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--white);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: transform 0.3s, box-shadow 0.3s;
  animation: fadeInUp 1.6s ease-out;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

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

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* About Section */
.about {
  padding: 5rem 0;
  background: var(--background-light);
  text-align: center;
}

.about h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.about p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 1.5rem;
  line-height: 1.8;
}

.location {
  color: var(--secondary-color);
  font-weight: 600;
  font-size: 1.1rem !important;
}

/* Service Sections */
.service-section {
  padding: 5rem 0;
}

.service-section h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
  text-align: center;
}

.service-section h3 {
  font-size: 2rem;
  color: var(--text-dark);
  margin: 3rem 0 2rem;
  text-align: center;
}

.service-description {
  max-width: 900px;
  margin: 0 auto 3rem;
}

.service-description p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.service-list {
  list-style: none;
  margin-top: 1.5rem;
}

.service-list li {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
  line-height: 1.6;
}

.service-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.3rem;
}

.massage-section {
  background: var(--white);
}

.pilates-section {
  background: var(--background-light);
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  aspect-ratio: 1;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: filter 0.3s;
}

.gallery-item:hover img {
  filter: brightness(0.9);
}

/* Pricing Section */
.pricing-section {
  padding: 5rem 0;
  background: var(--white);
  text-align: center;
}

.pricing-section h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 3rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto 3rem;
}

.pricing-card {
  background: var(--background-light);
  padding: 2.5rem 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.pricing-card h3 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.price-range,
.price-main {
  font-size: 2.2rem;
  font-weight: bold;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.price-description {
  font-size: 1.1rem;
  color: var(--text-dark);
  font-style: italic;
}

.price-package {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 2px solid var(--primary-color);
}

.price-package p {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.package-price {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-color);
}

.pricing-details {
  max-width: 1000px;
  margin: 0 auto 3rem;
  text-align: left;
}

.pricing-category {
  margin-bottom: 3rem;
  padding: 2rem;
  background: var(--background-light);
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.pricing-category h3 {
  font-size: 2rem;
  color: var(--primary-color);
  margin: 0 0 1.5rem 0;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid var(--secondary-color);
  text-align: left;
}

.pricing-item {
  padding: 1rem 0;
}

.pricing-item:last-child {
  margin-bottom: 0;
}

.service-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.service-detail {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-left: 1.5rem;
}

.service-options {
  list-style: none;
  margin: 0.8rem 0 0 2.5rem;
  padding: 0;
}

.service-options li {
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.service-options li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
}

.price {
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 1.1em;
}

.custom-request {
  max-width: 800px;
  margin: 2rem auto 3rem;
  padding: 1.8rem;
  background: linear-gradient(135deg, rgba(171, 19, 60, 0.08), rgba(221, 140, 53, 0.08));
  border-radius: 12px;
  border-left: 4px solid var(--secondary-color);
  text-align: center;
}

.custom-request p {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.6;
  font-weight: 500;
}

.zone-info {
  max-width: 700px;
  margin: 3rem auto 0;
  padding: 1.8rem;
  background: linear-gradient(135deg, rgba(107, 142, 127, 0.08), rgba(212, 165, 116, 0.08));
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
  text-align: center;
}

.zone-info p {
  font-size: 1.05rem;
  margin: 0.7rem 0;
  color: var(--text-dark);
  line-height: 1.6;
}

.zone-info p:first-child {
  font-size: 1.1rem;
}

/* Contact Section */
.contact-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--text-light);
  text-align: center;
}

.contact-section h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--text-light);
}

.contact-section p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  margin: 3rem auto;
  max-width: 800px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
}

.contact-icon {
  font-size: 2.5rem;
}

.contact-label {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 0.3rem;
}

.contact-link {
  color: var(--text-light);
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 600;
  transition: opacity 0.3s;
}

.contact-link:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.contact-info {
  max-width: 600px;
  margin: 2rem auto;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

/* Footer */
footer {
  background: var(--text-dark);
  color: var(--text-light);
  text-align: center;
  padding: 2rem 0;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  align-items: center;
  justify-content: center;
}

.lightbox-content {
  display: block;
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
  animation: zoom 0.3s;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes zoom {
  from {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0;
  }
  to {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}

.close-lightbox {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
  z-index: 2001;
  background: none;
  border: none;
}

.close-lightbox:hover,
.close-lightbox:focus {
  color: #bbb;
}

.lightbox-prev,
.lightbox-next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 30px;
  transition: 0.3s;
  border: none;
  background-color: rgba(0, 0, 0, 0.5);
  user-select: none;
  z-index: 2001;
  border-radius: 0 5px 5px 0;
}

.lightbox-next {
  right: 0;
  border-radius: 5px 0 0 5px;
}

.lightbox-prev {
  left: 0;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.lightbox-caption {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  z-index: 2001;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .subtitle {
    font-size: 1.3rem;
  }
  
  .tagline {
    font-size: 1rem;
  }
  
  .nav-menu {
    gap: 1rem;
  }
  
  .nav-menu a {
    font-size: 0.9rem;
  }
  
  .logo {
    font-size: 1.6rem;
  }
  
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .gallery {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
  }
  
  .service-section h2,
  .about h2,
  .contact-section h2,
  .pricing-section h2 {
    font-size: 2rem;
  }
  
  .contact-details {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  
  .contact-item {
    flex-direction: column;
    text-align: center;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-category {
    padding: 1.5rem;
  }
  
  .pricing-category h3 {
    font-size: 1.6rem;
  }
  
  .service-name {
    font-size: 1.1rem;
  }
  
  .service-detail {
    font-size: 1rem;
    margin-left: 1rem;
  }
  
  .service-options {
    margin-left: 1.5rem;
  }
  
  .service-options li {
    font-size: 0.95rem;
  }
  
  .custom-request p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .nav-menu {
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
  }
  
  .navbar .container {
    flex-direction: column;
    gap: 1rem;
  }
  
  .gallery {
    grid-template-columns: 1fr;
  }
  
  .lightbox-prev,
  .lightbox-next {
    font-size: 24px;
    padding: 12px;
    background-color: rgba(0, 0, 0, 0.7);
  }
  
  .close-lightbox {
    font-size: 35px;
    right: 20px;
  }
  
  .lightbox-content {
    max-width: 95%;
    max-height: 70vh;
  }
  
  .lightbox-caption {
    width: 90%;
    font-size: 0.9rem;
  }
  
  .pricing-category {
    padding: 1rem;
  }
  
  .pricing-category h3 {
    font-size: 1.4rem;
  }
  
  .service-name {
    font-size: 1rem;
  }
  
  .service-detail {
    font-size: 0.95rem;
    margin-left: 0.5rem;
  }
  
  .service-options {
    margin-left: 1rem;
  }
  
  .service-options li {
    font-size: 0.9rem;
    padding-left: 1rem;
  }
  
  .custom-request {
    padding: 1.2rem;
  }
  
  .custom-request p {
    font-size: 0.95rem;
  }
}

