/* ═══════════════════════════════════════════════
   MUSE BEAUTY - LUXURY BEAUTY SALON
   Sophisticated Design System
   ═══════════════════════════════════════════════ */

/* GOOGLE FONTS IMPORT */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* ═══════════════════════════════════════════════
   HEADER & NAVIGATION
   ═══════════════════════════════════════════════ */
.header {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-subtle);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.05);
}

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

.nav a {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-body);
  text-decoration: none;
  transition: color 0.3s ease;
  letter-spacing: 0.5px;
}

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

.btn-nav {
  background: var(--accent-gold);
  color: white !important;
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-nav:hover {
  background: var(--accent-bronze);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 122, 0.3);
}

@media (max-width: 768px) {
  .header-content {
    padding: 0 20px;
  }
  
  .logo img {
    height: 45px;
  }
  
  .nav {
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .nav a {
    font-size: 14px;
  }
}

/* ═══════════════════════════════════════════════
   ROOT VARIABLES - Color Palette & Spacing
   ═══════════════════════════════════════════════ */
:root {
  /* Color System */
  --bg-primary: #F8F6F4;
  --bg-secondary: #FFFFFF;
  --text-dark: #2C2C2C;
  --text-body: #4A4A4A;
  --accent-bronze: #8B7355;
  --accent-gold: #D4AF7A;
  --border-subtle: #E8E4E0;
  
  /* Typography */
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Montserrat', sans-serif;
  
  /* Spacing System (8px base) */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 60px;
  --space-2xl: 80px;
  --space-3xl: 120px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.4s ease;
}

/* ═══════════════════════════════════════════════
   RESET & BASE STYLES
   ═══════════════════════════════════════════════ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--text-body);
  background-color: var(--bg-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ═══════════════════════════════════════════════
   TYPOGRAPHY SYSTEM
   ═══════════════════════════════════════════════ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1.3;
  letter-spacing: 0.02em;
  margin-bottom: var(--space-md);
}

h1 {
  font-size: clamp(36px, 5vw, 52px);
  letter-spacing: 0.05em;
}

h2 {
  font-size: clamp(32px, 4vw, 40px);
}

h3 {
  font-size: clamp(24px, 3vw, 28px);
}

p {
  margin-bottom: var(--space-sm);
  font-size: 16px;
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--accent-gold);
}

/* Eyebrow Text Style */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-bronze);
  margin-bottom: var(--space-sm);
  display: block;
}

/* ═══════════════════════════════════════════════
   LAYOUT COMPONENTS
   ═══════════════════════════════════════════════ */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.section {
  padding: var(--space-3xl) 0;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-2xl);
}

/* ═══════════════════════════════════════════════
   BUTTON SYSTEM
   ═══════════════════════════════════════════════ */
.btn {
  display: inline-block;
  padding: 16px 40px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-align: center;
  white-space: nowrap;
}

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

.btn-primary:hover {
  background-color: #c19a5f;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 122, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-dark);
  border: 1px solid var(--text-dark);
}

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

.btn-link {
  padding: 0;
  background: none;
  border: none;
  color: var(--text-dark);
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.btn-link::after {
  content: '→';
  margin-left: 8px;
  font-size: 18px;
  transition: margin var(--transition-fast);
  display: inline-block;
}

.btn-link:hover::after {
  margin-left: 12px;
}

.service-card .btn-link {
  display: inline-flex;
  align-items: center;
  margin-top: 20px;
  color: var(--accent-gold);
  font-weight: 600;
}

.service-card .btn-link::after {
  color: var(--accent-gold);
}

/* ═══════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(44, 44, 44, 0.5) 0%, rgba(44, 44, 44, 0.3) 100%);
  z-index: -1;
}

.hero-content {
  max-width: 60%;
  animation: fadeInUp 0.8s ease-out;
}

.hero .btn-group {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
  flex-wrap: wrap;
}

.hero-tagline {
  font-size: 18px;
  font-weight: 300;
  margin-top: var(--space-md);
  opacity: 0.9;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 24px;
  animation: bounce 2s infinite;
}

/* ═══════════════════════════════════════════════
   WELCOME SECTION (Asymmetric Layout)
   ═══════════════════════════════════════════════ */
.welcome-grid {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: var(--space-2xl);
  align-items: start;
}

.welcome-image {
  position: sticky;
  top: 100px;
  border: 1px solid var(--border-subtle);
  overflow: hidden;
}

.welcome-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-slow);
}

.welcome-image:hover img {
  transform: scale(1.05);
}

.welcome-content {
  padding: var(--space-lg) 0;
}

/* ═══════════════════════════════════════════════
   SERVICES GRID
   ═══════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════
   UNIFIED GRID SYSTEM - 3 COLUMNS WITH SMART CENTERING
   ═══════════════════════════════════════════════ */
.services-grid,
.grid-3-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
}

.services-grid > *,
.grid-3-cols > * {
  width: 100%;
  max-width: 100%;
}

/* ═══════════════════════════════════════════════
   CENTRAGE AUTOMATIQUE DES CARTES ORPHELINES
   Utilise grid-column pour placer les cartes orphelines au centre
   ═══════════════════════════════════════════════ */
   
/* 🎯 CAS 1 : 4 CARTES (3+1 orpheline) → Carte 4 centrée colonne 2 */
.services-grid > *:nth-child(4):last-child,
.grid-3-cols > *:nth-child(4):last-child {
  grid-column: 2 / 3;
}

/* 🎯 CAS 2 : 5 CARTES (3+2 orphelines) → Cartes 4-5 centrées colonnes 1-2 
   Note: grid-column commence à 1, donc on décale de 0.5 colonne visuellement */
.services-grid > *:nth-child(4):nth-last-child(2) {
  grid-column: 1 / 2;
}

.services-grid > *:nth-child(5):last-child {
  grid-column: 3 / 4;
}

/* Alternative pour 5 cartes : centrage visuel avec grid-column-start */
.grid-3-cols > *:nth-child(4):nth-last-child(2) {
  grid-column-start: 1;
}

.grid-3-cols > *:nth-child(5):last-child {
  grid-column-start: 2;
}

/* 🎯 CAS 3 : 7 CARTES (6+1 orpheline) → Carte 7 centrée colonne 2 */
.services-grid > *:nth-child(7):last-child,
.grid-3-cols > *:nth-child(7):last-child {
  grid-column: 2 / 3;
}

/* ═══════════════════════════════════════════════
   GRID 2 CARDS - CENTRAGE HORIZONTAL
   Pour sections avec exactement 2 cartes
   ═══════════════════════════════════════════════ */
.grid-2-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 900px; /* 450px par carte + gap */
  margin: 0 auto;
  padding: 0 60px;
  justify-items: center;
}

.grid-2-cards > * {
  width: 100%;
  max-width: 100%;
}

@media (max-width: 1200px) {
  .services-grid,
  .grid-3-cols {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 0 40px;
  }
  
  .grid-2-cards {
    max-width: 800px;
    padding: 0 40px;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .services-grid,
  .grid-3-cols {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 20px;
  }
  
  .grid-2-cards {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 20px;
    max-width: 100%;
  }
}

.service-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  padding: 50px 40px;
  transition: all var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-md);
  color: var(--accent-bronze);
}

.service-card h3 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: var(--space-sm);
}

.service-card p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.price-badge {
  display: inline-block;
  background: var(--bg-primary);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent-bronze);
  margin-bottom: var(--space-md);
}

/* ═══════════════════════════════════════════════
   BENEFITS GRID
   ═══════════════════════════════════════════════ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
}

@media (max-width: 1200px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 0 40px;
  }
}

@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 20px;
  }
}

.benefit-item {
  text-align: left;
}

.benefit-icon {
  font-size: 40px;
  color: var(--accent-gold);
  margin-bottom: var(--space-md);
}

.benefit-item h3 {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 12px;
}

.benefit-item p {
  font-size: 15px;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════
   FEATURED SERVICE HIGHLIGHT
   ═══════════════════════════════════════════════ */
.featured-service {
  position: relative;
  padding: 160px var(--space-xl);
  text-align: center;
  color: white;
  overflow: hidden;
}

.featured-service::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(44, 44, 44, 0.7) 0%, rgba(44, 44, 44, 0.5) 100%),
              url('https://images.unsplash.com/photo-1519415510236-718bdfcd89c8?q=80&w=2070') center/cover;
  z-index: -1;
}

.featured-service .eyebrow,
.featured-service h2,
.featured-service p {
  color: white;
}

.featured-service .container {
  max-width: 900px;
}

/* ═══════════════════════════════════════════════
   TESTIMONIALS CAROUSEL
   ═══════════════════════════════════════════════ */
.testimonials-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.testimonial-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  padding: 50px;
  position: relative;
  margin-bottom: var(--space-lg);
}

.quote-icon {
  font-size: 80px;
  color: var(--border-subtle);
  position: absolute;
  top: 30px;
  left: 30px;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-text {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 1;
}

.testimonial-rating {
  font-size: 20px;
  color: var(--accent-gold);
  margin-bottom: var(--space-sm);
}

.testimonial-author {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dark);
}

.testimonial-treatment {
  font-size: 14px;
  color: var(--accent-bronze);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: var(--space-lg);
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-subtle);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.carousel-dot.active {
  background: var(--accent-gold);
  width: 24px;
  border-radius: 4px;
}

/* ═══════════════════════════════════════════════
   INSTAGRAM FEED
   ═══════════════════════════════════════════════ */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-bottom: var(--space-lg);
}

.instagram-item {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.instagram-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(212, 175, 122, 0.8);
  opacity: 0;
  transition: opacity var(--transition-normal);
  display: flex;
  align-items: center;
  justify-content: center;
}

.instagram-item:hover::after {
  opacity: 1;
}

/* ═══════════════════════════════════════════════
   FINAL CTA SECTION
   ═══════════════════════════════════════════════ */
.final-cta {
  background: var(--text-dark);
  padding: 100px var(--space-xl);
  text-align: center;
  color: white;
}

.final-cta h2,
.final-cta p {
  color: white;
}

.final-cta .container {
  max-width: 800px;
}

.final-cta .btn-group {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
  flex-wrap: wrap;
}

.btn-white-outline {
  background: transparent;
  border: 1px solid white;
  color: white;
}

.btn-white-outline:hover {
  background: white;
  color: var(--text-dark);
}

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
.footer {
  background: var(--bg-primary);
  padding: var(--space-xl) 0 var(--space-lg) 0;
  border-top: 1px solid var(--border-subtle);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-md);
}

.footer-column h4 {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.footer-logo {
  display: inline-block;
  margin-bottom: 15px;
}

.footer-logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.footer-tagline {
  font-size: 13px;
  color: var(--accent-bronze);
  margin-bottom: 8px;
}

.footer-description {
  font-size: 13px;
  line-height: 1.5;
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  font-size: 13px;
  color: var(--text-body);
  transition: color var(--transition-fast);
}

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

.footer-contact {
  font-size: 13px;
  line-height: 1.6;
}

.footer-contact p {
  margin-bottom: 8px;
}

.footer-social {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.social-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--accent-bronze);
  color: var(--accent-bronze);
  transition: all var(--transition-fast);
}

.social-icon:hover {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: white;
}

.footer-bottom {
  background: var(--bg-secondary);
  padding: var(--space-sm) 0;
  border-top: 1px solid var(--border-subtle);
  text-align: center;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--accent-bronze);
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer-bottom-links {
  display: flex;
  gap: var(--space-md);
}

/* ═══════════════════════════════════════════════
   FLOATING BUTTONS
   ═══════════════════════════════════════════════ */
.floating-buttons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  z-index: 1000;
}

.floating-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform var(--transition-fast);
  text-decoration: none;
}

.floating-btn:hover {
  transform: scale(1.1);
}

.whatsapp-btn {
  background: #25D366;
}

.phone-btn {
  background: var(--accent-gold);
}

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

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

.fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

/* Scroll Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════
   RESPONSIVE DESIGN
   ═══════════════════════════════════════════════ */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
  .container {
    padding: 0 var(--space-lg);
  }
  
  .hero-content {
    max-width: 70%;
  }
  
  .welcome-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .welcome-image {
    position: static;
  }
  
  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile (<768px) */
@media (max-width: 768px) {
  :root {
    --space-3xl: 60px;
    --space-2xl: 40px;
  }
  
  .container {
    padding: 0 var(--space-md);
  }
  
  .section {
    padding: var(--space-xl) 0;
  }
  
  .hero {
    min-height: 500px;
  }
  
  .hero-content {
    max-width: 100%;
  }
  
  .hero .btn-group {
    flex-direction: column;
    width: 100%;
  }
  
  .btn {
    width: 100%;
  }
  
  .instagram-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .service-card,
  .testimonial-card {
    padding: var(--space-lg) var(--space-md);
  }
  
  .featured-service {
    padding: var(--space-2xl) var(--space-md);
  }
  
  .quote-icon {
    font-size: 60px;
    top: 20px;
    left: 20px;
  }
  
  .testimonial-text {
    font-size: 18px;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-bottom-links {
    flex-direction: column;
  }
  
  .floating-buttons {
    bottom: 20px;
    right: 20px;
  }
  
  .floating-btn {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}

/* Very Small Mobile (<480px) */
@media (max-width: 480px) {
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  .hero-tagline {
    font-size: 16px;
  }
}

/* ═══════════════════════════════════════════════
   UTILITY CLASSES
   ═══════════════════════════════════════════════ */
.text-center {
  text-align: center;
}

.text-white {
  color: white;
}

.bg-white {
  background: var(--bg-secondary);
}

.bg-primary {
  background: var(--bg-primary);
}

.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }

.mt-0 { margin-top: 0; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }

/* ═══════════════════════════════════════════════
   LEGAL PAGES & ABOUT PAGE
   ═══════════════════════════════════════════════ */

/* Legal Pages Container */
.legal-page {
  padding: 80px 0;
  background: white;
}

.container-legal {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.legal-page h1 {
  font-size: 42px;
  margin-bottom: 40px;
  text-align: center;
  color: var(--text-primary);
}

.legal-page h2 {
  font-size: 28px;
  margin-top: 50px;
  margin-bottom: 20px;
  color: var(--accent-bronze);
}

.legal-page h3 {
  font-size: 22px;
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--text-primary);
}

.legal-page p {
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--text-secondary);
}

.legal-page ul, .legal-page ol {
  margin: 20px 0 20px 30px;
  line-height: 2;
}

.legal-page li {
  margin-bottom: 10px;
  color: var(--text-secondary);
}

.legal-page a {
  color: var(--accent-bronze);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition-normal);
}

.legal-page a:hover {
  border-bottom-color: var(--accent-bronze);
}

.intro-legal {
  font-size: 18px;
  background: var(--bg-primary);
  padding: 30px;
  border-radius: 8px;
  border-left: 4px solid var(--accent-gold);
  margin-bottom: 40px;
}

.date-update {
  margin-top: 50px;
  padding: 20px;
  background: var(--bg-primary);
  border-radius: 8px;
  text-align: center;
  font-style: italic;
  color: var(--accent-bronze);
}

/* Cookie Table */
.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  background: white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.cookie-table thead {
  background: var(--bg-primary);
}

.cookie-table th {
  padding: 15px;
  text-align: left;
  font-weight: 600;
  color: var(--accent-bronze);
  border-bottom: 2px solid var(--border-subtle);
}

.cookie-table td {
  padding: 15px;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-secondary);
}

.cookie-table tbody tr:hover {
  background: var(--bg-primary);
}

/* About Page Specific Styles */
.about-hero {
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-bronze) 100%);
  padding: 120px 0;
  text-align: center;
  color: white;
}

.about-hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.about-hero h1 {
  font-size: 52px;
  margin-bottom: 20px;
}

.about-hero .tagline {
  font-size: 20px;
  opacity: 0.95;
}

.about-story, .about-expert, .about-place, .about-values {
  padding: 80px 0;
}

.container-about {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.about-grid, .expert-grid, .place-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2, .expert-text h2, .place-text h2 {
  font-size: 38px;
  margin-bottom: 30px;
}

.about-text p, .expert-text p, .place-text p {
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--text-secondary);
}

.expert-title {
  font-size: 18px;
  color: var(--accent-bronze);
  font-weight: 600;
  margin-bottom: 20px !important;
}

.expert-skills {
  list-style: none;
  margin: 30px 0;
  padding: 0;
}

.expert-skills li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 17px;
}

.place-features {
  list-style: none;
  margin: 30px 0;
  padding: 0;
}

.place-features li {
  padding: 10px 0;
  font-size: 17px;
}

.place-access {
  margin-top: 30px;
  padding: 20px;
  background: var(--bg-primary);
  border-radius: 8px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1400px;
  margin: 50px auto 0;
  padding: 0 60px;
}

@media (max-width: 1200px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 0 40px;
  }
}

@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 20px;
  }
}

.value-card {
  background: white;
  padding: 40px 30px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  text-align: center;
  transition: transform var(--transition-normal);
}

.value-card:hover {
  transform: translateY(-8px);
}

.value-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.value-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--accent-bronze);
}

.value-card p {
  line-height: 1.7;
  color: var(--text-secondary);
}

.about-cta {
  background: linear-gradient(135deg, var(--accent-bronze) 0%, var(--accent-gold) 100%);
  padding: 80px 0;
  text-align: center;
  color: white;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.cta-content h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.95;
}

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

.btn-primary, .btn-secondary {
  padding: 18px 40px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  transition: all var(--transition-normal);
}

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

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

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

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

.centered {
  text-align: center;
}

/* Responsive - Legal & About Pages */
@media (max-width: 768px) {
  .about-grid, .expert-grid, .place-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-hero h1 {
    font-size: 36px;
  }

  .about-text h2, .expert-text h2, .place-text h2 {
    font-size: 28px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .btn-primary, .btn-secondary {
    width: 100%;
  }

  .legal-page h1 {
    font-size: 32px;
  }

  .legal-page h2 {
    font-size: 24px;
  }

  .cookie-table {
    font-size: 14px;
  }

  .cookie-table th, .cookie-table td {
    padding: 10px;
  }
}
