/* ================= GLOBAL ================= */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins',sans-serif;
}

body{
  background:#f6f7fb;
  color:#111;
}

/* ================= HEADER ================= */
/* SEARCH BAR */
.filmy-search{
  flex:1;
  max-width:420px;
}

.filmy-search input{
  width:100%;
  padding:10px 18px;
  border-radius:30px;
  border:none;
  outline:none;
  font-size:14px;
}

/* LOCATION DROPDOWN */
.filmy-location{
  padding:9px 14px;
  border-radius:20px;
  border:none;
  font-size:14px;
  background:#fff;
  cursor:pointer;
}

/* SIGN IN / LOGOUT BUTTON */
.sign-btn{
  padding:9px 18px;
  border-radius:22px;
  border:none;
  background:linear-gradient(45deg,#ff005c,#ffcc00);
  color:#000;
  font-weight:600;
  cursor:pointer;
}

/* LOGIN MODAL (kept same look) */
.login-modal{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.7);
  display:none;
  justify-content:center;
  align-items:center;
  z-index:2000;
}

.login-box{
  background:#111;
  padding:25px;
  width:320px;
  border-radius:12px;
  text-align:center;
}

.login-box h3{
  color:#fff;
  margin-bottom:12px;
}

.login-box input{
  width:100%;
  padding:10px;
  margin-bottom:12px;
}

.login-box button{
  width:100%;
  padding:10px;
  background:#ff003c;
  color:#fff;
  border:none;
}

.switch{
  margin-top:10px;
  cursor:pointer;
  color:#ff6a00;
}


/* ================= HERO SLIDER ================= */

.filmy-hero{
  padding:25px 5%;
  background:#f6f7fb;
}

/* OUTER BANNER */
.filmy-carousel{
  position:relative;
  width:100%;
  height:360px;
  border-radius:18px;
  overflow:hidden;
  background:#000; /* background fill when image doesn't cover */
  box-shadow:0 18px 45px rgba(0,0,0,.18);
}

/* SLIDE */
.filmy-slide{
  position:absolute;
  inset:0;

  /* 🔥 KEY FIX */
  background-size:contain;     /* NO CROPPING */
  background-position:center;
  background-repeat:no-repeat;

  opacity:0;
  transition:.8s ease;
}

.filmy-slide.active{
  opacity:1;
}

/* OVERLAY (kept subtle so image stays clear) */
.filmy-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    to right,
    rgba(0,0,0,.55),
    rgba(0,0,0,.25),
    rgba(0,0,0,.1)
  );
}

/* CONTENT */
.filmy-content{
  position:absolute;
  left:60px;
  bottom:60px;
  color:#fff;
  z-index:2;
}

.filmy-content h1{
  font-size:42px;
  font-weight:900;
}

.filmy-content p{
  font-size:18px;
  margin-top:10px;
  opacity:.9;
}

/* ARROWS */
.filmy-nav-btn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:46px;
  height:46px;
  border:none;
  border-radius:50%;
  background:rgba(255,255,255,.95);
  color:#111;
  font-size:26px;
  cursor:pointer;
  box-shadow:0 8px 22px rgba(0,0,0,.25);
  transition:.3s;
  z-index:3;
}

.filmy-nav-btn:hover{
  background:#ff005c;
  color:#fff;
}

.filmy-nav-btn.left{ left:18px; }
.filmy-nav-btn.right{ right:18px; }

/* MOBILE */
@media(max-width:768px){
  .filmy-carousel{
    height:230px;
  }

  .filmy-content{
    left:25px;
    bottom:25px;
  }

  .filmy-content h1{
    font-size:26px;
  }

  .filmy-content p{
    font-size:14px;
  }
}
















/* ================= FILMY FOOTER ================= */
.filmy-footer{
  position:relative;
  background:radial-gradient(circle at top,#1a1a2e,#0b0b12);
  padding:80px 60px 30px;
  color:#fff;
  overflow:hidden;
}

/* Glow */
.filmy-footer::before,
.filmy-footer::after{
  content:"";
  position:absolute;
  width:300px;
  height:300px;
  border-radius:50%;
  filter:blur(120px);
  opacity:.35;
}

.filmy-footer::before{
  background:#ff005d;
  top:-100px;
  left:-100px;
}

.filmy-footer::after{
  background:#6a5cff;
  bottom:-120px;
  right:-120px;
}

/* Grid */
.filmy-footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:40px;
  position:relative;
  z-index:2;
}

/* Brand */
.filmy-footer-brand h2{
  font-size:34px;
  font-weight:900;
  background:linear-gradient(45deg,#ff005d,#ffcc00);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.filmy-footer-brand p{
  margin:20px 0;
  font-size:15px;
  color:#cfcfd6;
  max-width:420px;
}

/* Newsletter */
.filmy-newsletter{
  display:flex;
  margin-top:20px;
}

.filmy-newsletter input{
  flex:1;
  padding:14px 16px;
  border-radius:30px 0 0 30px;
  border:none;
  background:#1a1a26;
  color:#fff;
}

.filmy-newsletter button{
  padding:14px 26px;
  border:none;
  border-radius:0 30px 30px 0;
  background:linear-gradient(45deg,#ff005d,#ffcc00);
  font-weight:700;
  cursor:pointer;
}

/* Columns */
.filmy-footer-col h4{
  font-size:18px;
  margin-bottom:20px;
  position:relative;
}

.filmy-footer-col h4::after{
  content:"";
  width:40px;
  height:3px;
  background:#ff005d;
  position:absolute;
  left:0;
  bottom:-6px;
  border-radius:10px;
}

.filmy-footer-col a{
  display:block;
  text-decoration:none;
  color:#bcbccc;
  margin:10px 0;
  font-size:14px;
  transition:.3s;
}

.filmy-footer-col a:hover{
  color:#fff;
  transform:translateX(6px);
}

/* Social */
.filmy-socials{
  display:flex;
  gap:15px;
  margin-top:25px;
}

.filmy-socials a{
  width:44px;
  height:44px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#1a1a26;
  color:#fff;
  font-size:18px;
  transition:.4s;
}

.filmy-socials a:hover{
  background:#ff005d;
  box-shadow:0 0 25px #ff005d;
}

/* Bottom */
.filmy-footer-bottom{
  margin-top:60px;
  padding-top:25px;
  border-top:1px solid rgba(255,255,255,.1);
  display:flex;
  justify-content:space-between;
  font-size:14px;
  color:#aaa;
}

/* Floating text */
.filmy-footer-float{
  position:absolute;
  font-size:140px;
  font-weight:900;
  opacity:.03;
  bottom:-40px;
  left:50%;
  transform:translateX(-50%);
  pointer-events:none;
}

/* Responsive */
@media(max-width:900px){
  .filmy-footer{
    padding:60px 25px 25px;
  }
  .filmy-footer-grid{
    grid-template-columns:1fr;
  }
  .filmy-footer-bottom{
    flex-direction:column;
    gap:10px;
    text-align:center;
  }
  .filmy-footer-float{
    font-size:90px;
  }
}



/* ================= ONLY IN THEATRES ================= */
.filmy-theatre-section{
  padding:80px 6%;
  background:#fff;
}
.filmy-theatre-card img{
    width:100%;
    height:260px;
    object-fit:cover;
    border-radius:12px;
    display:block;
}

.filmy-theatre-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:30px;
}

.filmy-theatre-head h2{
  font-size:34px;
  font-weight:800;
  color:#111;
}

.filmy-theatre-head span{
  background:linear-gradient(45deg,#ff005c,#ffcc00);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.filmy-theatre-more{
  padding:10px 22px;
  border-radius:30px;
  border:none;
  background:#111;
  color:#fff;
  font-weight:600;
  cursor:pointer;
}

/* SLIDER WRAP */
.filmy-theatre-wrap{
  position:relative;
}

/* SLIDER */
.filmy-theatre-slider{
  display:flex;
  gap:22px;
  overflow-x:auto;
  scroll-behavior:smooth;
  padding-bottom:10px;
}

.filmy-theatre-slider::-webkit-scrollbar{
  display:none;
}

/* CARD */
.filmy-theatre-card{
  min-width:220px;
  background:#fff;
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 12px 30px rgba(0,0,0,.15);
  transition:.35s ease;
  cursor:pointer;
}

.filmy-theatre-card:hover{
  transform:translateY(-10px) scale(1.03);
}

/* IMAGE */
.filmy-theatre-card img{
  width:100%;
  height:320px;
  object-fit:cover;
}

/* INFO */
.filmy-theatre-info{
  padding:14px;
}

.filmy-theatre-info h3{
  font-size:16px;
  font-weight:600;
  margin-bottom:4px;
}

.filmy-theatre-info p{
  font-size:13px;
  color:#666;
}

/* ARROWS */
.filmy-theatre-arrow{
  position:absolute;
  top:45%;
  transform:translateY(-50%);
  width:48px;
  height:48px;
  border-radius:50%;
  border:none;
  background:#fff;
  font-size:26px;
  cursor:pointer;
  box-shadow:0 10px 25px rgba(0,0,0,.25);
  transition:.3s;
  z-index:10;
}

.filmy-theatre-arrow:hover{
  background:#ff005c;
  color:#fff;
}

.filmy-theatre-arrow.left{ left:-22px; }
.filmy-theatre-arrow.right{ right:-22px; }

/* MOBILE */
@media(max-width:768px){
  .filmy-theatre-head h2{
    font-size:26px;
  }
  .filmy-theatre-arrow{
    display:none;
  }
}










/* ================= MUSIC STAGE SECTION ================= */
/* =====================================================
   LIVE MUSIC EXPERIENCES – FINAL LOCKED FIX
   ===================================================== */

/* SECTION WRAPPER */
.filmy-music-section{
    position: relative;
    width: 100%;
    padding: 90px 6% 70px;
    background: #e6ddd6;
    overflow: hidden;
    isolation: isolate; /* 🔑 prevents overlap from other sections */
}

/* HEADER */
.filmy-music-head{
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin-bottom: 40px;
}

.filmy-music-head h2{
    font-size: 50px;
    font-weight: 800;
    line-height: 1.1;
}

.filmy-music-head p{
    font-size: 18px;
    margin-top: 10px;
    color: #111;
}

/* STAGE CONTAINER */
.filmy-music-stage{
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    width: 100%;
    z-index: 5;
}

/* PANEL CARD */
.filmy-music-panel{
    position: relative;
    width: 100%;
    height: 420px; /* 🔒 fixed height */
    border-radius: 24px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    flex-shrink: 0;
}

/* IMAGE OVERLAY */
.filmy-music-overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.85),
        rgba(0,0,0,0.25),
        rgba(0,0,0,0.05)
    );
    z-index: 1;
}

/* CONTENT */
.filmy-music-content{
    position: absolute;
    left: 22px;
    bottom: 22px;
    z-index: 2;
    color: #fff;
    max-width: 85%;
}

.filmy-music-content h3{
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 4px;
}

.filmy-music-content span{
    font-size: 14px;
    opacity: 0.85;
}

/* 🔒 STOP SECTION COLLAPSING */
.filmy-music-section::after{
    content:"";
    display:block;
    clear:both;
}

/* ================= MOBILE SAFE ================= */
@media(max-width:1024px){
    .filmy-music-stage{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:680px){
    .filmy-music-stage{
        grid-template-columns: 1fr;
    }

    .filmy-music-panel{
        height: 300px;
    }

    .filmy-music-head h2{
        font-size: 34px;
    }
}

/* EVENT STRIP */
.filmy-music-event{
  position:relative;
  min-width:520px;
  height:320px;
  border-radius:28px;
  background-size:cover;
  background-position:center;
  overflow:hidden;
  scroll-snap-align:start;
  box-shadow:0 25px 60px rgba(0,0,0,.55);
  transition:.5s ease;
}

.filmy-music-event:hover{
  transform:scale(1.04);
}

/* OVERLAY */
.filmy-music-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    120deg,
    rgba(0,0,0,.85),
    rgba(0,0,0,.35)
  );
}

/* CONTENT */
.filmy-music-content{
  position:absolute;
  bottom:35px;
  left:35px;
  z-index:2;
  max-width:75%;
}

.filmy-music-content h3{
  font-size:32px;
  font-weight:800;
  margin:12px 0;
}

.filmy-music-content p{
  font-size:16px;
  color:#ddd;
}

/* TAG */
.filmy-music-content .tag{
  display:inline-block;
  padding:6px 14px;
  border-radius:20px;
  background:#ff005c;
  font-size:13px;
  font-weight:700;
}

.filmy-music-content .tag.live{
  background:#1ed760;
  color:#000;
}

/* BUTTON */
.filmy-music-content button{
  margin-top:16px;
  padding:12px 28px;
  border:none;
  border-radius:30px;
  background:linear-gradient(45deg,#ff005c,#ffcc00);
  font-weight:700;
  cursor:pointer;
}

/* SCROLL TEXT */
.filmy-music-scroll{
  margin-top:35px;
  text-align:center;
  font-size:14px;
  letter-spacing:2px;
  opacity:.7;
}

/* MOBILE */
@media(max-width:768px){
  .filmy-music-head h2{
    font-size:34px;
  }

  .filmy-music-event{
    min-width:88%;
    height:300px;
  }
}




/* ================= MUSIC EXPERIENCES ================= */
.filmy-music-section{
  padding:100px 6%;
  background:#D9CFC7;
  color:#fff;
}

.filmy-music-head{
  margin-bottom:40px;
}

.filmy-music-head h2{
  font-size:44px;
  font-weight:900;
}

.filmy-music-head span{
  background:linear-gradient(45deg,#ff005c,#ffcc00);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.filmy-music-head p{

  margin-top:8px;
}

.filmy-music-stage{
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  gap:30px;
}

.filmy-music-panel{
  position:relative;
  height:420px;
  border-radius:30px;
  background-size:cover;
  background-position:center;
  overflow:hidden;
  cursor:pointer;
  transition:.5s;
}

.filmy-music-panel:hover{
  transform:scale(1.04);
}

.filmy-music-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    to top,
    rgba(0,0,0,.8),
    rgba(0,0,0,.2)
  );
}

.filmy-music-content{
  position:absolute;
  bottom:30px;
  left:30px;
}

.filmy-music-content h3{
  font-size:26px;
  font-weight:700;
}

.filmy-music-content span{
  font-size:14px;
  color:#ffcc00;
}

/* Responsive */
@media(max-width:900px){
  .filmy-music-stage{
    grid-template-columns:1fr;
  }
}




/* ================= ACTIVITIES ZONE ================= */
.filmy-activity-zone{
  padding:90px 6%;
  background:#fff;
}

.filmy-activity-zone h2{
  font-size:40px;
  font-weight:900;
  margin-bottom:40px;
}

.filmy-activity-zone span{
  color:#ff005c;
}

.filmy-activity-strip{
  display:flex;
  gap:26px;
  overflow-x:auto;
  scroll-behavior:smooth;
  padding-bottom:10px;
}

.filmy-activity-strip::-webkit-scrollbar{
  display:none;
}

.filmy-activity-item{
  min-width:380px;
  height:260px;
  border-radius:26px;
  position:relative;
  overflow:hidden;
  cursor:pointer;
  transition:.4s;
}

.filmy-activity-item img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.filmy-activity-item:hover{
  transform:translateY(-10px);
}

.filmy-activity-text{
  position:absolute;
  inset:0;
  background:linear-gradient(
    to top,
    rgba(0,0,0,.75),
    rgba(0,0,0,.2)
  );
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:22px;
  color:#fff;
}

.filmy-activity-text h3{
  font-size:22px;
}

.filmy-activity-text p{
  font-size:14px;
  color:#ffcc00;
}




/* ================= TESTIMONIALS ================= */
.filmy-testimonials{
  padding:120px 6%;
  background:#FFF2EB; /* 🍑 Peach outer background */
  text-align:center;
}

/* Heading */
.filmy-testimonials h2{
  font-size:46px;
  font-weight:900;
  margin-bottom:70px;
  color:#111;
}

.filmy-testimonials span{
  background:linear-gradient(45deg,#ff005c,#ff9a5a);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

/* Track */
.filmy-testimonial-track{
  display:flex;
  gap:40px;
  justify-content:center;
  flex-wrap:wrap;
}

/* CARD */
.filmy-testimonial{
  max-width:360px;
  background:#f2f2f2;              /* 🌫 Grey card */
  padding:40px;
  border-radius:30px;
  box-shadow:0 20px 40px rgba(0,0,0,.15);
  transition:.4s ease;
}

/* Hover effect */
.filmy-testimonial:hover{
  transform:translateY(-10px);
  box-shadow:0 30px 60px rgba(0,0,0,.2);
}

/* Text */
.filmy-testimonial p{
  font-size:18px;
  margin-bottom:22px;
  line-height:1.6;
  color:#333;
}

/* Name */
.filmy-testimonial strong{
  font-size:15px;
  color:#ff005c;
}

/* Mobile */
@media(max-width:768px){
  .filmy-testimonials h2{
    font-size:32px;
  }

  .filmy-testimonial{
    max-width:100%;
  }
}











