* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
 background: linear-gradient(to bottom, #3e2723 0%, #4e342e 50%, #5d4037 100%);

  color: #fff;
}
section {
  background:  transparent;
}

/* ===== Navbar ===== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(90deg, #e3f2fd, #90caf9, #1a237e);
  color: white;
  padding: 10px 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1000;
}

/* ===== Logo ===== */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 70px;
  border-radius: 6px;
}

/* ===== Nav Links ===== */
.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 20px;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 700;
  padding: 8px 10px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  color: #ffeb3b;
}

/* ===== Dropdown ===== */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 40px;
  left: 0;
  list-style: none;
  min-width: 150px;
  border-radius: 6px;
  background-color: #111;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 999;
}
.dropdown-menu:hover {
  display: block;
  opacity: 1;
  visibility: visible;
}
.dropdown-menu li a {
  display: block;
  padding: 10px;
  color: #fff;
}

.dropdown-menu li a:hover {
  background: #333;
}

/* ===== Dropdown Hover ===== */

/* ===== Dropdown Hover (Improved Stability) ===== */
.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translate(0);
}

/* ===== Login Button ===== */
.login-btn {
  background: #2563eb;
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.login-btn:hover {
  background: #1e40af;
  transform: scale(1.05);
}

/* ===== Hamburger ===== */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: white;
}

/* ===== Mobile View ===== */
@media (max-width: 768px) {
  .hamburger {
    display: block;
     position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1100;
  }
  
  .navbar {
    position: relative;
    padding-right: 50px; /* add space for the icon */
  }
.logo {
    position: relative;
    z-index: 1000;
    margin-left: 10px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: #1a237e;
    width: 100%;
    position: absolute;
    top: 70px;
    left: 0;
    text-align: center;
    padding: 20px 0;
    gap: 15px;
  }

  .nav-links.active {
    display: flex;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    background: #111;
    width: 100%;
  }

  .dropdown-menu li a {
    padding: 10px 0;
  }

  .dropdown:hover .dropdown-menu {
    display: none;
  }

  .dropdown.active .dropdown-menu {
    display: flex;
    flex-direction: column;
  }
}
/* section1*/

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
 
  color: #fff;
}

/* Hero Section */
.tv-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url("/assets/tv\ shows") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.tv-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6); /* dark overlay for clarity */
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
  animation: fadeInUp 1.2s ease-in-out;
}

.hero-content h1 {
  font-size: 3rem;
  color: #ffb74d; /* your golden heading color */
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 1.2rem;
  color: #f5e0c3;
  line-height: 1.6;
  margin-bottom: 25px;
}

.explore-btn {
  display: inline-block;
  background: #ffb74d;
  color: #1a1a1a;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.explore-btn:hover {
  background: #ffc56e;
  transform: scale(1.05);
}

/* Animation */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}

/* section2*/
/* TV Shows Section */
.tv-shows {
  text-align: center;
  padding: 80px 20px;
}

.section-title {
  color: #ffb74d;
  font-size: 2.5rem;
  margin-bottom: 50px;
  animation: fadeInDown 1s ease-in-out;
}

.shows-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.show-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  overflow: hidden;
  backdrop-filter: blur(6px);
  padding-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.show-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.show-card h3 {
  color: #ffb74d;
  margin: 15px 0 5px;
  font-size: 1.4rem;
}

.show-card p {
  color: #f5e0c3;
  font-size: 0.95rem;
  padding: 0 15px;
  line-height: 1.4;
}

.show-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

/* Animation */
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


/*section3*/
.featured-show {
  position: relative;
  width: 100%;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Background image */
.featured-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

/* Content */
.featured-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 700px;
  padding: 0 20px;
  animation: fadeUp 1.5s ease-out forwards;
  opacity: 0;
}

.featured-title {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  animation: glow 2s ease-in-out infinite alternate;
}

.featured-desc {
  font-size: 1.1rem;
  color: #e0e0e0;
  margin-bottom: 25px;
}

/* Watch Now Button */
.watch-btn {
  display: inline-block;
  padding: 12px 30px;
  color: #fff;
  text-decoration: none;
  border: 2px solid #ffb400;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.watch-btn:hover {
  background-color: #ffb400;
  color: #000;
  transform: scale(1.05);
}

/* Animations */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes glow {
  from {
    text-shadow: 0 0 10px #ffb400, 0 0 20px #ffb400;
  }
  to {
    text-shadow: 0 0 25px #ffd166, 0 0 45px #ffb400;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .featured-show {
    height: 60vh;
  }
  .featured-title {
    font-size: 2rem;
  }
  .featured-desc {
    font-size: 1rem;
  }
  .watch-btn {
    padding: 10px 25px;
  }
}
/* section4*/
/* Section 4 — Coming Soon */
.coming-soon {
  padding: 60px 40px;
  color: #fff;
  text-align: center;
}

.coming-soon-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #facc15; /* yellow tone for title */
  margin-bottom: 5px;
}

.coming-soon-header p {
  font-size: 1.1rem;
  color: #ddd;
  margin-bottom: 40px;
}

/* Horizontal Scroll Container */
.coming-soon-container {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

.coming-soon-container::-webkit-scrollbar {
  display: none;
}

/* Show Card */
.show-card {
  min-width: 230px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.show-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.show-card h3 {
  font-size: 1.1rem;
  font-weight: 500;
  margin: 12px 0;
  color: #fff;
}

.show-card:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
  .coming-soon {
    padding: 40px 20px;
  }

  .show-card {
    min-width: 180px;
  }

  .show-card img {
    height: 250px;
  }
}
/* section5*/
.subscribe-section {
  padding: 80px 20px;
  text-align: center;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.subscribe-content {
  max-width: 600px;
  width: 100%;
  animation: fadeUp 1.2s ease-out forwards;
  opacity: 0;
}

.subscribe-content h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #facc15;
  text-shadow: 0 0 15px #facc15;
}

.subscribe-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #ddd;
}

#subscribe-form {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

#subscribe-form input[type="email"] {
  flex: 1 1 250px;
  padding: 12px 18px;
  border-radius: 30px;
  border: 2px solid #fff;
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

#subscribe-form input[type="email"]:focus {
  border-color: #facc15;
  box-shadow: 0 0 10px #facc15;
}

#subscribe-form button {
  padding: 12px 30px;
  border-radius: 30px;
  border: 2px solid #facc15;
  background: transparent;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

#subscribe-form button:hover {
  background: #facc15;
  color: #000;
  transform: scale(1.05);
}

.subscribe-msg {
  margin-top: 15px;
  font-size: 1rem;
  color: #90ee90;
}

/* Fade Up Animation */
@keyframes fadeUp {
  0% {opacity:0; transform:translateY(40px);}
  100% {opacity:1; transform:translateY(0);}
}

/* Responsive */
/* Responsive Fix for Mobile */


/* Footer */
.tv-footer {

  color: #f1e3c0;
  padding: 50px 20px 0;
  font-family: "Poppins", sans-serif;
}

/* MAIN GRID LAYOUT */
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  /* equal, tighter spacing */
  padding: 30px 60px;
  align-items: start;
}

/* HEADINGS */
.footer-section h3 {
  color: #fdd835;
  margin-bottom: 15px;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* TEXT STYLES */
.footer-section p {
  color: #e0d3b8;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* LOGO */
.footer-logo {
  width: 180px;
  height: auto;
  margin-bottom: 15px;
  border-radius: 8px;
}

/* LINKS LIST */
.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1.1rem;
}

.footer-section ul li {
  margin: 8px 0;
}

.footer-section ul li a {
  text-decoration: none;
  color: #f1e3c0;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}



.footer-section ul li a:hover {
  color: #ffcc00;
}

/* Move Quick Links slightly right */
.footer-section.links {
  padding-left: 40px;
}

/* APP DOWNLOAD AREA */
.app-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 10px 0;
}

.app-store {
  display: inline-flex;
  align-items: center;
  background: #b8860b;
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.app-store i {
  margin-right: 8px;
}

.app-store:hover {
  background: #ffcc00;
  color: #2c1b0f;
}

.qr-note {
  margin-top: 10px;
  font-size: 0.85rem;
  color: #e0d3b8;
}

.qr-image {
  width: 90px;
  margin-top: 10px;
  border: 2px solid #fdd835;
  border-radius: 6px;
}

/* STAY CONNECTED */
.footer-connect {
  text-align: center;
  padding: 40px 20px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-connect h3 {
  color: #fdd835;
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.footer-connect p {
  color: #e0d3b8;
  font-size: 1rem;
  margin-bottom: 15px;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.newsletter-form input {
  flex: 1;
  min-width: 240px;
  max-width: 300px;
  padding: 10px 14px;
  border: none;
  border-radius: 4px;
  outline: none;
}

.newsletter-form button {
  background: #b8860b;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 10px 15px;
  cursor: pointer;
  transition: background 0.3s;
}

.newsletter-form button:hover {
  background: #ffcc00;
  color: #2c1b0f;
}

.social-icons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 15px;
}

.social-icons img.social-icon {
  width: 28px;
  height: 28px;
  transition: 0.3s;
}

.social-icons img.social-icon:hover {
  transform: scale(1.2);
  cursor: pointer;
}


/* BOTTOM FOOTER */
.footer-bottom {
  text-align: center;
  
  padding: 15px 10px;
  font-size: 0.9rem;
}

.footer-bottom a {
  color: #fdd835;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #fff;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .footer-content {
    gap: 25px;
    padding: 30px 40px;
  }
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 20px;
  }

  .footer-section.links {
    padding-left: 0;
  }

  .app-buttons {
    align-items: center;
  }

  .qr-image {
    margin: 0 auto;
  }

  .social-icons a {
    font-size: 1.4rem;
  }
}