

/* =========================
   ROOT / RESET
========================= */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family: Arial, sans-serif;
  background:#0b0b0b;
  color:#f5f5f5;
  line-height:1.6;
}

/* =========================
   HEADER
========================= */
header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 20px;
  background:#000;
  position:sticky;
  top:0;
  z-index:1000;
}

.logo{
  color:#D4AF37;
  font-weight:bold;
  font-size:1.2rem;
}

nav{
  display:flex;
  gap:15px;
}

nav a{
  color:#fff;
  text-decoration:none;
  font-size:0.9rem;
  transition:0.3s;
}

nav a:hover{
  color:#D4AF37;
}

/* =========================
   HERO
========================= */
.hero{
  padding:80px 20px;
}

.hero h1{
  color:#D4AF37;
  font-size:2.2rem;
  margin-bottom:10px;
}

.hero p{
  max-width:500px;
  opacity:0.9;
}

/* =========================
   BUTTONS
========================= */
button{
  padding:10px 18px;
  border:none;
  border-radius:25px;
  cursor:pointer;
  margin-top:10px;
}

.primary{
  background:#D4AF37;
  color:#000;
}

.secondary{
  background:#222;
  color:#fff;
}

/* =========================
   SECTIONS
========================= */
.section{
  padding:30px 20px;
}

.section-title{
  margin-bottom:15px;
  border-left:4px solid #D4AF37;
  padding-left:10px;
  font-size:1.1rem;
}

/* =========================
   VIDEO ROW
========================= */
.row{
  display:flex;
  gap:12px;
  overflow-x:auto;
}

/* =========================
   VIDEO CARD
========================= */
.video-card{
  min-width:200px;
  background:#111;
  border-radius:10px;
  padding:10px;
  transition:0.3s;
}

.video-card:hover{
  transform:scale(1.05);
}

.video-card img{
  width:100%;
  border-radius:6px;
}

.video-card p{
  font-size:0.85rem;
  margin-top:6px;
}

/* =========================
   MODAL
========================= */
#videoModal{
  display:none;
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.9);
  justify-content:center;
  align-items:center;
}

#videoModal iframe{
  width:90%;
  height:50%;
}

/* =========================
   TIMELINE (ABOUT PAGE)
========================= */
.timeline{
  margin-top:20px;
  border-left:2px solid #D4AF37;
  padding-left:20px;
}

.timeline-item{
  margin-bottom:20px;
  position:relative;
}

.timeline-item::before{
  content:"";
  position:absolute;
  left:-11px;
  top:5px;
  width:10px;
  height:10px;
  background:#D4AF37;
  border-radius:50%;
}

.timeline-item h3{
  color:#D4AF37;
}

/* =========================
   FOOTER
========================= */
footer{
  text-align:center;
  padding:20px;
  background:#000;
  margin-top:30px;
  font-size:0.8rem;
}

/* =========================
   MOBILE
========================= */
@media(max-width:768px){

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

  nav{
    display:none;
  }

}
img{
  max-width:100%;
  height:auto;
}