/* ================================
   WELCOME V3 - SPECIFIC PAGE STYLES
   TOATE base styles (body, headings, variables) sunt în layout.css
   Aici DOAR stiluri specifice pentru paginile welcome-v3
   ================================ */

/* === NAVIGATION & FOOTER - în layout.css === */

/* === HERO FANTASTIC === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 6rem;
  position: relative;
  overflow: hidden;
}

/* Background Glow Animat */
.hero-background-glow {
  position: absolute;
  inset: -20%;
  background: 
    radial-gradient(
      ellipse 800px 600px at 50% 45%,
      rgba(168, 182, 161, 0.15),
      transparent 70%
    );
  animation: glowPulse 8s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes glowPulse {
  0% {
    opacity: 0.4;
    transform: scale(1) translateY(0);
  }
  100% {
    opacity: 0.7;
    transform: scale(1.05) translateY(-10px);
  }
}

/* Decorative Floating Shapes */
.hero-decorative-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  background-image: url('/img/hero-wide-polignano.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Overlay negru transparent peste poza */
.hero-decorative-shapes::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, 
    rgba(168, 182, 161, 0.12), 
    transparent 70%);
  filter: blur(40px);
  z-index: 2;
}

.shape-1 {
  width: 400px;
  height: 400px;
  top: 10%;
  right: 15%;
  animation: float1 20s ease-in-out infinite;
}

.shape-2 {
  width: 300px;
  height: 300px;
  bottom: 20%;
  left: 10%;
  background: radial-gradient(circle, 
    rgba(214, 178, 140, 0.1), 
    transparent 70%);
  animation: float2 25s ease-in-out infinite;
}

.shape-3 {
  width: 250px;
  height: 250px;
  top: 60%;
  right: 8%;
  background: radial-gradient(circle, 
    rgba(240, 232, 240, 0.15), 
    transparent 70%);
  animation: float3 18s ease-in-out infinite;
}

@keyframes float1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-30px, -40px) scale(1.1); }
}

@keyframes float2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.15); }
}

@keyframes float3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-20px, 35px) scale(1.08); }
}

/* Hero Container */
.hero-container {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

/* Kicker Subtle */
.hero-kicker {
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 0.2s;
}

.kicker-line {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent, 
    var(--sage-primary), 
    transparent);
}

.kicker-text {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage-dark);
}

/* Main Glassmorphism Card */
.hero-glass-card {
  width: 100%;
  padding: clamp(2.5rem, 5vw, 4rem);
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur)) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  box-shadow: 
    var(--shadow-xl),
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 0 80px rgba(168, 182, 161, 0.15);
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: fadeInScale 1s ease forwards 0.4s;
}

.hero-glass-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    radial-gradient(circle at 30% 30%, 
      rgba(255, 255, 255, 0.3), 
      transparent 50%);
  pointer-events: none;
  animation: shimmer 10s ease infinite;
}

@keyframes shimmer {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
  50% { transform: translate(10%, 10%) scale(1.1); opacity: 0.6; }
}

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

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Hero Title */
.hero-title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  line-height: 1.12;
  text-align: center;
  margin-bottom: 1.5rem;
  position: relative;
}

.hero-title-highlight {
  color: var(--sage-dark);
  position: relative;
  display: inline-block;
}

.hero-title-highlight::after {
  content: '';
  position: absolute;
  bottom: 0.1em;
  left: -0.1em;
  right: -0.1em;
  height: 0.35em;
  background: linear-gradient(90deg, 
    rgba(168, 182, 161, 0.2), 
    rgba(168, 182, 161, 0.35),
    rgba(168, 182, 161, 0.2));
  border-radius: 4px;
  z-index: -1;
}

/* Decorative Divider */
.hero-decorative-divider {
  width: 100px;
  height: 3px;
  margin: 1.5rem auto;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(168, 182, 161, 0.3), 
    transparent);
}

.divider-glow {
  position: absolute;
  inset: -2px;
  background: linear-gradient(90deg, 
    transparent, 
    var(--sage-primary), 
    transparent);
  filter: blur(8px);
  animation: glowSlide 3s ease-in-out infinite;
}

@keyframes glowSlide {
  0%, 100% { transform: translateX(-100%); opacity: 0; }
  50% { transform: translateX(100%); opacity: 1; }
}

/* Hero Subtitle */
.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.75;
  text-align: center;
  color: var(--text-secondary);
  max-width: 48ch;
  margin: 0 auto 2rem;
}

/* Hero Points */
.hero-points {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  min-height: 100px;
  overflow: hidden;
}

.hero-point {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.6));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(168, 182, 161, 0.15);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  min-height: 100px;
}

.hero-point.active {
  opacity: 1;
  transform: translateY(0);
}

/* Shine effect */
.hero-point::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}

.hero-point:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.75));
  border-color: rgba(168, 182, 161, 0.3);
  box-shadow: 0 6px 30px rgba(168, 182, 161, 0.15);
}

.point-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage-primary);
  margin-top: 0.15rem;
}

.point-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.point-text strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* CTA Buttons Group */
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  width: 100%;
}

/* Hero Simple Message (sub CTA) */
.hero-simple-message {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--text-primary);
  text-align: center;
  margin-top: 1.5rem;
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.1rem 2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
  font-family: inherit;
}

.cta-button::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.2), 
    transparent);
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.cta-button:hover::before {
  opacity: 1;
}

.cta-primary {
  background: linear-gradient(135deg, 
    var(--sage-primary), 
    var(--sage-hover));
  color: white;
  box-shadow: 
    0 8px 24px rgba(168, 182, 161, 0.3),
    inset 0 -2px 8px rgba(0, 0, 0, 0.1),
    0 0 0 0 rgba(168, 182, 161, 0.4);
  animation: ctaPulse 3s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%, 100% {
    box-shadow: 
      0 8px 24px rgba(168, 182, 161, 0.3),
      inset 0 -2px 8px rgba(0, 0, 0, 0.1),
      0 0 0 0 rgba(168, 182, 161, 0.4);
  }
  50% {
    box-shadow: 
      0 12px 32px rgba(168, 182, 161, 0.4),
      inset 0 -2px 8px rgba(0, 0, 0, 0.1),
      0 0 0 8px rgba(168, 182, 161, 0.15);
  }
}

.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 14px 38px rgba(168, 182, 161, 0.4),
    inset 0 -2px 8px rgba(0, 0, 0, 0.1);
}

.cta-secondary {
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-primary);
  border: 1.5px solid rgba(168, 182, 161, 0.3);
  box-shadow: var(--shadow-sm);
}

.cta-secondary:hover {
  background: white;
  border-color: var(--sage-primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.cta-arrow,
.cta-icon {
  font-size: 1.1rem;
  transition: transform var(--transition-smooth);
}

.cta-button:hover .cta-arrow {
  transform: translateX(4px);
}

.cta-button:hover .cta-icon {
  transform: rotate(90deg) scale(1.1);
}

/* Hero Pills (Reassurance) */
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  width: 100%;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(168, 182, 161, 0.2);
  border-radius: 999px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: all var(--transition-smooth);
}

.pill:hover {
  background: rgba(255, 255, 255, 0.85);
  border-color: var(--sage-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.pill-icon {
  font-size: 1rem;
}

/* Hero Info Card (under glass card) */
.hero-info-card {
  width: 100%;
  max-width: 720px;
  padding: 1.75rem;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(168, 182, 161, 0.15);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  opacity: 0;
  animation: fadeInUp 1s ease forwards 0.8s;
}

.info-card-content {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.info-avatar {
  position: relative;
  flex-shrink: 0;
}

.avatar-text {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, 
    rgba(168, 182, 161, 0.3), 
    rgba(214, 178, 140, 0.2));
  border: 1px solid rgba(168, 182, 161, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--sage-dark);
  position: relative;
  z-index: 1;
}

.avatar-glow {
  position: absolute;
  inset: -8px;
  background: radial-gradient(circle, 
    rgba(168, 182, 161, 0.3), 
    transparent 70%);
  filter: blur(16px);
  z-index: 0;
  animation: avatarGlow 4s ease-in-out infinite;
}

@keyframes avatarGlow {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.1); }
}

.info-text {
  flex: 1;
}

.info-note {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 0;
}

.info-note strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* === SECTION: "Alege ce te doare" === */
