/* 
 * Hetényi Renáta Beauty Salon - Main Stylesheet
 * 
 * Ez a fájl importálja a globális változókat, alapstílusokat 
 * és az egyes komponensek stíluslapjait.
 */

@import url('variables.css');
@import url('base.css');

/* Components */
@import url('components/header.css');
@import url('components/hero.css');
@import url('components/buttons.css');
@import url('components/footer.css');
@import url('components/cards.css');
@import url('components/about.css');
@import url('components/animations.css');
@import url('components/blog.css');
@import url('components/extra.css');
@import url('components/chat.css');
@import url('components/i18n.css');
@import url('components/before-after.css');
@import url('components/vip.css');

/* --- PREMIUM UI & VISUAL IMPROVEMENTS --- */

/* 1. Hero Split-Screen (Visszaállítva teljes szélességű, középre igazított elrendezésre) */
.hero-split,
.hero-split-wrapper {
  display: block;
  width: 100%;
}

.hero-image-wrapper,
.hero-split-image {
  display: none !important;
}

@media (min-width: 1025px) {
  /* Visszaállítjuk a kiindulási konténer/szekció stílusokat */
  .hero-section {
    padding: var(--spacing-xl) 0 !important;
    min-height: 90vh !important;
  }
  
  .hero-section .container {
    max-width: 1200px !important;
    padding: 0 var(--spacing-sm) !important;
  }

  .hero-content {
    text-align: center !important;
    margin: 0 auto !important;
    max-width: 800px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  
  .hero-description {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  
  .hero-actions {
    justify-content: center !important;
  }
}

/* 2. CTA Gombok Erősítése */
.btn-primary, 
.hero-content .btn-primary.magnetic-btn,
.btn-primary:not(.btn-outline) {
  background: linear-gradient(135deg, #C9A96E 0%, #B8934F 100%) !important;
  color: #ffffff !important;
  border: none !important;
  padding: 16px 36px !important;
  border-radius: 4px !important;
  font-size: 0.95rem !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  box-shadow: 0 4px 20px rgba(201,169,110,0.35) !important;
  transition: all 0.3s ease !important;
}

.btn-primary:hover,
.hero-content .btn-primary.magnetic-btn:hover {
  background: linear-gradient(135deg, #b8934f 0%, #99783c 100%) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 24px rgba(201,169,110,0.5) !important;
  color: #ffffff !important;
}

.btn-secondary {
  background: transparent !important;
  color: #C9A96E !important;
  border: 1.5px solid #C9A96E !important;
  padding: 14px 32px !important;
  border-radius: 4px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.12em !important;
  transition: all 0.3s ease !important;
}

.btn-secondary:hover {
  background: #C9A96E !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 15px rgba(201,169,110,0.3) !important;
}

/* 3. Sticky Nav Üveg Effekttel */
.site-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 1000 !important;
}

.site-header.nav-scrolled {
  background: rgba(255, 252, 248, 0.92) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08) !important;
  padding: 10px 0 !important;
}

/* 4. Szolgáltatás Kártyák Képekkel (Kezdőlap) */
.services-preview-grid .service-card {
  background: var(--bg-glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-preview-grid .service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.service-card-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
  border-radius: 12px 12px 0 0;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.services-preview-grid .service-card:hover .service-card-image img {
  transform: scale(1.05);
}

.service-card-content {
  padding: 2rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.service-card-content h3 {
  color: var(--color-primary-dark);
  margin-bottom: 1rem;
  font-family: var(--font-heading);
  font-size: 1.6rem;
}

.service-card-content p {
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  font-size: 1.05rem;
  line-height: 1.6;
  flex-grow: 1;
}

.btn-sm {
  padding: 10px 24px !important;
  font-size: 0.85rem !important;
}

/* 5. Scroll Animációk */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* --- Diode Laser Hair Removal Timeline & Layout --- */
.timeline-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(201, 169, 110, 0.3);
  transform: translateX(-50%);
}

.timeline-item {
  margin-bottom: 3rem;
  position: relative;
  width: 50%;
}

.timeline-item:nth-child(odd) {
  padding-right: 3rem;
  text-align: right;
}

.timeline-item:nth-child(even) {
  margin-left: 50%;
  padding-left: 3rem;
  text-align: left;
}

.timeline-badge {
  position: absolute;
  top: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-primary-dark);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  z-index: 2;
  box-shadow: 0 0 10px rgba(201, 169, 110, 0.5);
}

.timeline-item:nth-child(odd) .timeline-badge {
  right: -20px;
}

.timeline-item:nth-child(even) .timeline-badge {
  left: -20px;
}

@media (max-width: 768px) {
  .timeline-line {
    left: 20px;
    transform: none;
  }
  .timeline-item {
    width: 100% !important;
    margin-left: 0 !important;
    padding-left: 3.5rem !important;
    padding-right: 0 !important;
    text-align: left !important;
    margin-bottom: 2.5rem;
  }
  .timeline-badge {
    left: 0 !important;
    right: auto !important;
  }
}

