/* Reset + global */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family:
    "Netflix Sans",
    "Helvetica Neue",
    "Segoe UI",
    Roboto,
    Ubuntu,
    Arial,
    sans-serif;
}


body, html {
  height: 100%;
}

/* Hero section */
.hero {
  position: relative;
  height: 100vh;
  background: url("assets/images/bg.png") center/cover no-repeat;
  background-size: cover;
}

/* Dark overlay for text readability */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

/* Centered content */
.content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;  /* vertical center */
  align-items: center;      /* horizontal center */
  text-align: center;
  padding: 0 20px;
  color: #fff;
}

/* Heading */
.content h1 {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

.content p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  opacity: 0.9;
}

/* Button */
.btn {
  display: inline-block;
  background: #e50914;
  color: #fff;
  padding: 16px 40px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s ease;
  animation: fadeIn 2s ease-out;
}

.btn:hover {
  background: #b20710;
  transform: scale(1.05);
}

/* Fade-in animation */
@keyframes fadeIn {
  from {opacity: 0; transform: translateY(20px);}
  to {opacity: 1; transform: translateY(0);}
}

/* Responsive */
@media (max-width: 768px) {
  .content h1 {
    font-size: 40px;
  }
  .content p {
    font-size: 16px;
  }
  .btn {
    padding: 12px 28px;
    font-size: 16px;
  }
}

/* OTT Logo Moving Strip */
.ott-strip {
  background: #000;
  padding: 40px 0;
  overflow: hidden;
}

.ott-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: scrollOTT 35s linear infinite;
}

.ott-track img {
  height: 80px;
  margin: 0 50px;
  opacity: 0.85;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.ott-track img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

@keyframes scrollOTT {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Heaven Cinemas full-width dark section */
#heaven-cinema {
  width: 100%;
  padding: 80px 20px;
  background: radial-gradient(
    circle at top,
    #1a1a1a 0%,
    #0b0b0b 40%,
    #000000 100%
  );
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Centered content */
.heaven-cinema-section {
  max-width: 1200px;
  margin: 0 auto;
}

/* Heading */
.heaven-cinema-heading {
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 50px;
  color: #ffffff;
}

/* Cards layout */
.heaven-cinema-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* Individual card */
.cinema-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 30px 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cinema-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #ffffff;
}

.cinema-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #d1d1d1;
}

.cinema-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Responsive */
@media (max-width: 1024px) {
  .heaven-cinema-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .heaven-cinema-cards {
    grid-template-columns: 1fr;
  }

  .heaven-cinema-heading {
    font-size: 28px;
  }
}

/* Heaven Cinemas CTA section full-width, gradient background */
.heaven-cinema-cta {
  background: linear-gradient(135deg, #040404 0%, #0b0b0b 100%);
  padding: 40px 20px;       /* reduced to match cards section spacing */
  margin-top: 0;            /* removes gap from previous section */
  text-align: center;
}

/* CTA text */
.heaven-cinema-cta .cta-text {
  color: #ffffff;           /* text visible on dark gradient */
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 25px;
}

/* CTA button */
.heaven-cinema-cta .cta-btn {
  display: inline-block;
  background: #e50914;      /* Netflix-style red button */
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  padding: 14px 36px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.heaven-cinema-cta .cta-btn:hover {
  background: #f6121d;
  transform: translateY(-2px);
}

.scroll-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #e50914, #ff2a2a);
  color: #ffffff;
  font-size: 22px;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9999;
  box-shadow: 0 10px 30px rgba(229, 9, 20, 0.45);
  transition: opacity 0.3s ease, transform 0.3s ease;
  
  opacity: 0;
  visibility: hidden;
}

/* When visible */
.scroll-top.show {
  opacity: 5;
  visibility: visible;
}

.micro-footer {
  padding: 30px 20px;
  text-align: center;
  font-size: 13px;
  color: #888;
  background-color: #000000;
  margin: 0;
}



.micro-footer {
  background: linear-gradient(
    to bottom,
    #0a0a0a 0%,
    #000000 100%
  );
}



