/* HERO SECTION */
.hero {
  background: url('../images/hero-evenimente.jpg') center/cover no-repeat;
  height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f8f1b3;
  text-align: center;
  position: relative;
}
.hero .overlay {
  background: rgba(206, 172, 172, 0.89);
  padding: 30px;
  border-radius: 14px;
  max-width: 800px;
}
.hero h1 {
  font-size: clamp(24px, 4vw, 42px);
  margin-bottom: 16px;
}
.hero p {
  font-size: clamp(16px, 2vw, 20px);
  margin-bottom: 20px;
}
.cta {
  display: inline-block;
  padding: 14px 28px;
  background: #ecdc80;
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 6px 16px rgba(10,84,255,0.35);
  transition: background 0.3s;
}
.cta:hover {
  background: #083dcc;
}

/* BENEFICII */
.beneficii {
  padding: 60px 20px;
  text-align: center;
}
.beneficii h2 {
  font-size: 28px;
  margin-bottom: 30px;
}
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 20px;
}
.card {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 12px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* GALERIE */
.galerie {
  padding: 60px 20px;
  text-align: center;
  overflow: hidden; /* ascunde imaginile parțiale */
}

.galerie h2 {
  font-size: clamp(24px, 4vw, 32px);
  margin-bottom: 30px;
  color: gold;
  text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

/* Carusel slider */
.slider {
  display: flex;
  gap: 24px;
  overflow-x: hidden; /* ascunde imaginile în afara viewportului */
  scroll-behavior: smooth;
  justify-content: center; /* centrare pe pagină */
}

.slider img {
  height: clamp(240px, 30vw, 320px);
  border-radius: 16px;
  flex: 0 0 auto;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

/* Efect cinematic la hover */
.slider img:hover {
  transform: scale(1.08) rotateY(6deg);
  box-shadow: 0 12px 28px rgba(0,0,0,0.45);
}

/* Mobil – imaginile ocupă 100% din viewport */
@media (max-width: 768px) {
  .slider img {
    height: 260px;
    flex: 0 0 100%; /* fiecare imagine ocupă toată lățimea ecranului */
    margin: 0 auto;
  }
}

/* CTA FINAL */
.cta-final {
  text-align: center;
  padding: 60px 20px;
  background: #dc45f0;
  color: #fff;
}
.cta-final h2 {
  font-size: 26px;
  margin-bottom: 20px;
}
.cta-final .cta {
  background: #fff;
  color: #0a54ff;
}
#countdown {
  font-size: 24px;
  font-weight: bold;
  margin: 20px 0;
  color: #fff;
  background: rgba(241, 204, 123, 0.884);
  padding: 12px 20px;
  border-radius: 10px;
  display: inline-block;
}
#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.campaign-card {
  position: relative;
  z-index: 1; /* cardul stă deasupra efectului */
}
.cta-home {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: #0a54ff;
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 6px 16px rgba(10,84,255,0.35);
  transition: background 0.3s;
}
.cta-home:hover {
  background: #083dcc;
}
.cta-home svg {
  vertical-align: middle;
}
.hero-royal {
  background: url('../images/hero-royal.jpg') center/cover no-repeat;
  height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0 20px;
  border-left: 12px solid gold;
  border-right: 12px solid gold;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.55);
  padding: 60px 28px 32px; /* spațiu mai mare sus pentru ghirlandă */
  border-radius: 16px;
  text-align: center;
  color: #fff;
  max-width: 860px;
  width: min(92vw, 860px);
  box-shadow: 0 0 40px rgba(0,0,0,0.4);
  position: relative;
}

/* Ghirlanda deasupra cardului */
.ghirlanda-container {
  position: absolute;
  top: 0; /* fixată la partea superioară a cardului */
  left: 50%;
  transform: translate(-50%, -50%); /* ridicată puțin deasupra */
  width: 100%;
  max-width: 700px;
  pointer-events: none;
}

.ghirlanda-svg {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.35));
}

/* Lumini */
.light.gold {
  fill: gold;
  animation: glowGold 1.6s ease-in-out infinite alternate;
  filter: drop-shadow(0 0 6px rgba(255,215,0,0.9)) drop-shadow(0 0 14px rgba(255,215,0,0.6));
}
.light.blue {
  fill: #0a54ff;
  animation: glowBlue 1.6s ease-in-out infinite alternate;
  animation-delay: 0.4s;
  filter: drop-shadow(0 0 6px rgba(10,84,255,0.9)) drop-shadow(0 0 14px rgba(10,84,255,0.6));
}

@keyframes glowGold {
  from { opacity: 0.55; transform: scale(0.95); }
  to   { opacity: 1;    transform: scale(1.08); }
}
@keyframes glowBlue {
  from { opacity: 0.55; transform: scale(0.95); }
  to   { opacity: 1;    transform: scale(1.08); }
}

/* Text */
.hero-overlay h1 {
  font-size: clamp(28px, 5vw, 48px);
  margin: 40px 0 18px; /* spațiu sub ghirlandă */
  font-weight: 700;
  color: gold;
}
.hero-overlay p {
  font-size: clamp(16px, 2vw, 22px);
  margin-bottom: 28px;
  color: #fff;
}

/* CTA */
.cta {
  display: inline-block;
  padding: 14px 28px;
  background: #0a54ff;
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 6px 16px rgba(10,84,255,0.35);
  transition: background 0.3s;
}
.cta:hover {
  background: #083dcc;
}
#confetti-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* să nu blocheze clickurile */
  z-index: 9999; /* peste tot, dar nu afectează ghirlanda */
}
/* STRATEGIE */
.strategie {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, #1a1a1a, #2c2c2c);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.strategie-card {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 8px 28px rgba(0,0,0,0.6);
  animation: slideIn 2s ease forwards;
}

.strategie-text h2 {
  font-size: clamp(26px, 4vw, 36px);
  margin-bottom: 20px;
  color: gold;
  text-shadow: 0 2px 6px rgba(0,0,0,0.5);
}

/* Text cu efect aurit animat */
.strategie-highlight {
  font-size: clamp(16px, 2vw, 22px);
  line-height: 1.6;
  background: linear-gradient(90deg, #fff, #ffd700, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: shine 6s linear infinite;
}

/* Animatie card glisant */
@keyframes slideIn {
  from { transform: translateY(80px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Animatie gradient glisant */
@keyframes shine {
  0% { background-position: -200px 0; }
  100% { background-position: 200px 0; }
}
/* FOOTER */
.site-footer {
  background: #1a1a1a; /* fundal întunecat premium */
  color: #fff;
  text-align: center;
  padding: 30px 20px;
  font-family: 'Segoe UI', sans-serif;
  border-top: 2px solid gold;
}

.site-footer p {
  margin: 0 0 12px;
  font-size: 14px;
  opacity: 0.8;
}

.site-footer a {
  display: inline-block;
  margin: 8px 16px;
  font-size: 15px;
  color: gold;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

.site-footer a:hover {
  color: #ffd700;
  transform: scale(1.05);
}

/* Buton cookie settings */
.cookie-btn {
  margin-top: 12px;
  padding: 10px 20px;
  font-size: 14px;
  border: 1px solid gold;
  border-radius: 6px;
  background: transparent;
  color: gold;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

.cookie-btn:hover {
  background: gold;
  color: #1a1a1a;
}
.Video video, .Video img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
.youtube-campanie {
  background: #0a0a0a;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.youtube-campanie h2 {
  font-size: 28px;
  margin-bottom: 24px;
  color: gold;
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 960px;
  aspect-ratio: 16 / 9;
  margin: 0 auto 20px;
  border: 2px solid gold;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.cta-video {
  display: inline-block;
  margin-top: 12px;
  font-size: 16px;
  color: gold;
  text-decoration: none;
  border: 1px solid gold;
  padding: 10px 20px;
  border-radius: 6px;
  transition: background 0.3s ease, color 0.3s ease;
}

.cta-video:hover {
  background: gold;
  color: #0a0a0a;
}
.demo-site {
  background: #0a0a0a;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
  padding: 20px; /* redus pentru mobil */
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
  max-width: 1200px; /* limitează lățimea pe desktop */
  margin: auto;
}

.hero h1 {
  color: gold;
  font-size: clamp(1.5rem, 4vw, 2.5rem); /* scalabil pe mobil */
  margin-bottom: 10px;
}

.galerie {
  display: flex;
  flex-wrap: wrap; /* permite rearanjarea pe mobil */
  justify-content: center;
  gap: 15px;
  margin: 30px 0;
}

.galerie img {
  flex: 1 1 100%; /* pe mobil ocupă toată lățimea */
  max-width: 30%; /* pe desktop rămâne 30% */
  border-radius: 8px;
  border: 2px solid gold;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
  transition: transform 0.3s ease;
}

.galerie img:hover {
  transform: scale(1.05);
}

.servicii {
  display: flex;
  flex-wrap: wrap; /* adaptiv pe mobil */
  justify-content: center;
  gap: 15px;
  margin: 20px 0;
}

.servicii .bloc {
  flex: 1 1 100%; /* pe mobil blocurile se aliniază vertical */
  max-width: 30%; /* pe desktop rămân 3 pe rând */
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid gold;
  padding: 15px;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.servicii .bloc:hover {
  background: gold;
  color: #0a0a0a;
}

.cta-video {
  display: inline-block;
  margin-top: 20px;
  font-size: clamp(1rem, 2.5vw, 1.2rem); /* scalabil */
  color: gold;
  text-decoration: none;
  border: 1px solid gold;
  padding: 10px 20px;
  border-radius: 6px;
  transition: background 0.3s ease, color 0.3s ease;
}

.cta-video:hover {
  background: gold;
  color: #0a0a0a;
}

#confetti-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 9999; /* asigură că e deasupra */
}

/* Media queries pentru mobil */
@media (max-width: 768px) {
  .galerie img {
    max-width: 100%;
  }
  .servicii .bloc {
    max-width: 100%;
  }
}
img {
  filter: brightness(1.5) contrast(1. 2);
}
