/* ========================================
   style.css - YO Salon (EN)
   Feminine, modern beauty salon aesthetic
   Soft pinks, elegant typography, clean layout
   ======================================== */

/* ---------- CSS Variables (Feminine Theme) ---------- */
:root {
  --color-primary: #d46b8d;        /* Soft rose pink - main brand color */
  --color-primary-light: #e8a1b9;   /* Light blush pink */
  --color-primary-dark: #b24b6f;    /* Deeper rose for contrast */
  --color-secondary: #f9eef2;       /* Soft pink background */
  --color-accent: #c17b9c;          /* Mauve pink accent */
  --color-text: #3a2a2f;            /* Soft dark brown-pink */
  --color-text-light: #6b4f5a;      /* Muted rose brown */
  --color-border: #f0d9e0;          /* Soft pink border */
  --color-white: #ffffff;
  --color-bg-alt: #fdf6f8;          /* Very light pink background */
  --shadow-sm: 0 4px 12px rgba(200, 120, 140, 0.08);
  --shadow-md: 0 8px 24px rgba(200, 120, 140, 0.12);
  --radius: 20px;
  --radius-sm: 12px;
  --transition: all 0.3s ease;
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif; /* Elegant serif for headings */
  --container-width: 1280px;
  --header-height: 120px;
}

/* ---------- Google Fonts (add to head) ---------- */
/* Add this to your <head> section:
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Cormorant+Garamond:wght@500;600;700&display=swap" rel="stylesheet">
*/

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  font-family: var(--font-family);
  color: var(--color-text);
  line-height: 1.6;
  background-color: var(--color-white);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

/* ---------- Utility ---------- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-primary);
  color: white;
  padding: 8px 16px;
  z-index: 1001;
  text-decoration: none;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus {
  top: 0;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-primary-dark);
  letter-spacing: -0.01em;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.8rem;
  font-weight: 600;
}

.section-title {
  position: relative;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary-light), var(--color-primary));
  border-radius: 3px;
}

.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--color-text-light);
  font-weight: 300;
}

/* ---------- Header ---------- */
.site-header {
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--color-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Brand / Logo */
.brand {
  line-height: 0;
  flex-shrink: 0;
  transition: var(--transition);
}

.brand-logo {
  width: auto;
  height: 160px;           /* Desktop logo height */
  max-width: 280px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(212, 107, 141, 0.1));
}

/* Navigation */
.nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 8px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  text-decoration: none;
  color: var(--color-text);
  font-weight: 500;
  border-radius: 40px;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-link i {
  color: var(--color-primary);
  font-size: 1rem;
  transition: var(--transition);
}

.nav-link:hover {
  background: var(--color-secondary);
  color: var(--color-primary-dark);
}

.nav-link:hover i {
  transform: scale(1.1);
  color: var(--color-primary-dark);
}

.nav-link.is-active {
  background: var(--color-primary);
  color: white;
}

.nav-link.is-active i {
  color: white;
}

/* Language switcher */
.nav-item-lang {
  margin-left: 10px;
  border-left: 2px solid var(--color-border);
  padding-left: 10px;
}

.nav-link-lang {
  background: var(--color-secondary);
  font-weight: 600;
  padding: 8px 16px;
}

.nav-link-lang:hover {
  background: var(--color-primary-light);
  color: white;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 48px;
  height: 48px;
  cursor: pointer;
  padding: 12px;
  flex-direction: column;
  justify-content: space-around;
  background: var(--color-secondary);
  border-radius: 50%;
}

.nav-toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1.2;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--color-primary);
  color: white;
  box-shadow: 0 4px 12px rgba(212, 107, 141, 0.3);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 107, 141, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

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

.btn-light {
  background: var(--color-white);
  color: var(--color-primary);
  border: 1px solid var(--color-border);
}

.btn-light:hover {
  background: var(--color-secondary);
  border-color: var(--color-primary-light);
}

.btn-block {
  width: 100%;
}

.text-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}

.text-link:hover {
  color: var(--color-primary-dark);
  gap: 8px;
}

/* ---------- Hero Section ---------- */
.hero {
  background: linear-gradient(135deg, var(--color-white) 0%, var(--color-secondary) 100%);
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero:before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(212,107,141,0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-block;
  background: rgba(212, 107, 141, 0.1);
  color: var(--color-primary-dark);
  padding: 8px 20px;
  border-radius: 40px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  backdrop-filter: blur(5px);
}

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

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

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

/* Trust row */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-text-light);
  font-size: 0.95rem;
}

.trust-item i {
  color: var(--color-primary);
  font-size: 1.1rem;
}

/* Hero media grid */
.media-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  position: relative;
}

.media-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.media-item:hover {
  transform: scale(1.02);
}

.media-item:first-child {
  grid-column: span 2;
  aspect-ratio: 2 / 1;
}

.media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.media-item:hover .media-img {
  transform: scale(1.1);
}

/* ---------- Sections ---------- */
.section {
  padding: 80px 0;
}

.section-muted {
  background-color: var(--color-bg-alt);
}

/* Grids */
.grid {
  display: grid;
  gap: 30px;
}

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

/* Feature cards (services) */
.feature {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 40px 30px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--color-border);
  text-align: center;
}

.feature:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary-light);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-white));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  border: 2px solid var(--color-primary-light);
  color: var(--color-primary);
  font-size: 2.2rem;
  transition: var(--transition);
}

.feature:hover .feature-icon {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
  transform: rotate(5deg);
}

.feature-title {
  font-size: 1.8rem;
  margin-bottom: 16px;
  color: var(--color-primary-dark);
}

.feature-text {
  color: var(--color-text-light);
  margin-bottom: 20px;
}

/* Bullets list */
.bullets {
  list-style: none;
  padding: 20px 0;
}

.bullets li {
  margin-bottom: 20px;
  display: flex;
  gap: 16px;
  align-items: center;
  font-size: 1.1rem;
  padding: 8px 16px;
  background: var(--color-white);
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}

.bullets li i {
  color: var(--color-primary);
  font-size: 1.2rem;
  width: 24px;
  text-align: center;
}

/* Mini steps (booking) */
.mini-steps {
  margin: 30px 0;
}

.mini-step {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--color-border);
}

.mini-step:last-child {
  border-bottom: none;
}

.step-num {
  width: 36px;
  height: 36px;
  background: var(--color-primary-light);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.1rem;
}

/* Cards */
.card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.card-title {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--color-primary-dark);
}

.card-note {
  color: var(--color-text-light);
  margin-bottom: 24px;
}

/* Projects / Gallery */
.project {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--color-border);
}

.project:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}

.project-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.project:hover .project-img {
  transform: scale(1.1);
}

/* Center actions */
.center-actions {
  text-align: center;
  margin-top: 40px;
}

/* Testimonials */
.testimonial {
  background: var(--color-white);
  padding: 30px;
  position: relative;
}

.testimonial:before {
  content: '"';
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--color-primary-light);
  opacity: 0.2;
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
}

.testimonial-text {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.testimonial-meta {
  color: var(--color-primary);
  font-weight: 600;
  border-top: 1px solid var(--color-border);
  padding-top: 16px;
}

/* Lists */
.list {
  list-style: none;
  margin: 20px 0;
}

.list li {
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
}

.list li:before {
  content: '•';
  color: var(--color-primary);
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: -5px;
}

/* CTA Section */
.cta {
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  color: white;
  margin: 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-title {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 8px;
}

.cta-text {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
}

.cta .btn-primary {
  background: white;
  color: var(--color-primary);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

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

/* ---------- Footer ---------- */
.site-footer {
  background: #2a1e22;  /* Deep brown-pink */
  color: rgba(255,255,255,0.8);
  padding-top: 60px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

/* Footer brand row */
.footer-brand {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.footer-logo {
  height: 110px;           /* Footer logo height */
  width: auto;
  filter: brightness(0) invert(1);
  transition: var(--transition);
}

.footer-logo:hover {
  transform: scale(1.02);
  filter: brightness(0) invert(0.8);
}

.footer-brand strong {
  color: white;
  font-size: 1.5rem;
  font-family: var(--font-display);
  display: block;
  margin-bottom: 4px;
}

.footer-col .muted {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
}

.footer-col a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: var(--transition);
}

.footer-col a:hover {
  color: white;
  text-decoration: underline;
}

.footer-links {
  list-style: none;
  margin-top: 16px;
}

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

.footer-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: white;
  transform: translateX(4px);
}

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

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.4rem; }
  .hero-title { font-size: 2.8rem; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .trust-row {
    justify-content: center;
  }
  
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .footer-col:first-child {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 140px;        /* Increased for mobile logo */
  }
  
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.5rem; }
  
  .nav-toggle {
    display: flex;
  }
  
  .nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--color-white);
    padding: 24px;
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    display: block;
    visibility: hidden;
    border-bottom: 2px solid var(--color-primary-light);
  }
  
  .nav.active {
    max-height: 80vh;
    overflow-y: auto;
    visibility: visible;
  }
  
  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  
  .nav-item {
    width: 100%;
  }
  
  .nav-link {
    padding: 14px 20px;
    justify-content: center;
  }
  
  .nav-item-lang {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
    margin-top: 8px;
  }
  
  .nav-link-lang {
    background: var(--color-secondary);
  }
  
  /* BIG MOBILE LOGO */
  .brand-logo {
    height: 120px;            /* Large mobile header logo */
    max-width: 240px;
  }
  
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }
  
  .hero-actions {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
  
  .trust-row {
    flex-wrap: wrap;
    gap: 16px;
  }
  
  .cta-inner {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-inner {
    grid-template-columns: 1fr;
  }
  
  .footer-col:first-child {
    grid-column: auto;
  }
  
  .footer-brand {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-logo {
    height: 120px;            /* Large mobile footer logo */
    margin-bottom: 10px;
  }
  
  .bullets li {
    font-size: 1rem;
    padding: 12px;
  }
  
  .feature {
    padding: 30px 20px;
  }
  
  .feature-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  h1 { font-size: 2.2rem; }
  .hero-title { font-size: 2.2rem; }
  
  .brand-logo {
    height: 100px;            /* Smaller phones */
  }
  
  .footer-logo {
    height: 100px;
  }
  
  .trust-row {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  
  .trust-item {
    width: 100%;
    justify-content: center;
  }
  
  .media-grid {
    gap: 8px;
  }
  
  .card {
    padding: 30px 20px;
  }
  
  .bullets li {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  
  .mini-step {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}

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

.hero-content {
  animation: fadeIn 0.8s ease-out;
}

.feature {
  animation: fadeIn 0.8s ease-out;
  animation-fill-mode: both;
}

.feature:nth-child(1) { animation-delay: 0.1s; }
.feature:nth-child(2) { animation-delay: 0.2s; }
.feature:nth-child(3) { animation-delay: 0.3s; }
	
/* ---------- about us ---------- */
	
/* ========================================
   style.css - YO Salon About Page (EN)
   Additional styles for About page components
   Add this to your existing style.css file
   ======================================== */

/* ---------- Page Header ---------- */
.page-header {
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-white) 100%);
  padding: 60px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header:before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(212,107,141,0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.page-header:after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(212,107,141,0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.page-title {
  font-size: 3.5rem;
  color: var(--color-primary-dark);
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.page-subtitle {
  font-size: 1.3rem;
  color: var(--color-text-light);
  font-weight: 300;
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}

/* ---------- Story Section ---------- */
#story {
  padding-top: 40px;
}

.story-content {
  padding-right: 40px;
}

.story-content .section-title {
  text-align: left;
  margin-bottom: 30px;
}

.story-content .section-title:after {
  left: 0;
  transform: none;
}

.story-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.story-text:nth-child(2) { animation-delay: 0.2s; }
.story-text:nth-child(3) { animation-delay: 0.3s; }
.story-text:nth-child(4) { animation-delay: 0.4s; }

.story-media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
  height: 100%;
  min-height: 400px;
  opacity: 0;
  animation: fadeInRight 0.8s ease forwards;
}

.story-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.story-media:hover .story-img {
  transform: scale(1.05);
}

/* ---------- Approach Section ---------- */
#approach {
  background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-white) 100%);
}

.approach-card {
  text-align: center;
  padding: 40px 30px;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.approach-card:nth-child(1) { animation-delay: 0.1s; }
.approach-card:nth-child(2) { animation-delay: 0.2s; }
.approach-card:nth-child(3) { animation-delay: 0.3s; }

.approach-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-white));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  border: 3px solid var(--color-primary-light);
  color: var(--color-primary);
  font-size: 2.5rem;
  transition: all 0.3s ease;
}

.approach-card:hover .approach-icon {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
  transform: rotateY(180deg);
}

.approach-card-title {
  font-size: 1.8rem;
  margin-bottom: 16px;
  color: var(--color-primary-dark);
}

.approach-card-text {
  color: var(--color-text-light);
  line-height: 1.7;
  flex-grow: 1;
}

/* ---------- Team Section ---------- */
#team {
  background: var(--color-white);
}

.team-card {
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 1px solid var(--color-border);
  text-align: center;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.team-card:nth-child(1) { animation-delay: 0.1s; }
.team-card:nth-child(2) { animation-delay: 0.2s; }
.team-card:nth-child(3) { animation-delay: 0.3s; }

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary-light);
}

.team-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-img {
  transform: scale(1.05);
}

.team-name {
  font-size: 1.8rem;
  color: var(--color-primary-dark);
  margin: 24px 20px 8px;
}

.team-role {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.team-bio {
  color: var(--color-text-light);
  line-height: 1.6;
  margin: 0 20px 30px;
  font-size: 0.95rem;
}

/* ---------- Animation Keyframes ---------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

/* ---------- Responsive for About Page ---------- */
@media (max-width: 1024px) {
  .page-title {
    font-size: 3rem;
  }
  
  .story-content {
    padding-right: 20px;
  }
  
  .approach-card-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 900px) {
  .story-content {
    padding-right: 0;
    text-align: center;
  }
  
  .story-content .section-title {
    text-align: center;
  }
  
  .story-content .section-title:after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .story-media {
    min-height: 350px;
  }
  
  .team-name {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .page-header {
    padding: 40px 0 30px;
  }
  
  .page-title {
    font-size: 2.5rem;
  }
  
  .page-subtitle {
    font-size: 1.1rem;
    padding: 0 20px;
  }
  
  .story-text {
    font-size: 1rem;
    line-height: 1.7;
  }
  
  .story-media {
    min-height: 300px;
    margin-top: 20px;
  }
  
  .approach-card {
    padding: 30px 20px;
  }
  
  .approach-icon {
    width: 70px;
    height: 70px;
    font-size: 2rem;
  }
  
  .approach-card-title {
    font-size: 1.5rem;
  }
  
  .team-card {
    max-width: 400px;
    margin: 0 auto;
  }
  
  .team-name {
    font-size: 1.5rem;
    margin: 20px 15px 5px;
  }
  
  .team-bio {
    margin: 0 15px 25px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .page-title {
    font-size: 2rem;
  }
  
  .page-subtitle {
    font-size: 1rem;
  }
  
  .story-media {
    min-height: 250px;
  }
  
  .approach-card {
    padding: 25px 15px;
  }
  
  .approach-icon {
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
    margin-bottom: 16px;
  }
  
  .approach-card-title {
    font-size: 1.3rem;
  }
  
  .approach-card-text {
    font-size: 0.95rem;
  }
  
  .team-name {
    font-size: 1.3rem;
  }
  
  .team-role {
    font-size: 0.9rem;
  }
}

/* ---------- Optional: Add subtle pattern overlay ---------- */
.section-muted {
  position: relative;
}

.section-muted:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(var(--color-primary-light) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.03;
  pointer-events: none;
}

/* ---------- Breadcrumbs (if needed) ---------- */
.breadcrumbs {
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.breadcrumbs a {
  color: var(--color-primary);
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.breadcrumbs .separator {
  margin: 0 8px;
  color: var(--color-text-light);
}

/* ---------- Stats / Milestones (optional add-on) ---------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
  padding: 20px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  font-family: var(--font-display);
  margin-bottom: 8px;
}

.stat-label {
  color: var(--color-text-light);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ---------- Values Section (optional) ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.value-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary-light);
}

.value-icon {
  color: var(--color-primary);
  font-size: 2rem;
  margin-bottom: 16px;
}

.value-title {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--color-primary-dark);
}

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

/* Responsive for optional sections */
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .value-card {
    padding: 25px;
  }
}

/* ---------- Print styles ---------- */
@media print {
  .page-header {
    background: none;
    padding: 20px 0;
  }
  
  .page-title {
    color: black;
  }
  
  .approach-card,
  .team-card {
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid #ddd;
  }
  
  .cta {
    display: none;
  }
}
	

	
/* ---------- gallery---- */
	/* ========================================
   style.css - YO Salon Gallery Page (EN)
   Additional styles for Gallery page components
   Add this to your existing style.css file
   ======================================== */

/* ---------- Gallery Hero Section ---------- */
#galleryHero {
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-white) 100%);
  padding: 60px 0 40px;
  position: relative;
  overflow: hidden;
}

#galleryHero:before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(212, 107, 141, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}

#galleryHero:after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(212, 107, 141, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.text-center {
  text-align: center;
}

#galleryHero .hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 30px;
  color: var(--color-text-light);
}

/* ---------- Gallery Grid Layout ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s ease;
  aspect-ratio: 1 / 1;
  cursor: pointer;
  opacity: 0;
  animation: fadeIn 0.6s ease forwards;
}

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.1);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: white;
  padding: 20px 16px 16px;
  font-size: 1rem;
  font-weight: 500;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  text-align: center;
  backdrop-filter: blur(2px);
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

/* Section dividers */
.section-divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-primary-light), transparent);
  max-width: 300px;
  margin: 0 auto;
}

/* ---------- Before & After Section ---------- */
.before-after-row {
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.before-after-item {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

.before-after-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary-light);
}

.before-after-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  font-weight: 600;
  color: var(--color-primary-dark);
  font-size: 1.1rem;
  padding: 0 8px;
}

.before-after-label span {
  position: relative;
}

.before-after-label span:first-child:after {
  content: '→';
  position: absolute;
  right: -30px;
  color: var(--color-primary-light);
  font-weight: 400;
}

.before-after-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-sm);
  transition: transform 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.before-after-image:hover {
  transform: scale(1.02);
}

/* ---------- Trust Grid ---------- */
#trustSection {
  background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-white) 100%);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.trust-grid .trust-item {
  background: var(--color-white);
  padding: 30px 20px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.trust-grid .trust-item:nth-child(1) { animation-delay: 0.1s; }
.trust-grid .trust-item:nth-child(2) { animation-delay: 0.2s; }
.trust-grid .trust-item:nth-child(3) { animation-delay: 0.3s; }
.trust-grid .trust-item:nth-child(4) { animation-delay: 0.4s; }

.trust-grid .trust-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary-light);
}

.trust-grid .trust-item i {
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: 16px;
  transition: transform 0.3s ease;
}

.trust-grid .trust-item:hover i {
  transform: scale(1.1);
}

.trust-grid .trust-item p {
  color: var(--color-text);
  font-weight: 500;
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
}

/* ---------- Animation Keyframes ---------- */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ---------- Gallery Section Headers ---------- */
#hairGallery h2,
#nailGallery h2,
#makeupGallery h2,
#beforeAfter h2,
#trustSection h2 {
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

#hairGallery h2:after,
#nailGallery h2:after,
#makeupGallery h2:after,
#beforeAfter h2:after,
#trustSection h2:after {
  left: 50%;
  transform: translateX(-50%);
}

/* ---------- Lightbox Modal (optional - can be added with JS) ---------- */
.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox-modal.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  margin: auto;
  display: block;
  border-radius: var(--radius);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  animation: fadeInScale 0.3s ease;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.lightbox-close:hover {
  transform: rotate(90deg);
}

.lightbox-caption {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  text-align: center;
  color: white;
  font-size: 1.2rem;
  padding: 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

/* ---------- Responsive Breakpoints ---------- */

/* Large tablets and small desktops */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .gallery-caption {
    font-size: 0.95rem;
    padding: 16px 12px 12px;
  }
}

/* Tablets */
@media (max-width: 768px) {
  #galleryHero {
    padding: 40px 0 30px;
  }
  
  #galleryHero .hero-subtitle {
    font-size: 1.1rem;
    padding: 0 20px;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .gallery-item {
    animation: fadeIn 0.4s ease forwards;
  }
  
  .gallery-caption {
    transform: translateY(0);
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.3));
    padding: 12px;
    font-size: 0.9rem;
  }
  
  .gallery-item:hover .gallery-caption {
    transform: translateY(0);
  }
  
  .gallery-item:hover {
    transform: translateY(-4px);
  }
  
  .section-divider {
    max-width: 200px;
  }
  
  .before-after-row {
    max-width: 100%;
    padding: 0 16px;
  }
  
  .before-after-label {
    font-size: 1rem;
    padding: 0 4px;
  }
  
  .before-after-label span:first-child:after {
    right: -25px;
  }
  
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .trust-grid .trust-item {
    padding: 24px 15px;
  }
  
  .trust-grid .trust-item i {
    font-size: 2rem;
  }
  
  .trust-grid .trust-item p {
    font-size: 0.9rem;
  }
}

/* Mobile phones */
@media (max-width: 480px) {
  #galleryHero {
    padding: 30px 0 20px;
  }
  
  #galleryHero .hero-subtitle {
    font-size: 1rem;
    padding: 0 16px;
  }
  
  .page-title {
    font-size: 2.2rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .gallery-item {
    aspect-ratio: 4 / 3;
  }
  
  .gallery-caption {
    font-size: 1rem;
    padding: 14px;
  }
  
  .section-title {
    font-size: 1.8rem;
    padding: 0 16px;
  }
  
  .before-after-row {
    padding: 0 12px;
  }
  
  .before-after-item {
    padding: 16px;
  }
  
  .before-after-label {
    font-size: 0.9rem;
  }
  
  .before-after-label span:first-child:after {
    display: none;
  }
  
  .before-after-label {
    justify-content: center;
    gap: 40px;
  }
  
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .trust-grid .trust-item {
    padding: 20px;
  }
  
  .trust-grid .trust-item i {
    font-size: 2.2rem;
  }
  
  .trust-grid .trust-item p {
    font-size: 1rem;
  }
  
  .lightbox-content {
    max-width: 95%;
  }
  
  .lightbox-close {
    top: 10px;
    right: 20px;
    font-size: 2rem;
  }
  
  .lightbox-caption {
    font-size: 1rem;
    padding: 12px;
  }
}

/* Small phones */
@media (max-width: 360px) {
  .page-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
  
  .gallery-grid {
    max-width: 280px;
  }
  
  .trust-grid {
    max-width: 250px;
  }
  
  .before-after-row {
    padding: 0 8px;
  }
  
  .before-after-item {
    padding: 12px;
  }
}

/* ---------- Optional: Masonry style for larger screens ---------- */
@media (min-width: 1400px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }
  
  .gallery-item:nth-child(3n+1) {
    transform: translateY(-10px);
  }
  
  .gallery-item:nth-child(3n+2) {
    transform: translateY(10px);
  }
  
  .gallery-item:nth-child(3n+3) {
    transform: translateY(-5px);
  }
  
  .gallery-item:hover {
    transform: translateY(-15px);
    z-index: 10;
  }
  
  .gallery-caption {
    font-size: 1.1rem;
    padding: 24px 20px 20px;
  }
}

/* ---------- Print styles ---------- */
@media print {
  .gallery-item {
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid #ddd;
  }
  
  .gallery-caption {
    position: static;
    background: none;
    color: black;
    transform: none;
    padding: 8px 0;
  }
  
  .trust-grid .trust-item {
    border: 1px solid #ddd;
    box-shadow: none;
  }
  
  .cta {
    display: none;
  }
}

/* ---------- Optional: Image loading skeleton ---------- */
.gallery-image.loading {
  background: linear-gradient(90deg, #f0f0f0, #e0e0e0, #f0f0f0);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}