* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
 background:linear-gradient(to bottom, #3b2f2f, #4e342e);
  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;
  }
}

/*about page*/
.hero-about {
  position: relative;
  height: 100vh;
  width: 100%;
 
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.hero-about {
  background: url('/assets/abt\ hero.webp') no-repeat center center/cover;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: fadeInUp 1.5s ease-out;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: #ffcc80;
  animation: glow 3s ease-in-out infinite alternate;
}

.hero-subtext {
  margin-top: 20px;
  font-size: 1.3rem;
  color: #d7ccc8;
  animation: fadeIn 2s ease forwards 1s;
}

.explore-btn {
  margin-top: 40px;
  display: inline-block;
  padding: 14px 35px;
  background: #ffb74d;
  color: #1b1b1b;
  font-weight: 600;
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.3s ease;
  animation: fadeIn 2s ease forwards 2s;
}

.explore-btn:hover {
  background: #ffa726;
  transform: scale(1.05);
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes glow {
  from { text-shadow: 0 0 10px #ffcc80, 0 0 20px #ffcc80; }
  to { text-shadow: 0 0 20px #ffd54f, 0 0 30px #ffeb3b; }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-subtext {
    font-size: 1rem;
  }
  .explore-btn {
    padding: 12px 28px;
  }
}
/*section2*/
.about-story {
  display: flex;
  gap: 50px;
  padding: 100px 5%;
  align-items: center;

  color: #fff;
}

.about-story .story-content {
  flex: 1;
}

.about-story h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #ffcc80;
}

.about-story p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.about-story .story-image {
  flex: 1;
}

.about-story .story-image img {
  width: 80%;
  height: 80vh;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  animation: fadeInRight 1.5s ease;
}
/* Animations */
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Apply animations */
.about-story h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #ffcc00; /* yellow */
  animation: fadeInLeft 1.2s ease forwards;
}

.about-story p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 15px;
  animation: fadeInUp 1.5s ease forwards;
  opacity: 0; /* start hidden */
  animation-delay: 0.3s; /* stagger paragraphs */
}

.about-story .story-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  animation: fadeInRight 1.5s ease forwards;
  opacity: 0; /* start hidden */
  animation-delay: 0.5s;
}

/* Responsive */
@media (max-width: 768px) {
  .about-story {
    flex-direction: column;
    text-align: center;
  }

  .about-story .story-image {
    margin-top: 30px;
  }
}
/* section3*/

/* About Inside Section */
/* Featured Shows Section */
.featured-shows {
  padding: 60px 20px;
 /* darker brown for contrast */
  color: #fff;
}

.featured-shows .section-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
  color:  #ffb74d; /* golden accent */
}

.show-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.show-card {
  background-color: #a16d4a; /* lighter brown for card */
  border-radius: 15px;
  overflow: hidden;
  text-align: center;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.show-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.show-card h3 {
  color:  #ffb74d;
  margin-bottom: 10px;
}

.show-card p {
  color: #fafafa;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Hover animation */
.show-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .show-card img {
    height: 150px;
  }
  .show-card h3 {
    font-size: 1.2rem;
  }
  .show-card p {
    font-size: 0.9rem;
  }
}
/* sectionm4*/
/* Vision & Mission Section */
.vision-mission {
  padding: 60px 20px;
 /* darker brown for contrast */
  color: #fff;
}

.vision-mission .section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #ffb74d; /* golden headings */
}

.vm-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.vm-card {
  background-color: #8b5e3c; /* lighter brown card */
  border-radius: 15px;
  padding: 25px 20px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vm-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #ffb74d;
}

.vm-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #f5e0c3;
}

/* Hover animation for cards */
.vm-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .vm-card h3 {
    font-size: 1.2rem;
  }
  .vm-card p {
    font-size: 0.9rem;
  }
}
/* faq section*/
/* FAQ Section */
.faq-section {
  padding: 60px 20px;
 /* dark brown */
  color: #fff;
}

.faq-section .section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #ffb74d; /* golden headings */
}

.faq-item {
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
  background-color: #8b5e3c; /* lighter brown card */
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 15px 20px;
  font-size: 1.2rem;
  color: #ffb74d;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  position: relative;
  transition: background 0.3s ease;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-question.active::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-question:hover {
  background-color: rgba(255, 183, 77, 0.1); /* subtle hover effect */
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 20px;
  color: #f5e0c3;
  font-size: 1.2rem;
  line-height: 1.5;
}

.faq-answer.open {
  max-height: 500px; /* large enough to show content */
  padding: 15px 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .faq-question {
    font-size: 0.95rem;
  }
  .faq-answer {
    font-size: 0.9rem;
  }
}

/*footer*/
/* ===== Footer Styling ===== */
.tv-footer {
  /*background: linear-gradient(180deg, #2c1b0f, #3e2723);*/
  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 {
  margin-top: 20px;
}

.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;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  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;
  }
}