* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #111;
  background: #fff;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

img {
  width: 100%;
  display: block;
}

/* HEADER */

header {
  background: #000;
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 999;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.logo a{
  color:#fff;
  text-decoration:none;
  font-size:28px;
  font-weight:700;
}

nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.btn {
  display: inline-block;
  padding: 12px 26px;
  background: #fff;
  color: #000;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s;
}

.btn:hover {
  opacity: 0.8;
}

.btn-outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

/* HERO */

.hero {
  background:
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url('https://images.unsplash.com/photo-1492684223066-81342ee5ff30?q=80&w=1400&auto=format&fit=crop')
    center/cover no-repeat;

  min-height: 90vh;

  display: flex;
  align-items: center;
  text-align: center;
}

.hero-content {
  color: #fff;
}

.hero h1 {
  font-size: 60px;
  margin-bottom: 20px;
}

.hero p {
  max-width: 700px;
  margin: auto;
  font-size: 18px;
}

.hero-buttons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* SECTION */

section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 40px;
  margin-bottom: 10px;
}

/* EVENTS */

.event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.event-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.event-content {
  padding: 25px;
}

.event-content h3 {
  margin-bottom: 10px;
}

.card-btn {
  display: inline-block;
  margin-top: 15px;
  color: #000;
  font-weight: 600;
  text-decoration: none;
}

/* GALLERY */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-grid img {
  border-radius: 12px;
  height: 250px;
  object-fit: cover;
}

/* VIDEOS */

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.video-card iframe {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 12px;
}

/* CONTENT */

.content-section {
  background: #f7f7f7;
}

.content-text {
  max-width: 900px;
  margin: auto;
  text-align: center;
  font-size: 18px;
}

.internal-links {
  margin-top: 40px;

  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.internal-links a {
  text-decoration: none;
  background: #000;
  color: #fff;
  padding: 12px 22px;
  border-radius: 8px;
}

/* FAQ */

.faq-item {
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: #000;
  color: #fff;
  border: none;
  padding: 20px;
  text-align: left;
  font-size: 16px;
  cursor: pointer;
}

.faq-answer {
  display: none;
  padding: 20px;
  background: #fff;
}

/* FOOTER */

footer {
  background: #000;
  color: #fff;
  padding-top: 60px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  padding-bottom: 40px;
}

footer ul {
  list-style: none;
}

footer ul li {
  margin-bottom: 10px;
}

footer a {
  color: #fff;
  text-decoration: none;
}

.copyright {
  text-align: center;
  padding: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* RESPONSIVE */

@media(max-width: 768px) {

  .nav {
    flex-direction: column;
    gap: 20px;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .section-title h2 {
    font-size: 32px;
  }

}