@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #0a0a0a;
  color: #fff;
  overflow-x: hidden;
}

/* Header */
header {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  text-align: center;
  padding: 20px 0;
  border-bottom: 2px solid #00ffff;
  box-shadow: 0 0 25px #00ffff;
  position: sticky;
  top: 0;
  z-index: 10;
}

header h1 {
  font-size: 2.5rem;
  color: #00ffff;
  text-shadow: 0 0 20px #ff00ff, 0 0 30px #00ffff;
}

nav {
  margin-top: 10px;
}

nav a {
  color: #fff;
  margin: 0 15px;
  text-decoration: none;
  font-size: 1.1rem;
  transition: 0.3s;
}

nav a:hover {
  color: #00ffff;
  text-shadow: 0 0 10px #00ffff;
}

/* Hero Section */
.hero {
  position: relative;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.background-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(50%) blur(1px);
}

.hero-text h2 {
  font-size: 3rem;
  color: #00ffff;
  text-shadow: 0 0 30px #ff00ff, 0 0 40px #00ffff;
  animation: fadeIn 2s ease;
}

.hero-text p {
  font-size: 1.3rem;
  margin-top: 10px;
  text-shadow: 0 0 10px #00ffff;
}

/* Festivals */
.festivals {
  text-align: center;
  padding: 70px 5%;
  background: linear-gradient(135deg, #0a0a0a, #1a0033);
  box-shadow: 0 0 30px #ff00ff;
}

.festivals h2 {
  font-size: 2.5rem;
  color: #ff00ff;
  text-shadow: 0 0 25px #ff00ff, 0 0 40px #00ffff;
  margin-bottom: 30px;
}

.festival-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 20px;
  width: 280px;
  transition: 0.3s;
  box-shadow: 0 0 20px #00ffff;
}

.card img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 10px;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px #ff00ff;
}

/* Traditions */
.traditions {
  text-align: center;
  padding: 70px 5%;
  background: linear-gradient(135deg, #1a0033, #0a0a0a);
  box-shadow: 0 0 40px #00ffff;
}

.traditions h2 {
  font-size: 2.5rem;
  color: #00ffff;
  text-shadow: 0 0 25px #00ffff, 0 0 40px #ff00ff;
  margin-bottom: 40px;
}

.tradition-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.trad-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 20px;
  width: 280px;
  transition: 0.3s;
  box-shadow: 0 0 20px #ff00ff;
}

.trad-card img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 10px;
}

.trad-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px #00ffff;
}

/* About */
.about {
  text-align: center;
  padding: 70px 10%;
  background: linear-gradient(135deg, #0a0a0a, #1a0033);
  box-shadow: 0 0 40px #ff00ff;
}

.about h2 {
  font-size: 2.5rem;
  color: #ff00ff;
  text-shadow: 0 0 25px #ff00ff, 0 0 40px #00ffff;
  margin-bottom: 25px;
}

.about p {
  font-size: 1.2rem;
  color: #dcdcdc;
  line-height: 1.8;
  max-width: 800px;
  margin: auto;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  box-shadow: 0 0 25px #00ffff;
}

/* Contact */
.contact {
  text-align: center;
  padding: 70px 10%;
  background: linear-gradient(135deg, #1a0033, #0a0a0a);
  box-shadow: 0 0 40px #00ffff;
}

.contact h2 {
  font-size: 2.5rem;
  color: #00ffff;
  text-shadow: 0 0 25px #00ffff, 0 0 40px #ff00ff;
  margin-bottom: 15px;
}

.contact form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  max-width: 500px;
  margin: auto;
}

.contact input,
.contact textarea {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 10px;
  outline: none;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1rem;
}

.contact button {
  background: #00ffff;
  color: #000;
  font-weight: bold;
  padding: 10px 25px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.contact button:hover {
  background: #ff00ff;
  color: white;
  box-shadow: 0 0 20px #ff00ff;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-top: 2px solid #00ffff;
  box-shadow: 0 0 15px #00ffff;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
