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

body {
  font-family: 'Roboto', sans-serif;
  background: url('images/background-pattern.png') #f9f9f9 no-repeat center center fixed;
  background-size: cover;
  color: #000;
}

html {
  scroll-behavior: smooth;
}

/* Header Styles */
header {
  background: #000;
  color: #fff;
  padding: 10px 20px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  animation: popIn 1s ease-out;
}

.navbar .logo {
  font-family: "Jersey 10", sans-serif;
  font-size: 30px;
  color: #fff;
}

.navbar nav a {
  font-weight: 500;
  text-decoration: none;
  color: #fff;
  margin: 0 15px;
  font-size: 16px;
  transition: color 0.3s ease;
}

nav a.active {
  color: #00bcd4;
  font-weight: bold;
  border-bottom: 2px solid #00bcd4;
}

.navbar nav a:hover {
  color: #00bcd4;
  font-weight: bold;
  border-bottom: 2px solid #00bcd4;
}

.register-btn {
  font-family: 'Roboto', sans-serif;
  font-size: medium;
  font-weight: 700;
  padding: 10px 20px;
  background: #fff;
  color: #000;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transform: scale(1);
  animation: popIn 0.8s ease-out forwards;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.register-btn:hover {
  background: #00bcd4;
  color: #000;
  transform: scale(1.08);
}

/* Hero Section */
.hero {
  position: relative;
  background: url('images/hero-background.png') no-repeat center center;
  background-size: cover;
  padding: 50px 20px;
  text-align: center;
}

.social-links {
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 1000;
}

.social-links a {
  color: white;
  background: #111;
  padding: 12px;
  border-radius: 50%;
  text-align: center;
  font-size: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.social-links a:hover {
  background: #555;
  transform: scale(1.1);
}

.hero-content h1 {
  position: relative;
  font-family: "Jersey 10", sans-serif;
  font-size: 8rem;
  margin: 10px 0;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 5px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: slideUpFade 1s ease-out forwards, glitch 2s infinite linear;
}

/* Glitch pseudo-elements */
.hero-content h1::before,
.hero-content h1::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  color: #000;
  overflow: hidden;
  clip: rect(0, 900px, 0, 0);
}

.hero-content h1::before {
  color: #f0f;
  animation: glitchTop 2s infinite linear;
}

.hero-content h1::after {
  color: #0ff;
  animation: glitchBottom 2s infinite linear;
}

/* Glitch Keyframes */
@keyframes glitchTop {
  0% {
    clip: rect(0, 9999px, 0, 0);
    transform: translate(0);
  }
  10% {
    clip: rect(10px, 9999px, 50px, 0);
    transform: translate(-2px, -2px);
  }
  20% {
    clip: rect(85px, 9999px, 140px, 0);
    transform: translate(2px, 2px);
  }
  30% {
    clip: rect(30px, 9999px, 80px, 0);
    transform: translate(-1px, 1px);
  }
  40%, 100% {
    clip: rect(0, 9999px, 0, 0);
    transform: translate(0);
  }
}

@keyframes glitchBottom {
  0% {
    clip: rect(0, 9999px, 0, 0);
    transform: translate(0);
  }
  10% {
    clip: rect(60px, 9999px, 110px, 0);
    transform: translate(2px, -1px);
  }
  20% {
    clip: rect(20px, 9999px, 70px, 0);
    transform: translate(-1px, 1px);
  }
  30% {
    clip: rect(40px, 9999px, 90px, 0);
    transform: translate(1px, -2px);
  }
  40%, 100% {
    clip: rect(0, 9999px, 0, 0);
    transform: translate(0);
  }
}


.hero-content p {
  font-family: "Pixelify Sans", sans-serif;
  font-weight: 400;
  font-size: 2rem;
  margin: 20px 0;
  animation: slideUpFade 1.2s ease-out forwards;
}

.hero-content .register-now {
  font-family: "Jersey 10", sans-serif;
  background: #000;
  color: #fff;
  padding: 12px 30px;
  border-radius: 5px;
  font-size: 25px;
  cursor: pointer;
  transform: scale(1);
  animation: slideUpFade 1.4s ease-out forwards;
  transition: background 0.3s ease, transform 0.3s ease;
}

.hero-content .register-now:hover {
  background: #00bcd4;
  color: #000;
  transform: scale(1.08);
}

.countdown {
  /* font-family: "Pixelify Sans", sans-serif; */
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.time-box {
  background: linear-gradient(135deg, #3b3b3b, #000);
  color: #fff;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  font-size: 18px;
}

.time-box span {
  display: block;
  font-size: 40px;
  font-weight: 700;
}

.cityline-banner {
  width: 100%;
  height: 350px; /* adjust based on image height */
  background: url('images/mumbai_color.png') ;
  background-repeat: repeat-x;
  background-size: contain;
  background-position: bottom;
  background-size: auto 100%;
}

/* About Us Section */
.about-us {
  color: #000;
  padding: 80px 40px;
  text-align: center;
}

.about-us h2 {
  font-size: 5rem;
  font-family: "Jersey 10", sans-serif;
  margin-bottom: 40px;
  color: #000;
  letter-spacing: 8px;
}

.about-us p {
  font-family: "Pixelify Sans", sans-serif;
  max-width: 1000px;
  margin: 0 auto 40px auto;
  font-size: 1.3rem;
  line-height: 1.8;
}

.contact-btn {
  display: inline-block;
  padding: 15px 30px;
  background: transparent;
  border: 2px solid black;
  border-radius: 10px;
  color: #000;;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background-color: white;
  color: black;
  transform: scale(1.05);
}


.faq-title {
  font-family: "Jersey 10", sans-serif;
  font-size: 5rem;
  text-align: center;
}

/* .faq-line {
  height: 3px;
  width: 100px;
  background: linear-gradient(to right, orange, magenta);
  margin: 10px 0 30px;
} */

.faq-container {
  max-width: 900px;
  margin: auto;
}

.faq-item {
  border: 1px dotted black;
  border-radius: 10px;
  margin-top: 20px;
  margin-bottom: 20px;
  background: white;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.arrow {
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  font-size: 1rem;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 400px;
  padding: 10px 20px 20px;
}

.faq-item.active .arrow {
  transform: rotate(180deg);
}


/* Animations */
@keyframes popIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideUpFade {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Schedule Table Styles */
.schedule-section {
margin: 40px 0;
padding: 0 20px;
}

.schedule-title {
font-family: "Jersey 10", sans-serif;
font-size: 5rem;
text-align: center;
margin-bottom: 40px;
}

.schedule-table {
  width: 90%;
  max-width: 900px;
  border-collapse: collapse;
  background: #fff;
  color: #333;
  font-family: 'Roboto', Arial, sans-serif;
  margin: 0 auto;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid #ddd;
  position: relative;
}

.schedule-table th, .schedule-table td {
  padding: 14px 16px;
  text-align: left;
  font-size: 1rem;
  border-bottom: 1px solid #ddd;
  transition: all 0.2s ease;
}

.schedule-table th {
  background-color: #333;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  border-bottom: 2px solid #000;
}

.schedule-table td {
  color: #333;
  background-color: #fff;
}

.schedule-table tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

.schedule-table tbody tr:hover {
  background-color: #f0f0f0;
}

.schedule-table tbody tr:hover td {
  color: #000;
  background-color: #f0f0f0;
}

/* Add subtle animation to rows */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

.schedule-table tbody tr {
  animation: fadeIn 0.3s ease-out forwards;
  opacity: 0;
}

/* Add animation delay for each row */
.schedule-table tbody tr:nth-child(1) { animation-delay: 0.1s; }
.schedule-table tbody tr:nth-child(2) { animation-delay: 0.2s; }
.schedule-table tbody tr:nth-child(3) { animation-delay: 0.3s; }
.schedule-table tbody tr:nth-child(4) { animation-delay: 0.4s; }
.schedule-table tbody tr:nth-child(5) { animation-delay: 0.5s; }
.schedule-table tbody tr:nth-child(6) { animation-delay: 0.6s; }
.schedule-table tbody tr:nth-child(7) { animation-delay: 0.7s; }

.schedule-table th {
background: none;
color: #000;
font-size: 1.2rem;
letter-spacing: 1px;
text-shadow: none;
border-bottom: 2px solid #000;
}

.schedule-table td {
position: relative;
z-index: 1;
}

.schedule-table tr {
transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}

.schedule-table tr:nth-child(even) {
background: none;
}

.schedule-table tr:hover {
color: #000;
}

.schedule-table tr:hover td {
color: #000;
}

.event-icon {
font-size: 1.7rem;
margin-right: 8px;
vertical-align: middle;
}


@media (max-width: 700px) {
  .schedule-title, 
  .faq-title {
    font-size: 2.2rem;
  }
  
  .schedule-table {
    width: 95%;
    border-radius: 0;
  }
  
  .schedule-table th, 
  .schedule-table td {
    font-size: 0.85rem;
    padding: 10px 8px;
  }
  
  .schedule-table th {
    font-size: 0.8rem;
    padding: 10px 8px;
  }
}

/* Contact Section */
.contact-section {
  padding: 80px 20px;
  background-color: #f9f9f9;
  box-sizing: border-box;
}

.contact-title {
  font-family: "Jersey 10", sans-serif;
  font-size: 5rem;
  text-align: center;
  margin: 0 auto 50px;
  color: #000;
  max-width: 1200px;
  padding: 0 20px;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap;
  gap: 40px;
  justify-content: space-between;
  padding: 0 20px;
  box-sizing: border-box;
  align-items: flex-start;
}

.contact-info {
  flex: 1;
  min-width: 300px;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  gap: 20px;
}

.contact-item i {
  font-size: 24px;
  color: #333;
  margin-top: 5px;
}

.contact-item h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #333;
}

.contact-item p {
  margin: 5px 0;
  color: #666;
  line-height: 1.6;
}

.social-links-horizontal {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.social-links-horizontal a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #333;
  color: #fff;
  border-radius: 50%;
  font-size: 18px;
  transition: all 0.3s ease;
}

.social-links-horizontal a:hover {
  background: #000;
  transform: translateY(-3px);
}

.contact-form {
  flex: 1;
  min-width: 300px;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  box-sizing: border-box;
  height: fit-content;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.contact-form h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #333;
}

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #333;
}

.submit-btn {
  background: #333;
  color: #fff;
  border: none;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.submit-btn:hover {
  background: #000;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

@media (max-width: 900px) {
  .contact-title {
    font-size: 3rem;
    padding: 0 15px;
  }
  
  .contact-container {
    flex-direction: column;
    padding: 0 15px;
    gap: 20px;
    align-items: stretch;
  }
  
  .contact-form {
    padding: 20px;
    margin-top: 0;
    width: 100%;
  }
  
  .contact-info {
    width: 100%;
    padding: 0;
  }
}
