/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY */
body {
  font-family: 'Hind Madurai', sans-serif;
  background: radial-gradient(circle at top, #8b2c00, #1a0000);
  color: #f5e6c8;
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  background: rgba(0,0,0,0.9);
  border-bottom: 1px solid gold;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo {
  color: gold;
  font-size: 20px;
}

/* NAV */
.nav {
  display: flex;
  list-style: none;
  gap: 20px;
}

.nav a {
  color: white;
  text-decoration: none;
}

.nav a:hover {
  color: gold;
}

/* MOBILE MENU */
.menu-toggle {
  display: none;
  color: white;
  font-size: 24px;
}

/* HERO 🔥 */
.hero {
  width: 100%;
  height: auto;
  overflow: hidden;
}

/* 🔥 முக்கியம் */
.hero-img {
  width: 100%;
  height: auto;
  display: block;

  object-fit: contain;   /* 🔥 crop இல்லாமல் full image */
}

/* ABOUT */
.about {
  padding: 60px 20px;
}

.about-container {
  max-width: 900px;
  margin: auto;
  text-align: center;

  background: rgba(255,255,255,0.05);
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(255,215,0,0.2);
}

.about h2 {
  color: gold;
  margin-bottom: 20px;
}

.about p {
  line-height: 1.8;
  margin-bottom: 15px;
}

/* EVENTS */
.features {
  padding: 50px 20px;
  text-align: center;
}

.features h2 {
  color: gold;
  margin-bottom: 30px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.card {
  width: 220px;
  padding: 20px;
  background: rgba(255,255,255,0.05);
  border-radius: 20px;
  text-decoration: none;
  color: white;
  transition: 0.3s;
}

.card:hover {
  background: gold;
  color: black;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
  border-top: 1px solid gold;
}

/* MOBILE */
@media(max-width:768px){

  .nav {
    display: none;
    flex-direction: column;
    background: black;
    width: 100%;
    text-align: center;
  }

  .nav.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .card {
    width: 90%;
  }

}
