/* Global Styles */
body {

  background-color: #fff9f2;
  margin: 0;
  padding: 0;
  color: #333;
  min-height: 100vh;

}

.navbar {
  background-color: rgba(139, 0, 0, 0.8);
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  height: 70px;
}

.logo {
  color: white;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 1px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.3s, transform 0.3s;
}

.nav-links li a:hover {
  color: #ffd700;
  transform: scale(1.1);
}
/* Logo Image */
.logo-img {
  padding-top: 10px;
  height: 70px;
  width: auto;
}



/* Hero Section */
.hero {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, #fcb69f, #ffecd2);
  border-radius: 16px;
  margin: 2rem;
  color: #2e2e2e;
}

.hero-text {
  flex: 1;
  padding: 1rem;
}

.hero-text h1 {
  font-size: 2.7rem;
  color: #6a1b4d;
}

.hero-text p {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: #4e342e;
}

.hero-text .btn {
  background-color: #ff6f91;
  color: white;
  text-decoration: none;
  padding: 0.8rem 1.5rem;
  font-weight: bold;
  border-radius: 8px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.hero-text .btn:hover {
  background-color: #ff3366;
  transform: scale(1.05);
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Festival Cards */
.festival-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 3rem 2rem;
  background: linear-gradient(to right, #ffdde1, #fcb69f);
  gap: 30px;
}

.festival-card {
  background: #fff;
  width: calc(33.33% - 40px);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(255, 105, 135, 0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.festival-card:hover {
  transform: scale(1.06);
  box-shadow: 0 15px 35px rgba(255, 105, 135, 0.4);
}

.festival-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 5px solid #ffc1cc;
}

.festival-card h2 {
  font-size: 1.6rem;
  color: #d81b60;
  margin: 1rem;
  text-align: center;
}

.festival-card p {
  padding: 0 1rem 1rem;
  text-align: justify;
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

/* Audio Player */
audio {
  width: 90%;
  margin: 10px auto;
  display: block;
  border-radius: 10px;
  background-color: #ffe3ed;
}

/* Footer */
footer {
  background-color: #2c2c2c;
  color: #f1f1f1;
  padding: 2rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 2rem;
}

.footer-section {
  flex: 1 1 200px;
}

.footer-section h2 {
  color: #ffd700;
  margin-bottom: 1rem;
}

.footer-section p {
  font-size: 0.95rem;
  margin: 0.5rem 0;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #aaa;
  border-top: 1px solid #555;
  padding-top: 1rem;
}

/* Buttons */
button {
  background-color: #ff7f50;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background-color: #e06750;
}

/* Responsive */
@media (max-width: 1024px) {
  .festival-card {
    width: calc(50% - 30px);
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    background-color: rgba(139, 0, 0, 0.9);
    padding: 10px;
  }

  .hero {
    flex-direction: column;
    padding: 2rem 1rem;
  }

  .hero-text {
    text-align: center;
    padding: 1rem 0;
  }

  .hero-text h1 {
    font-size: 2.2rem;
  }

  .hero-text p {
    font-size: 1.1rem;
  }

  .hero-image img {
    width: 100%;
    margin-top: 1rem;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-section {
    flex: 1 1 100%;
  }
}

@media (max-width: 600px) {
  .festival-card {
    width: 100%;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 0.95rem;
  }

  header h1 {
    font-size: 1.8rem;
  }

  header p {
    font-size: 1rem;
  }

  .hero-text h1 {
    font-size: 1.8rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .festival-card h2 {
    font-size: 1.2rem;
  }

  .festival-card p {
    font-size: 0.95rem;
  }

  button {
    font-size: 0.9rem;
    padding: 10px 20px;
  }
}


