/* Modern Cosmetology Page Styles - Glassmorphism + Organic Design */
/* Adapted from GynecologyPage.modern.css for cosmetology */

/* ========== CSS Variables ========== */
:root {
  --cs-primary: #C08497;
  --cs-primary-light: #E8C4D0;
  --cs-primary-dark: #9B6B7F;
  --cs-primary-soft: rgba(192, 132, 151, 0.08);
  --cs-primary-medium: rgba(192, 132, 151, 0.15);
  --cs-accent-gold: #D4A574;
  --cs-accent-rose: #E8A0B8;
  --cs-bg-warm: #FDF6F9;
  --cs-bg-cream: #FCF0F5;
  --cs-glass-bg: rgba(255, 255, 255, 0.7);
  --cs-glass-border: rgba(255, 255, 255, 0.5);
  --text-dark: #1A2E1A;
  --text-medium: #3D5A3D;
  --text-light: #6B8B6B;
  --shadow-soft: 0 4px 20px rgba(192, 132, 151, 0.08);
  --shadow-medium: 0 8px 32px rgba(192, 132, 151, 0.12);
  --shadow-strong: 0 20px 60px rgba(192, 132, 151, 0.15);
}

/* ========== Hero Section - Enhanced Organic Design ========== */
.specialty-hero {
  background: linear-gradient(135deg, #FDF6F9 0%, #F8ECF1 50%, #FDF6F9 100%);
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* Organic Background Shapes */
.specialty-hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(192, 132, 151, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse-organic 8s ease-in-out infinite;
}

.specialty-hero::after {
  content: '';
  position: absolute;
  bottom: -15%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse-organic 10s ease-in-out infinite reverse;
}

@keyframes pulse-organic {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

.specialty-hero__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Hero Visual - Enhanced Blob Design */
.specialty-hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero__image-wrapper {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}

.hero__blob-bg {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(192, 132, 151, 0.08) 0%, rgba(212, 165, 116, 0.06) 100%);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  animation: blob-morph 10s ease-in-out infinite;
}

@keyframes blob-morph {
  0%, 100% {
    border-radius: 55% 45% 40% 60% / 60% 55% 45% 40%;
  }
  25% {
    border-radius: 40% 60% 55% 45% / 45% 50% 50% 55%;
  }
  50% {
    border-radius: 50% 50% 45% 55% / 40% 55% 45% 60%;
  }
  75% {
    border-radius: 45% 55% 50% 50% / 55% 45% 55% 45%;
  }
}

.hero__deco-circle {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(192, 132, 151, 0.1), rgba(212, 165, 116, 0.1));
}

.hero__deco-circle--1 {
  width: 180px;
  height: 180px;
  top: -60px;
  right: -20px;
  animation: float-circle 7s ease-in-out infinite;
}

.hero__deco-circle--2 {
  width: 100px;
  height: 100px;
  bottom: -10px;
  left: -60px;
  animation: float-circle 5s ease-in-out infinite reverse;
}

.hero__deco-circle--3 {
  width: 60px;
  height: 60px;
  top: 40%;
  right: -70px;
  animation: float-circle 6s ease-in-out infinite;
}

@keyframes float-circle {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(10deg); }
}

.hero__image-container {
  position: relative;
  z-index: 1;
}

.hero__image-blob {
  border-radius: 55% 45% 40% 60% / 60% 55% 45% 40%;
  overflow: hidden;
  box-shadow: 
    0 30px 80px rgba(192, 132, 151, 0.3),
    0 10px 30px rgba(192, 132, 151, 0.1);
  animation: blob-morph 10s ease-in-out infinite;
  border: 8px solid white;
  position: relative;
  max-width: 100%;
}

.hero__image-blob::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(192, 132, 151, 0.05) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero__image-blob:hover .hero__img {
  transform: scale(1.05);
}

/* ========== Responsive Design ========== */
@media (max-width: 1024px) {
  .specialty-hero__content {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  
  .section-title {
    font-size: 36px;
  }
  
  .specialty-hero__features {
    max-width: 500px;
    margin: 0 auto 40px;
  }
  
  .specialty-hero__cta {
    justify-content: center;
  }
  
  .specialty-hero__visual {
    order: -1;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 2rem;
  }
  
  .hero__image-wrapper {
    max-width: 380px;
    margin: 0 auto;
  }
  
  .why-section__grid,
  .when-to-visit__grid,
  .reviews-section__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .specialty-hero {
    padding: 100px 0 60px;
    min-height: auto;
  }
  
  .specialty-hero__title {
    font-size: 32px;
  }
  
  .specialty-hero__subtitle {
    font-size: 16px;
  }
  
  .specialty-hero__features {
    grid-template-columns: 1fr;
  }
  
  .specialty-hero__cta {
    flex-direction: column;
    align-items: center;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .why-section__grid,
  .when-to-visit__grid,
  .reviews-section__grid {
    grid-template-columns: 1fr;
  }
  
  .services-section__includes ul {
    grid-template-columns: 1fr;
  }
  
  .hero__image-wrapper {
    max-width: 300px;
  }

  .hero__deco-circle--1 {
    width: 50px;
    height: 50px;
    top: -15px;
  }

  .hero__deco-circle--2 {
    width: 25px;
    height: 25px;
  }
}

/* ========== Animations on Scroll ========== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
