/* ============================================
   GLOW & BALANCE - Premium Beauty Studio
   CSS Stylesheet - Pure HTML + CSS
   ============================================ */

/* CSS Variables */
:root {
  --primary-color: #F5E6E8;
  --secondary-color: #E8D5D5;
  --accent-color: #D4A5A5;
  --accent-dark: #C48A8A;
  --background-color: #FFFFFF;
  --text-color: #333333;
  --text-light: #666666;
  --card-background: #E8D5D5;
  --card-hover: #F0D9D9;
  --gradient-primary: linear-gradient(135deg, #F5E6E8 0%, #E8D5D5 100%);
  --gradient-accent: linear-gradient(135deg, #D4A5A5 0%, #C48A8A 100%);
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--background-color);
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.3;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

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

/* ============================================
   CSS Animations
   ============================================ */

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

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

@keyframes wave {
  0% {
    transform: translateX(0) translateZ(0) scaleY(1);
  }
  50% {
    transform: translateX(-25%) translateZ(0) scaleY(0.55);
  }
  100% {
    transform: translateX(-50%) translateZ(0) scaleY(1);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.section {
  animation: fadeIn 1s ease-in-out;
  padding: 80px 0;
}

.section-alt {
  background: var(--gradient-primary);
}

/* ============================================
   Header / Navigation
   ============================================ */

.header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  z-index: 1000;
  padding: 15px 0;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.nav-logo h1 {
  font-size: 1.5rem;
  color: var(--accent-dark);
}

.nav-menu {
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav-menu a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-color);
  position: relative;
}

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

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  overflow: hidden;
  padding: 100px 20px;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  z-index: 10;
  animation: fadeIn 1.2s ease-in-out;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--text-color);
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-decoration {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  overflow: hidden;
}

.wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 100%;
  background: var(--background-color);
  border-radius: 40% 40% 0 0;
  animation: wave 15s linear infinite;
}

.wave-1 {
  opacity: 0.3;
  animation-duration: 12s;
}

.wave-2 {
  opacity: 0.5;
  animation-duration: 10s;
  bottom: 10px;
}

.wave-3 {
  opacity: 0.7;
  animation-duration: 8s;
  bottom: 20px;
}

/* ============================================
   Buttons
   ============================================ */

.button {
  display: inline-block;
  padding: 15px 35px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.button-primary {
  background: var(--gradient-accent);
  color: white;
  border: none;
}

.button-primary:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-hover);
}

.button-secondary {
  background: transparent;
  color: var(--accent-dark);
  border: 2px solid var(--accent-color);
}

.button-secondary:hover {
  background: var(--accent-color);
  color: white;
  transform: scale(1.05);
}

/* ============================================
   Section Titles
   ============================================ */

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 50px;
  color: var(--text-color);
}

/* ============================================
   Cards
   ============================================ */

.card {
  background: var(--card-background);
  padding: 30px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-hover);
}

/* Organic Card Shape */
.organic-card {
  border-radius: 30% 70% 50% 50% / 50% 50% 70% 30%;
  transition: all 0.4s ease;
}

.organic-card:hover {
  border-radius: 50% 50% 30% 70% / 30% 70% 50% 50%;
}

.card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--accent-dark);
}

.card p {
  color: var(--text-light);
  line-height: 1.6;
}

/* ============================================
   Grid Layouts
   ============================================ */

.grid {
  display: grid;
  gap: 30px;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* ============================================
   About Section
   ============================================ */

.about-content {
  max-width: 900px;
  margin: 0 auto;
}

.about-content p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--text-light);
}

.mission-vision {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin: 40px 0;
}

.values {
  margin-top: 40px;
}

.values h3 {
  margin-bottom: 20px;
  color: var(--accent-dark);
}

.values ul li {
  padding: 10px 0;
  color: var(--text-light);
  position: relative;
  padding-left: 25px;
}

.values ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--accent-color);
}

/* ============================================
   Service Cards
   ============================================ */

.service-card {
  text-align: center;
  padding: 40px 30px;
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
}

/* ============================================
   Before-After Section
   ============================================ */

.before-after-card {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  padding: 20px;
}

.before-after-image {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.before-after-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.3) 50%, transparent 60%);
}

.before-after-image .label {
  font-weight: 600;
  color: var(--accent-dark);
  z-index: 1;
}

/* ============================================
   Team Section
   ============================================ */

.team-card {
  text-align: center;
  padding: 30px;
}

.team-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--gradient-primary);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  animation: float 3s ease-in-out infinite;
}

.team-role {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 10px;
}

.team-card p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* ============================================
   Package Cards
   ============================================ */

.package-card {
  text-align: center;
  padding: 40px 30px;
  position: relative;
}

.package-card.featured {
  background: var(--gradient-accent);
  color: white;
}

.package-card.featured h3,
.package-card.featured p,
.package-card.featured .price {
  color: white;
}

.package-type {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: var(--accent-color);
}

.package-card.featured .package-type {
  color: rgba(255, 255, 255, 0.9);
}

.package-card ul {
  text-align: left;
  margin: 20px 0;
}

.package-card ul li {
  padding: 10px 0;
  color: var(--text-light);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.package-card.featured ul li {
  color: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-dark);
  margin-top: 20px;
}

/* ============================================
   Review Cards
   ============================================ */

.review-card {
  padding: 35px;
  position: relative;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 4rem;
  color: var(--accent-color);
  opacity: 0.3;
  font-family: 'Playfair Display', serif;
}

.review-card p {
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.review-author {
  font-weight: 600;
  color: var(--accent-dark);
  text-align: right;
  font-style: normal !important;
}

/* ============================================
   Contact Section
   ============================================ */

.contact-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  margin-bottom: 40px;
}

.contact-info h3,
.contact-directions h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--accent-dark);
}

.contact-info p {
  margin-bottom: 10px;
  color: var(--text-light);
}

.contact-directions ul li {
  padding: 10px 0;
  color: var(--text-light);
  position: relative;
  padding-left: 25px;
}

.contact-directions ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent-color);
}

/* ============================================
   FAQ Section
   ============================================ */

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--card-background);
  padding: 25px;
  border-radius: 20px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-hover);
}

.faq-item h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--accent-dark);
}

.faq-item p {
  color: var(--text-light);
}

/* ============================================
   Footer
   ============================================ */

.footer {
  background: var(--text-color);
  color: white;
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.footer-logo p {
  color: rgba(255, 255, 255, 0.7);
}

.footer-links h3,
.footer-contact h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
  color: var(--accent-color);
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 14px;
  }
  
  .nav-menu {
    display: none;
  }
  
  .hero {
    padding: 60px 20px;
    min-height: auto;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .button {
    width: 100%;
  }
  
  .grid,
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  
  .mission-vision {
    grid-template-columns: 1fr;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  
  .before-after-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.6rem;
  }
  
  .hero-subtitle {
    font-size: 0.9rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .card {
    padding: 20px;
  }
  
  .button {
    padding: 12px 25px;
    font-size: 0.9rem;
  }
}
