/* ========================================
   CLUB CINEFILO - Landing Page Styles
   ======================================== */

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background-color: #231f20;
  color: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.8;
}

img {
  max-width: 100%;
  height: auto;
}

/* --- Announcement Banner --- */
.announcement-banner {
  width: 100%;
  background-color: #fc0;
  padding: 10px 20px;
  text-align: center;
  z-index: 100;
}

.announcement-text {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  color: #000000;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0;
}

.announcement-text strong {
  font-weight: 700;
}

/* --- Header / Hero Section --- */
.landing-header {
  position: relative;
  width: 100%;
  min-height: 904px;
  overflow: hidden;
}

.header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 803px;
  z-index: 0;
}

.header-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.header-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 350px;
  background: linear-gradient(to bottom, rgba(55, 55, 55, 0) 8.5%, #231f20 66%);
  z-index: 1;
}

/* --- Navbar --- */
.landing-navbar {
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 100px;
  z-index: 10;
}

.navbar-logo img {
  height: 70px;
  width: auto;
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 25px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar-menu li a {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  text-transform: capitalize;
  letter-spacing: 0.3px;
  transition: color 0.3s ease;
}

.navbar-menu li a:hover {
  color: #fc0;
  opacity: 1;
}

.navbar-menu li a.active {
  font-weight: 700;
  color: #fc0;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 20;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: #fff;
  margin: 5px 0;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* --- Hero Content --- */
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 191px;
  padding-left: 53px;
  max-width: 692px;
  gap: 29px;
}

.hero-title {
  text-align: center;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  letter-spacing: -2.88px;
  line-height: 0.83;
}

.hero-title .line1 {
  font-size: 96px;
  display: block;
  margin-bottom: 0;
}

.hero-title .line2 {
  font-size: 200px;
  display: block;
  font-style: italic;
}

.hero-subtitle {
  text-align: center;
  color: #e6e8ec;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.34;
  max-width: 522px;
}

.hero-subtitle strong {
  font-weight: 900;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 20px 40px;
  border-radius: 10px;
  background: linear-gradient(147deg, rgb(106, 54, 255) 15.76%, rgb(172, 95, 230) 102.86%);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.35;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(106, 54, 255, 0.4);
  opacity: 1;
  color: #fff;
}

/* --- Weekly Movie Section --- */
.weekly-movie {
  position: relative;
  max-width: 1200px;
  margin: -100px auto 0;
  padding: 0 20px;
  z-index: 3;
}

.weekly-movie-inner {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.movie-poster-wrapper {
  position: relative;
  flex-shrink: 0;
  z-index: 2;
}

.movie-badge {
  position: absolute;
  top: 0;
  right: -10px;
  background: #ff2d55;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 16px;
  padding: 8px 24px;
  border-radius: 20px 20px 20px 0;
  text-transform: capitalize;
  z-index: 3;
}

.movie-poster {
  width: 307px;
  height: 456px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.movie-info-card {
  background: #521722;
  border-radius: 18px;
  padding: 50px 50px 40px 80px;
  margin-left: -50px;
  margin-top: 40px;
  flex: 1;
  min-height: 344px;
}

.movie-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 40px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 4px;
  line-height: 1;
}

.movie-meta {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: #aeaeb2;
  margin-bottom: 16px;
  line-height: 1.5;
}

.movie-meta a {
  color: #aeaeb2;
  text-decoration: underline;
}

.movie-description {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #fff;
  line-height: 2;
  margin-bottom: 24px;
}

.movie-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.btn-debate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 35px;
  border: 1px solid #ff2d55;
  border-radius: 28.8px;
  color: #ff2d55;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 18px;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-debate:hover {
  background: #ff2d55;
  color: #fff;
  opacity: 1;
}

.meeting-info {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: 'League Spartan', sans-serif;
  font-weight: 300;
  font-size: 20px;
  color: #aeaeb2;
  text-transform: capitalize;
}

.meeting-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.meeting-info-item img {
  width: 19px;
  height: 20px;
}

/* --- Benefits Section --- */
.benefits-section {
  background: #0e0e0e;
  padding: 80px 26px;
  text-align: center;
}

.benefits-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 80px;
  color: #fc0;
  letter-spacing: -2.4px;
  line-height: 1;
  margin-bottom: 60px;
}

.benefits-grid {
  display: flex;
  justify-content: center;
  gap: 0;
  max-width: 1400px;
  margin: 0 auto 60px;
}

.benefit-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 0 20px;
}

.benefit-icon {
  width: 96px;
  height: 96px;
}

.benefit-name {
  font-family: 'DM Sans', sans-serif;
  font-weight: 900;
  font-size: 48px;
  color: #fc0;
  letter-spacing: -1.44px;
  line-height: 1.1;
}

.benefit-desc {
  font-family: 'Roboto', 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: #fff;
  line-height: 1.25;
  max-width: 320px;
  letter-spacing: 0.4px;
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 20px 40px;
  border: 1px solid #fff;
  border-radius: 10px;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.35;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-outline-white:hover {
  background: #fff;
  color: #0e0e0e;
  opacity: 1;
}

.btn-outline-white .arrow {
  font-size: 20px;
  margin-left: 4px;
}

/* --- Community Section --- */
.community-section {
  background: #0e0e0e;
  padding: 30px 103px 60px;
  text-align: center;
}

.community-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 80px;
  color: #34c759;
  letter-spacing: -2.4px;
  line-height: 1;
  margin-bottom: 40px;
}

.community-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 30px;
  color: #aeaeb2;
  line-height: 1.4;
  margin-bottom: 40px;
}

.community-subtitle strong {
  font-weight: 800;
}

.reviews-grid {
  display: flex;
  justify-content: center;
  gap: 31px;
  max-width: 1234px;
  margin: 0 auto;
}

.review-card {
  border: 1.5px solid #34c759;
  border-radius: 10px;
  padding: 20px;
  width: 378px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 5px;
}

.review-avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  object-fit: cover;
}

.review-name {
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #34c759;
  text-transform: capitalize;
}

.review-content {
  font-family: 'League Spartan', sans-serif;
  font-size: 15px;
  color: #34c759;
  line-height: 1.33;
}

.review-content .movie-ref {
  font-weight: 300;
  display: block;
  margin-bottom: 2px;
}

.review-content .quote {
  font-weight: 400;
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 33px;
}

.review-meta-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: 'League Spartan', sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: #34c759;
}

.review-meta-item img {
  width: 14px;
  height: 14px;
  object-fit: contain;
}

/* --- Footer Section --- */
.landing-footer {
  background: #231f20;
  padding: 80px 0 0;
}

/* Footer CTA */
.footer-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 95px;
  padding: 0 123px;
  margin-bottom: 80px;
  flex-wrap: wrap;
}

.footer-cta-text {
  text-align: center;
}

.footer-cta-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 48px;
  color: #ff2d55;
  letter-spacing: -1.44px;
  line-height: 1.05;
  margin-bottom: 30px;
}

.footer-cta-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: #fff;
  line-height: 1.59;
}

.footer-cta-button {
  flex-shrink: 0;
}

.footer-cta-button .btn-cta-primary {
  padding: 16px 32px;
  font-size: 16px;
  width: 100%;
  max-width: 520px;
}

/* Footer Elements */
.footer-elements {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 129px;
  padding: 0 125px;
  margin-bottom: 80px;
  flex-wrap: wrap;
}

.footer-brand {
  text-align: center;
  max-width: 341px;
}

.footer-brand-name {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: #fff;
  letter-spacing: -0.96px;
  line-height: 1.05;
  margin-bottom: 12px;
}

.footer-brand-desc {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #aeaeb2;
  line-height: 1.69;
}

.footer-brand-desc strong {
  font-weight: 900;
}

/* Footer Links */
.footer-links {
  display: flex;
  gap: 31px;
}

.footer-link-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-link-col a {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.footer-link-col a:hover {
  color: #fc0;
  opacity: 1;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 20px;
  align-items: center;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  transition: background 0.3s ease;
}

.social-icon:hover {
  background: rgba(255, 255, 255, 0.35);
  opacity: 1;
}

.social-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

/* Footer Watermark */
.footer-watermark {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 20px 0;
  text-align: center;
}

.footer-copyright {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #aeaeb2;
  line-height: 1.4;
}

.footer-copyright a {
  color: #0097fe;
  font-weight: 700;
}

.footer-copyright a:hover {
  text-decoration: underline;
  opacity: 1;
}

/* ========================================
   Animations
   ======================================== */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.fade-in-up.delay-1 { animation-delay: 0.2s; }
.fade-in-up.delay-2 { animation-delay: 0.4s; }
.fade-in-up.delay-3 { animation-delay: 0.6s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   Responsive
   ======================================== */

/* Tablet */
@media (max-width: 1200px) {
  .landing-navbar {
    padding: 0 40px;
  }

  .hero-content {
    padding-left: 40px;
    max-width: 600px;
  }

  .hero-title .line1 {
    font-size: 64px;
  }

  .hero-title .line2 {
    font-size: 140px;
  }

  .benefits-title,
  .community-title {
    font-size: 56px;
  }

  .community-section {
    padding: 30px 40px 60px;
  }

  .footer-cta {
    padding: 0 40px;
    gap: 40px;
  }

  .footer-elements {
    gap: 60px;
    padding: 0 40px;
  }

  .footer-cta-title {
    font-size: 36px;
  }
}

/* Mobile Large */
@media (max-width: 992px) {
  .menu-toggle {
    display: block;
  }

  .navbar-menu {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: #1a1a1a;
    flex-direction: column;
    padding: 80px 30px 30px;
    gap: 20px;
    z-index: 15;
    box-shadow: -5px 0 20px rgba(0,0,0,0.5);
  }

  .navbar-menu.open {
    display: flex;
  }

  .hero-content {
    padding: 160px 20px 0;
    max-width: 100%;
    align-items: center;
  }

  .hero-title .line1 {
    font-size: 48px;
  }

  .hero-title .line2 {
    font-size: 100px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .landing-header {
    min-height: 700px;
  }

  .header-bg {
    height: 600px;
  }

  /* Weekly movie stacked */
  .weekly-movie-inner {
    flex-direction: column;
    align-items: center;
  }

  .movie-info-card {
    margin-left: 0;
    margin-top: -30px;
    padding: 50px 30px 30px;
  }

  .movie-poster {
    width: 250px;
    height: auto;
  }

  .movie-title {
    font-size: 28px;
  }

  .movie-actions {
    flex-direction: column;
    align-items: center;
  }

  /* Benefits stacked */
  .benefits-grid {
    flex-direction: column;
    gap: 40px;
  }

  .benefits-title {
    font-size: 42px;
  }

  .benefit-name {
    font-size: 36px;
  }

  /* Reviews stacked */
  .reviews-grid {
    flex-direction: column;
    align-items: center;
  }

  .review-card {
    width: 100%;
    max-width: 420px;
  }

  .community-title {
    font-size: 42px;
  }

  .community-subtitle {
    font-size: 22px;
  }

  /* Footer */
  .footer-cta {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .footer-cta-title {
    font-size: 32px;
  }

  .footer-cta-subtitle {
    font-size: 22px;
  }

  .footer-elements {
    flex-direction: column;
    gap: 40px;
    align-items: center;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}

/* Mobile Small */
@media (max-width: 576px) {
  .hero-title .line1 {
    font-size: 36px;
  }

  .hero-title .line2 {
    font-size: 72px;
  }

  .hero-subtitle {
    font-size: 16px;
    max-width: 100%;
  }

  .btn-cta-primary {
    padding: 16px 28px;
    font-size: 16px;
  }

  .benefits-section {
    padding: 60px 16px;
  }

  .benefits-title {
    font-size: 32px;
  }

  .benefit-name {
    font-size: 28px;
  }

  .benefit-desc {
    font-size: 16px;
  }

  .community-section {
    padding: 30px 16px 50px;
  }

  .community-title {
    font-size: 32px;
  }

  .community-subtitle {
    font-size: 18px;
  }

  .movie-poster {
    width: 200px;
  }

  .btn-debate {
    font-size: 14px;
    padding: 10px 20px;
  }

  .footer-cta-title {
    font-size: 26px;
  }

  .social-icons {
    gap: 12px;
  }
}
