/* LOADING SCREEN */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: radial-gradient(ellipse at center, #1a0010 0%, #050505 70%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  overflow: hidden;
}

.loader-bg-blobs { position: absolute; inset: 0; pointer-events: none; }

.loader-blob {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: .3;
}

.lb1 { width: 400px; height: 400px; background: var(--hot-pink); top: -100px; left: -100px; animation: blobFloat 4s ease-in-out infinite; }
.lb2 { width: 300px; height: 300px; background: var(--lavender); bottom: -80px; right: -80px; animation: blobFloat 5s ease-in-out infinite reverse; }
.lb3 { width: 200px; height: 200px; background: var(--barbie); top: 50%; left: 50%; transform: translate(-50%, -50%); animation: blobFloat 3s ease-in-out infinite; }

.loader-content { position: relative; z-index: 10; text-align: center; }

.loader-eyebrow {
  font-family: 'Poppins', sans-serif; font-size: .75rem; letter-spacing: .4em;
  color: var(--blush); text-transform: uppercase; opacity: 0;
  transform: translateY(20px); margin-bottom: 1.5rem;
}

.loader-logo {
  opacity: 0; transform: scale(.8);
  filter: drop-shadow(0 0 30px rgba(255, 46, 147, .5));
  line-height: 1.1;
}

.loader-logo img {
  height: clamp(80px, 15vw, 150px);
  width: auto;
}

.loader-tagline {
  font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-style: italic;
  color: var(--blush); letter-spacing: .15em; opacity: 0; transform: translateY(15px);
}

/* HERO SECTION */
#hero {
  height: 100vh; width: 100%; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}

.hero-video-container {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1;
}

.hero-video-container video {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.8;
}

.hero-bg {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(0deg, #050505 0%, transparent 40%, rgba(5, 5, 5, 0.4) 100%);
}

.hero-grid {
  position: absolute; inset: 0; z-index: 3;
  background-image: radial-gradient(rgba(255, 46, 147, 0.05) 1px, transparent 1px);
  background-size: 50px 50px; opacity: 0.5;
}

.hero-content {
  position: relative; z-index: 10; text-align: center; max-width: 900px;
  padding-top: 100px;
}

.hero-eyebrow {
  font-size: .8rem; letter-spacing: .5em; text-transform: uppercase;
  color: var(--hot-pink); margin-bottom: 2rem; display: block;
}

.hero-h1 {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(3rem, 10vw, 8rem);
  font-weight: 300; line-height: 0.9; margin-bottom: 2.5rem;
}

.hero-desc {
  font-size: 1.05rem; color: rgba(255, 255, 255, .7); max-width: 550px;
  margin: 0 auto 3.5rem; line-height: 1.8;
}

/* EXPERIENCE SECTION */
#experience {
  background: #050505; padding: 12rem 0; position: relative; overflow: hidden;
}

.exp-center {
  max-width: 900px; margin: 0 auto; text-align: center; position: relative; z-index: 2;
}

.exp-heading {
  font-family: 'Cormorant Garamond', serif; 
  font-style: italic;
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 700; 
  line-height: 1.1; 
  color: #fff;
  opacity: 0; 
  transform: translateY(40px);
}

.exp-word {
  display: inline-block;
  background: linear-gradient(135deg, #fff 0%, #ffb6c1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 0 0.3rem;
}

.exp-line-wrap {
  display: block;
  margin-bottom: 0.5rem;
}

/* Floating Icons */
.floating-icons-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 10;
}

.float-icon {
  position: absolute;
  filter: drop-shadow(0 0 15px rgba(255, 46, 147, 0.5));
  opacity: 0.8;
  animation: floatIconAnim 6s ease-in-out infinite alternate;
}

.fi-flower { top: 15%; left: 15%; animation-delay: 0s; font-size: 3.5rem; }
.fi-butterfly { bottom: 25%; left: 10%; animation-delay: 1.5s; font-size: 3rem; }
.fi-heart { top: 30%; right: 15%; animation-delay: 3s; font-size: 2.5rem; }

@keyframes floatIconAnim {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-30px) rotate(15deg); }
}

.exp-decor {
  display: flex; align-items: center; justify-content: center; gap: 2rem; margin: 3rem 0; opacity: 0;
}

.exp-line { width: 80px; height: 1px; background: linear-gradient(90deg, transparent, var(--hot-pink)); }
.exp-line:last-child { background: linear-gradient(-90deg, transparent, var(--hot-pink)); }
.exp-gem {
  width: 12px; height: 12px; background: var(--hot-pink); transform: rotate(45deg);
  box-shadow: 0 0 15px var(--hot-pink);
}

/* ABOUT GRID */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; max-width: 1300px;
  margin: 0 auto; padding: 0 3rem 10rem; align-items: center;
}

.about-visual {
  position: relative; border-radius: 30px; overflow: hidden;
  aspect-ratio: 4/5; border: 1px solid rgba(255, 46, 147, .2);
}

.about-visual img { width: 100%; height: 100%; object-fit: cover; }

.about-eyebrow {
  font-size: .75rem; letter-spacing: .4em; text-transform: uppercase;
  color: var(--hot-pink); margin-bottom: 1.5rem;
}

.about-h2 {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300; line-height: 1.1; margin-bottom: 2rem;
}

.about-desc { font-size: 1rem; color: rgba(255, 255, 255, .6); line-height: 1.9; margin-bottom: 3rem; }

.about-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
}

.stat-card {
  padding: 1.5rem; background: rgba(255, 255, 255, .03); border-radius: 20px;
  border-left: 3px solid var(--hot-pink);
}

.stat-num { font-size: 2rem; font-weight: 600; color: #fff; margin-bottom: .3rem; }
.stat-label { font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255, 255, 255, .4); }

/* SERVICES GRID */
/* SERVICES GRID */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; max-width: 1300px; margin: 0 auto; padding: 0 3rem;
}

.service-card {
  position: relative; border-radius: 20px; overflow: hidden;
  aspect-ratio: 3/5; cursor: none;
  border: 1px solid rgba(255, 79, 163, .1);
  background: linear-gradient(180deg, rgba(255, 46, 147, .05) 0%, rgba(5, 5, 5, .9) 100%);
  transition: all .4s cubic-bezier(.25, .46, .45, .94);
  opacity: 0; transform: translateY(40px);
  will-change: transform, opacity;
}

.service-card:hover { transform: translateY(-8px) scale(1.02); }

.service-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: .6; transition: all .8s cubic-bezier(.25, .46, .45, .94);
}

.service-card:hover .service-img { opacity: 1; transform: scale(1.1); }

@media (max-width: 991px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1.5rem 5rem;
  }
  .about-text {
    margin-left: 0;
    padding: 2.5rem 1.5rem;
    text-align: center;
  }
  .services-grid {
    grid-template-columns: 1fr;
    padding: 0 1.5rem;
  }
}



.service-info {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem 1.2rem; z-index: 2;
  background: linear-gradient(0deg, rgba(5, 5, 5, .95) 0%, transparent 100%);
}

.service-name { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 600; margin-bottom: .3rem; }
.service-tag { font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; color: var(--blush); }

/* PRICING */
#pricing {
  background: linear-gradient(180deg, #050505 0%, #0d0008 50%, #050505 100%);
  padding: 4.5rem 0;
}

.pricing-grid {
  max-width: 1200px; margin: 0 auto; padding: 0 3rem;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}

.pricing-card {
  padding: 2.5rem; border-radius: 24px; background: rgba(255, 255, 255, .02);
  border: 1px solid rgba(255, 46, 147, .1); backdrop-filter: blur(20px);
  transition: all .4s ease; opacity: 0; transform: translateY(40px);
}

.pricing-card:hover {
  border-color: rgba(255, 46, 147, .3); background: rgba(255, 46, 147, .03);
  transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0, 0, 0, .4), 0 0 20px rgba(255, 46, 147, .1);
}

.pricing-title { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; margin-bottom: 1rem; color: #fff; }
.pricing-list { list-style: none; }
.pricing-item { display: flex; justify-content: space-between; align-items: center; padding: 1rem 0; border-bottom: 1px solid rgba(255, 255, 255, .05); }
.p-name { font-size: .9rem; color: rgba(255, 255, 255, .8); }
.p-price { font-weight: 600; color: var(--hot-pink); }

/* GALLERY MASONRY */
.gallery-masonry {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; max-width: 1300px;
  margin: 0 auto; padding: 0 2rem;
}

.gallery-item {
  position: relative; border-radius: 15px; overflow: hidden; aspect-ratio: 1/1;
  border: 1px solid rgba(255, 255, 255, .05); transition: all .4s ease; opacity: 0;
}

.gallery-inner { width: 100%; height: 100%; position: relative; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.gallery-item:hover img { transform: scale(1.1); }

/* WHY US */
.why-grid {
  max-width: 1200px; margin: 0 auto; padding: 0 3rem;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}

.why-card {
  padding: 2rem; border-radius: 20px; border: 1px solid rgba(255, 79, 163, .12);
  background: rgba(255, 255, 255, .02); backdrop-filter: blur(20px);
  transition: all .4s ease; opacity: 0; transform: translateY(30px);
}

/* TESTIMONIALS */
.testimonials-track { display: flex; gap: 2rem; width: max-content; padding: 2rem 0; }
.testi-card {
  flex: 0 0 450px; min-width: 300px; padding: 2.5rem;
  border-radius: 24px; border: 1px solid rgba(255, 79, 163, .12);
  background: rgba(255, 255, 255, .03); backdrop-filter: blur(20px);
}

/* ACADEMY STYLES MOVED TO MODULAR CSS */

/* FINALE */
#finale { height: 80vh; background: #050505; display: flex; align-items: center; justify-content: center; text-align: center; position: relative; z-index: 1; }

/* LIGHTBOX */
.lightbox {
  display: none; position: fixed; z-index: 10000; left: 0; top: 0;
  width: 100%; height: 100%; background: rgba(5, 0, 5, 0.9);
  backdrop-filter: blur(15px); align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.4s ease;
}

.lightbox.active { display: flex; opacity: 1; }

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 85%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 15px;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.2, 0, 0.2, 1);
  border: 1px solid rgba(255, 46, 147, 0.2);
}

.lightbox.active img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute; top: 30px; right: 40px; font-size: 3rem; color: #fff; cursor: pointer; z-index: 10001;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 60px;
  height: 60px;
  cursor: pointer;
  font-size: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10001;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--hot-pink);
  border-color: var(--hot-pink);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

@media (max-width: 768px) {
  .lightbox-prev,
  .lightbox-next {
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.5);
  }
}

/* MARQUEE STRIP */
.marquee-strip {
  background: rgba(255, 46, 147, .05);
  border-top: 1px solid rgba(255, 46, 147, .1);
  border-bottom: 1px solid rgba(255, 46, 147, .1);
  padding: 1.2rem 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 10;
}

.marquee-content {
  display: inline-block;
  animation: marquee 30s linear infinite;
}

.marquee-text {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.marquee-text span {
  color: var(--hot-pink);
  margin: 0 1.5rem;
  font-size: 1rem;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
