* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth; 
}

body {
  font-family: 'Arial', sans-serif;
  background: #0f0f0f;
  color: #fff;
  line-height: 1.6;
}

/* HERO */
.hero {
  height: 100vh;
  background: radial-gradient(circle at top, #222, #000);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  animation: fadeUp 1.2s ease-in-out
}

.hero-content {
  transition: opacity 0.2s ease, transform 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: auto;
  gap: 12px;
}

.logo {
  width: clamp(400px, 70vw, 800px);
  height: auto;
  display: block;
  opacity: 0;
  animation: logoFade 1s ease forwards;
  filter: drop-shadow(0 0 25px rgba(255, 0, 204, 0.5));
  margin-top: 0%;
}

.btn {
  padding: 14px 34px;
  border-radius: 50px;
  background: linear-gradient(135deg, #ff00cc, #3333ff);
  color: white;
  text-decoration: none;
  font-weight: bold;
}

/* SECTIONS */
section {
  padding: 90px 20px;
  max-width: 1100px;
  margin: auto;
}

h2 {
  text-align: center;
  margin-bottom: 40px;
  font-weight: 600;
}

/* BOOTHS */
.booth-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;                          
}

@media (max-width: 600px) {
  .booth-grid {
    grid-template-columns: 1fr;
  }
}

.booth-card {
  background: #161616;
  padding: 25px;
  border-radius: 20px;
  text-align: center;
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.booth-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 20px rgba(255, 0, 204, 0.25);
  transition: transform 0.3s, box-shadow 0.3s;
}


.booth-card.show:hover {
  transform: translateY(-6px);
}


.booth-image {
  height: 200px;
  background: #333;
  border-radius: 15px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  display: block;
}

.booths-title {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}

.booths-title.show {
  opacity: 1;
  transform: translateY(0);
}

.booth-card {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.booth-card.show {
  opacity: 1;
  transform: translateY(0);
}

.booth-image img {
  width: 90%;
  max-width: 250px;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 15px;
  object-fit: cover;
  margin: 0 auto;
  margin-bottom: 15px;
  padding-top: 5px;
}

.booth-image-grid img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}


/* PACKAGES */
.packages {
  background: #111;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  align-items: start;
}

.package-card {
  background: #1a1a1a;
  padding: 30px;
  border-radius: 20px;
  border: 1px solid #222;
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: visible;
  position: relative;
  z-index: 1;
}
.package-card::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 22px;
  filter: blur(20px);
  opacity: 0;
  z-index: -1;
  pointer-events: none; 
  transition: opacity 0.3s ease;
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 20px rgba(255, 0, 204, 0.25);
}

.price {
  font-size: 1.6rem;
  margin: 15px 0;
}

.package-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 0;
}

.package-card.active .package-details {
  max-height: 300px; 
  opacity: 1;
  margin-top: 20px;
}

.package-card.active .toggle-icon {
  transform: rotate(45deg); 
}

.package-card.active .package-details {
  max-height: 500px;
}

.package-header {
  width: 100%;
  background: none;
  border: none;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1.1rem;
  padding: 0;
}

.toggle-icon {
  font-size: 1.8rem;
  transition: transform 0.3s ease;
}


.package-card:hover::before 
{opacity: 0.8;}

.package-card.active:hover::before {
  opacity: 0;
}

.package-1::before {
  background: linear-gradient(135deg, #ad6507, #e0af69);
}

.package-2 hidden::before {
  background: linear-gradient(135deg, #909091, #ffffff);
}

.package-3::before {
  background: linear-gradient(135deg, #ffc400, #f1e368);
}

.package-1.active {
  box-shadow: 0 0 25px rgba(240, 165, 43, 0.86);
}

.package-2.active {
  box-shadow: 0 0 25px #ff00cc;
}

.package-3.active {
  box-shadow: 0 0 25px rgba(245, 203, 36, 0.952);
}


/* CONTACT */
.contact {
  background: #000;
}

.contact-box {
  max-width: 500px;
  margin: auto;
  background: #111;
  padding: 35px;
  border-radius: 20px;
}

.contact-box input,
.contact-box textarea {
  width: 100%;
  margin-bottom: 15px;
  padding: 12px;
  border-radius: 10px;
  border: none;
  background: #222;
  color: white;
}

.contact-box button {
  padding: 14px;
  border-radius: 50px;
  border: none;
  background: linear-gradient(135deg, #ff00cc, #3333ff);
  color: white;
  font-weight: bold;
  cursor: pointer;
}

.form-status {
  margin-top: 15px;
  font-size: 0.9rem;
  text-align: center;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 25px;
  background: #000000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.footer-socials {
  display: flex;
  gap: 20px;
}

.footer-socials a img {
  width: 32px;        /* dimensiune iconiță */
  height: 32px;
  transition: transform 0.3s, filter 0.3s;
  background: linear-gradient(135deg, #ff00cc, #3333ff);
}

.footer-socials a:hover img {
  transform: scale(1.2);
  filter: brightness(1.2);
}

.footer-socials i {
  font-size: 32px;
  color: white;
  transition: transform 0.3s, filter 0.3s;
}
.footer-socials a:hover i {
  transform: scale(1.2);
  filter: brightness(1.2);
}

/* ANIMATION */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


@keyframes logoFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.hidden {
  display: none;
}

.package-details {
  max-height: 500px !important;
  opacity: 1 !important;
  overflow: visible;
  transition: none;
}

.video-section {
  max-width: none;      /* removes the 1100px limit */
  width: 100vw;         /* full screen width */
  padding: 0;           /* remove section padding */
  margin: 50px 0;       /* optional vertical spacing */
  overflow: hidden;
}

.video-full {
  width: 100%;
  height: 60vh;          /* or 60vh */
  object-fit: contain;   /* 👈 keeps resolution */
  background: black;     /* black bars */
  display: block;
}