/* Global Styles */
:root {
  --primary-color: #d10000; /* Red */
  --secondary-color: #000000; /* Black */
  --accent-color: #d4af37; /* Gold */
  --light-color: #ffffff;
  --gray-color: #f4f4f4;
  --dark-gray: #333333;
  --font-primary: "Montserrat", sans-serif;
  --font-secondary: "Playfair Display", serif;
  --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--secondary-color);
  background-color: var(--light-color);
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--primary-color);
  color: var(--light-color);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  text-align: center;
}

.btn:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.help-btn {
  background-color: var(--primary-color);
  margin-right: 15px;
}

.participate-btn {
  background-color: var(--accent-color);
  color: var(--secondary-color);
}

.participate-btn:hover {
  background-color: var(--secondary-color);
  color: var(--accent-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-secondary);
  line-height: 1.3;
  margin-bottom: 15px;
}

section {
  padding: 80px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 5%;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.8);
  transition: var(--transition);
}

.logo h1 {
  font-size: 28px;
  font-weight: 800;
  color: var(--light-color);
  margin: 0;
}

.logo span {
  color: var(--accent-color);
}

.nav-links {
  display: flex;
}

.nav-links li {
  margin-left: 30px;
}

.nav-links a {
  color: var(--light-color);
  font-weight: 600;
  font-size: 16px;
  position: relative;
  padding-bottom: 5px;
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent-color);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

#check,
.menu-btn {
  display: none;
}

/* Main Content Styles */
main {
  padding-top: 80px;
}

/* Hero Slider Styles */
.slider-container {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background-color: var(--secondary-color);
}

.slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.7);
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  color: var(--light-color);
  max-width: 600px;
  z-index: 1;
}

.slide-content h2 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: var(--light-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.prev-btn,
.next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: var(--light-color);
  font-size: 1.5rem;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: var(--transition);
}

.prev-btn:hover,
.next-btn:hover {
  background: rgba(212, 175, 55, 0.8);
}

.prev-btn {
  left: 20px;
}

.next-btn {
  right: 20px;
}

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  z-index: 2;
}

.dot {
  width: 15px;
  height: 15px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background-color: var(--accent-color);
}

/* Action Buttons Section */
.action-buttons {
  text-align: center;
  padding: 50px 0;
  background-color: var(--light-color);
}

.action-buttons .btn {
  margin: 0 10px;
  padding: 15px 40px;
  font-size: 1.1rem;
}

/* Show Highlights Section */
.show-highlights {
  background-color: var(--gray-color);
  text-align: center;
  padding: 80px 20px;
}

.show-highlights h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: var(--secondary-color);
  position: relative;
  display: inline-block;
}

.show-highlights h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--accent-color);
}

.highlights-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.highlight-card {
  flex: 1;
  min-width: 300px;
  max-width: 350px;
  background-color: var(--light-color);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.highlight-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.highlight-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.highlight-card h3 {
  padding: 20px 20px 10px;
  color: var(--primary-color);
}

.highlight-card p {
  padding: 0 20px 20px;
  color: var(--dark-gray);
}

/* Upcoming Season Section */
.upcoming-season {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 80px 20px;
  background-color: var(--light-color);
}

.season-content,
.season-image {
  flex: 1;
  min-width: 300px;
}

.season-content {
  padding: 0 50px;
}

.season-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.countdown {
  font-size: 1.2rem;
  margin: 20px 0;
  font-weight: 600;
}

#countdown {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.season-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

/* Testimonials Section */
.testimonials {
  background-color: var(--secondary-color);
  color: var(--light-color);
  text-align: center;
  padding: 80px 20px;
}

.testimonials h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: var(--light-color);
  position: relative;
  display: inline-block;
}

.testimonials h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--accent-color);
}

.testimonial-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  position: relative;
}

.quote {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 2rem;
  color: var(--accent-color);
  opacity: 0.3;
}

.testimonial p {
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
  border: 2px solid var(--accent-color);
}

.testimonial-author h4 {
  margin: 0;
  color: var(--accent-color);
}

.testimonial-author p {
  margin: 0;
  font-size: 0.9rem;
}

/* Footer Styles */
footer {
  background-color: var(--secondary-color);
  color: var(--light-color);
  padding: 70px 20px 20px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
}

.footer-logo,
.footer-links,
.footer-contact,
.footer-social {
  flex: 1;
  min-width: 250px;
}

.footer-logo h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.footer-logo span {
  color: var(--accent-color);
}

.footer-links h3,
.footer-contact h3,
.footer-social h3 {
  color: var(--accent-color);
  margin-bottom: 20px;
  font-size: 1.2rem;
  position: relative;
}

.footer-links h3::after,
.footer-contact h3::after,
.footer-social h3::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--accent-color);
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  transition: var(--transition);
}

.footer-links ul li a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}

.footer-contact p {
  margin-bottom: 10px;
}

.footer-contact i {
  color: var(--accent-color);
  margin-right: 10px;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: var(--transition);
}

.social-icons a:hover {
  background-color: var(--accent-color);
  color: var(--secondary-color);
}

.newsletter-form {
  display: flex;
  margin-top: 15px;
}

.newsletter-form input {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 4px 0 0 4px;
}

.newsletter-form button {
  padding: 0 15px;
  background-color: var(--accent-color);
  color: var(--secondary-color);
  border: none;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
}

.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

/* About Show Page Styles */
.about-hero {
  height: 50vh;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("https://images.unsplash.com/photo-1501281668745-f7f57925c3b4?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-color);
  text-align: center;
}

.about-content h1 {
  font-size: 3.5rem;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.about-content p {
  font-size: 1.2rem;
}

.show-concept {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 80px 20px;
}

.concept-content,
.concept-image {
  flex: 1;
  min-width: 300px;
}

.concept-content {
  padding: 0 50px;
}

.concept-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.concept-content p {
  margin-bottom: 20px;
  color: var(--dark-gray);
}

.concept-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.show-format {
  background-color: var(--gray-color);
  text-align: center;
  padding: 80px 20px;
}

.show-format h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: var(--secondary-color);
  position: relative;
  display: inline-block;
}

.show-format h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--accent-color);
}

.format-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.format-card {
  flex: 1;
  min-width: 200px;
  max-width: 250px;
  background-color: var(--light-color);
  border-radius: 10px;
  padding: 30px 20px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.format-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.format-icon {
  width: 70px;
  height: 70px;
  background-color: var(--primary-color);
  color: var(--light-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
}

.format-card h3 {
  margin-bottom: 15px;
  color: var(--primary-color);
}

.show-history {
  padding: 80px 20px;
}

.show-history h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: var(--primary-color);
  text-align: center;
  position: relative;
  display: inline-block;
}

.show-history h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--accent-color);
}

.timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background-color: var(--accent-color);
}

.timeline-item {
  margin-bottom: 50px;
  position: relative;
}

.timeline-dot {
  width: 20px;
  height: 20px;
  background-color: var(--accent-color);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 15px;
  transform: translateX(-50%);
  z-index: 2;
}

.timeline-content {
  width: 45%;
  padding: 20px;
  background-color: var(--light-color);
  border-radius: 10px;
  box-shadow: var(--shadow);
  position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-right: 55%;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: 55%;
}

.timeline-content h3 {
  color: var(--accent-color);
  margin-bottom: 5px;
}

.timeline-content h4 {
  color: var(--primary-color);
  margin-bottom: 10px;
}

.impact-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 80px 20px;
  background-color: var(--gray-color);
}

.impact-content,
.impact-image {
  flex: 1;
  min-width: 300px;
}

.impact-content {
  padding: 0 50px;
}

.impact-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.impact-content p {
  margin-bottom: 20px;
}

.impact-content ul {
  margin-bottom: 20px;
  list-style: disc;
  padding-left: 20px;
}

.impact-content ul li {
  margin-bottom: 10px;
}

.impact-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.awards-section {
  text-align: center;
  padding: 80px 20px;
}

.awards-section h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: var(--secondary-color);
  position: relative;
  display: inline-block;
}

.awards-section h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--accent-color);
}

.awards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.award {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  padding: 30px 20px;
  background-color: var(--light-color);
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.award:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.award-icon {
  width: 60px;
  height: 60px;
  background-color: var(--accent-color);
  color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
}

.award h3 {
  margin-bottom: 10px;
  color: var(--primary-color);
}

/* Team Page Styles */
.team-hero {
  height: 50vh;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("https://images.unsplash.com/photo-1529156069898-49953e39b3ac?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-color);
  text-align: center;
}

.team-content h1 {
  font-size: 3.5rem;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.team-content p {
  font-size: 1.2rem;
}

.judges-section,
.production-team {
  padding: 80px 20px;
  text-align: center;
}

.judges-section h2,
.production-team h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.section-intro {
  max-width: 700px;
  margin: 0 auto 50px;
  color: var(--dark-gray);
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.team-member {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  background-color: var(--light-color);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.member-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.team-member:hover .member-image img {
  transform: scale(1.1);
}

.member-info {
  padding: 20px;
  text-align: left;
}

.member-info h3 {
  font-size: 1.5rem;
  margin-bottom: 5px;
  color: var(--primary-color);
}

.member-role {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 15px;
}

.member-info p {
  color: var(--dark-gray);
  margin-bottom: 15px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background-color: var(--gray-color);
  color: var(--dark-gray);
  border-radius: 50%;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--accent-color);
  color: var(--secondary-color);
}

.hosts-section {
  background-color: var(--gray-color);
  padding: 80px 20px;
  text-align: center;
}

.hosts-section h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: var(--secondary-color);
  position: relative;
  display: inline-block;
}

.hosts-section h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--accent-color);
}

.hosts-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
  max-width: 1000px;
  margin: 0 auto;
}

.host {
  flex: 1;
  min-width: 250px;
  max-width: 400px;
}

.host img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid var(--accent-color);
  margin: 0 auto 20px;
}

.host h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.host p {
  color: var(--dark-gray);
}

.join-team {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url("https://images.unsplash.com/photo-1509824227185-9c5a01ceba0d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80");
  background-size: cover;
  background-position: center;
  color: var(--light-color);
}

.join-content {
  max-width: 700px;
  margin: 0 auto;
}

.join-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--accent-color);
}

.join-content p {
  margin-bottom: 20px;
}

.join-content ul {
  list-style: none;
  margin-bottom: 30px;
  display: inline-block;
  text-align: left;
}

.join-content ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.join-content ul li::before {
  content: "\f0da";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--accent-color);
}

/* Contact Page Styles */
.contact-hero {
  height: 50vh;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("https://images.unsplash.com/photo-1423666639041-f56000c27a9a?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-color);
  text-align: center;
}

.contact-content h1 {
  font-size: 3.5rem;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.contact-content p {
  font-size: 1.2rem;
}

.contact-info {
  padding: 80px 20px;
  background-color: var(--light-color);
}

.contact-methods {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-method {
  flex: 1;
  min-width: 250px;
  max-width: 280px;
  background-color: var(--gray-color);
  border-radius: 10px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.contact-method:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.method-icon {
  width: 70px;
  height: 70px;
  background-color: var(--primary-color);
  color: var(--light-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
}

.contact-method h3 {
  margin-bottom: 15px;
  color: var(--primary-color);
}

.contact-method p {
  margin-bottom: 5px;
  color: var(--dark-gray);
}

.contact-form-section {
  display: flex;
  flex-wrap: wrap;
  padding: 80px 20px;
  background-color: var(--gray-color);
}

.form-container,
.map-container {
  flex: 1;
  min-width: 300px;
  padding: 20px;
}

.form-container h2,
.map-container h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: var(--primary-color);
}

.contact-form {
  background-color: var(--light-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--secondary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: inherit;
}

.form-group textarea {
  resize: vertical;
}

.checkbox-container {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  user-select: none;
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #eee;
  border-radius: 3px;
}

.checkbox-container:hover input ~ .checkmark {
  background-color: #ccc;
}

.checkbox-container input:checked ~ .checkmark {
  background-color: var(--accent-color);
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

.checkbox-container .checkmark:after {
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.submit-btn {
  width: 100%;
  padding: 12px;
  font-size: 1rem;
}

.map-placeholder {
  position: relative;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
}

.map-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--light-color);
}

.map-overlay p {
  margin: 5px 0;
  font-size: 1.1rem;
}

.faqs-section {
  padding: 80px 20px;
  background-color: var(--light-color);
}

.faqs-section h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: var(--primary-color);
  text-align: center;
  position: relative;
  display: inline-block;
}

.faqs-section h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--accent-color);
}

.accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.accordion-button {
  width: 100%;
  text-align: left;
  padding: 15px 20px;
  background-color: var(--gray-color);
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--secondary-color);
  cursor: pointer;
  position: relative;
  transition: var(--transition);
}

.accordion-button:hover {
  background-color: #e6e6e6;
}

.accordion-button::after {
  content: "\f078";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 20px;
}

.accordion-item.active .accordion-button::after {
  content: "\f077";
}

.accordion-content {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  background-color: var(--light-color);
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-content {
  padding: 20px;
  max-height: 200px;
}

.social-connect {
  padding: 80px 20px;
  background-color: var(--gray-color);
  text-align: center;
}

.social-connect h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.social-connect > p {
  max-width: 600px;
  margin: 0 auto 40px;
  color: var(--dark-gray);
}

.social-platforms {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.social-platform {
  flex: 1;
  min-width: 200px;
  max-width: 220px;
  padding: 30px 20px;
  background-color: var(--light-color);
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.social-platform:hover {
  transform: translateY(-10px);
}

.social-platform i {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.social-platform span {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.social-platform p {
  color: var(--dark-gray);
  font-size: 0.9rem;
}

.facebook {
  color: #3b5998;
}

.facebook:hover {
  background-color: #3b5998;
  color: var(--light-color);
}

.twitter {
  color: #1da1f2;
}

.twitter:hover {
  background-color: #1da1f2;
  color: var(--light-color);
}

.instagram {
  color: #e1306c;
}

.instagram:hover {
  background-color: #e1306c;
  color: var(--light-color);
}

.youtube {
  color: #ff0000;
}

.youtube:hover {
  background-color: #ff0000;
  color: var(--light-color);
}

.social-platform:hover p {
  color: var(--light-color);
}

/* Responsive Styles */
@media (max-width: 991px) {
  .slide-content h2 {
    font-size: 2.5rem;
  }

  .concept-content,
  .impact-content {
    padding: 0 30px;
  }

  .timeline::before {
    left: 30px;
  }

  .timeline-dot {
    left: 30px;
  }

  .timeline-content {
    width: calc(100% - 80px);
    margin-left: 80px !important;
  }
}

@media (max-width: 768px) {
  header {
    padding: 15px 5%;
  }

  .logo h1 {
    font-size: 24px;
  }

  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--secondary-color);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 50px;
    transition: var(--transition);
  }

  .nav-links li {
    margin: 15px 0;
  }

  .menu-btn {
    display: block;
    font-size: 1.5rem;
    color: var(--light-color);
    cursor: pointer;
  }

  #check:checked ~ .nav-links {
    left: 0;
  }

  .slide-content {
    left: 5%;
    max-width: 90%;
  }

  .slide-content h2 {
    font-size: 2rem;
  }

  .action-buttons .btn {
    display: block;
    width: 80%;
    margin: 10px auto;
  }

  .season-content,
  .concept-content,
  .impact-content {
    padding: 0 20px;
    margin-bottom: 30px;
  }

  .footer-content > div {
    margin-bottom: 30px;
  }

  .about-content h1,
  .team-content h1,
  .contact-content h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  section {
    padding: 60px 0;
  }

  .slide-content h2 {
    font-size: 1.8rem;
  }

  .show-highlights h2,
  .upcoming-season h2,
  .testimonials h2,
  .about-content h1,
  .show-concept h2,
  .show-format h2,
  .show-history h2,
  .impact-content h2,
  .awards-section h2,
  .team-content h1,
  .judges-section h2,
  .production-team h2,
  .hosts-section h2,
  .join-content h2,
  .contact-content h1,
  .form-container h2,
  .map-container h2,
  .faqs-section h2,
  .social-connect h2 {
    font-size: 2rem;
  }

  .highlight-card,
  .testimonial,
  .format-card,
  .award,
  .team-member,
  .host,
  .contact-method,
  .social-platform {
    min-width: 100%;
  }

  .prev-btn,
  .next-btn {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}
