*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:Arial, sans-serif;
  line-height:1.6;
  background:#fff;
  color:#222;
}

.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

/* HEADER */

.header{
  background:#111;
  padding:15px 0;
  position:sticky;
  top:0;
  z-index:1000;
}

.nav-container{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.logo a{
  color:#fff;
  text-decoration:none;
  font-size:28px;
  font-weight:bold;
}

.navbar ul{
  display:flex;
  list-style:none;
  gap:20px;
}

.navbar a{
  color:#fff;
  text-decoration:none;
  font-weight:600;
}

.navbar a:hover{
  color:#E86800;
}

.menu-toggle{
  display:none;
  font-size:28px;
  color:#fff;
  cursor:pointer;
}

/* HERO */

.hero{
  height:90vh;
  background:url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee')
  center/cover no-repeat;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}

.hero-overlay{
  position:absolute;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.5);
}

.hero-content{
  position:relative;
  z-index:2;
  color:#fff;
}

.hero-content h1{
  font-size:55px;
  margin-bottom:20px;
}

.hero-content p{
  max-width:700px;
  margin:auto;
  font-size:18px;
}

.hero-buttons{
  margin-top:30px;
}

.btn{
  display:inline-block;
  background:#E86800;
  color:#fff;
  padding:14px 30px;
  text-decoration:none;
  margin:10px;
  border-radius:5px;
  font-weight:bold;
}

.btn-outline{
  background:transparent;
  border:2px solid #fff;
}

/* SECTIONS */

section{
  padding:80px 0;
}

.section-title{
  text-align:center;
  margin-bottom:50px;
}

.section-title h2{
  font-size:40px;
  margin-bottom:10px;
}

/* EVENTS */

.events-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:30px;
}

.event-card{
  background:#fff;
  border-radius:10px;
  overflow:hidden;
  box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

.event-card img{
  width:100%;
  height:220px;
  object-fit:cover;
}

.event-content{
  padding:20px;
}

.event-content h3{
  margin-bottom:10px;
}

.event-btn{
  display:inline-block;
  margin-top:15px;
  text-decoration:none;
  color:#E86800;
  font-weight:bold;
}

/* GALLERY */

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:20px;
}

.gallery-grid img{
  width:100%;
  height:250px;
  object-fit:cover;
  border-radius:10px;
}

/* VIDEOS */

.video-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:30px;
}

.video-card iframe{
  width:100%;
  height:300px;
  border:none;
  border-radius:10px;
}

/* INTERNAL LINKS */

.links-buttons{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:15px;
}

.links-buttons a{
  text-decoration:none;
  background:#E86800;
  color:#fff;
  padding:14px 24px;
  border-radius:5px;
  font-weight:bold;
}

/* FAQ */

.faq-container{
  max-width:800px;
  margin:auto;
}

.faq-item{
  margin-bottom:20px;
  border:1px solid #ddd;
  border-radius:5px;
  overflow:hidden;
}

.faq-question{
  width:100%;
  text-align:left;
  padding:20px;
  border:none;
  background:#f7f7f7;
  font-size:18px;
  cursor:pointer;
  font-weight:bold;
}

.faq-answer{
  display:none;
  padding:20px;
  background:#fff;
}

/* FOOTER */

.footer{
  background:#111;
  color:#fff;
  padding-top:60px;
}

.footer-container{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:40px;
}

.footer h3,
.footer h4{
  margin-bottom:15px;
}

.footer a{
  color:#fff;
  text-decoration:none;
}

.footer ul{
  list-style:none;
}

.footer li{
  margin-bottom:10px;
}

.footer-bottom{
  text-align:center;
  margin-top:40px;
  padding:20px 0;
  border-top:1px solid rgba(255,255,255,0.1);
}

/* MOBILE */

@media(max-width:768px){

  .navbar{
    display:none;
    position:absolute;
    top:70px;
    left:0;
    width:100%;
    background:#111;
  }

  .navbar ul{
    flex-direction:column;
    padding:20px;
  }

  .navbar.active{
    display:block;
  }

  .menu-toggle{
    display:block;
  }

  .hero-content h1{
    font-size:38px;
  }

}