:root{
  --dark:#0b1d2a;
  --gold:#d6b04a;
  --light:#f4f4f4;
  --text:#0b0f14;
  --green:#2e7d32;
  --muted:#cbd5e1;
}

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

body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto;
  background:#fff;
  color:var(--text);
}

/* HEADER */
header{
  background:var(--dark);
  color:white;
  padding:20px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  position:relative;
}

.logo{
  font-weight:bold;
  font-size:18px;
}

/* MENU */
.menu-icon{
  font-size:22px;
  cursor:pointer;
}

.mobile-menu{
  display:none;
  flex-direction:column;
  position:absolute;
  top:60px;
  right:20px;
  background:white;
  padding:15px;
  border-radius:8px;
  box-shadow:0 5px 20px rgba(0,0,0,0.1);
  z-index:100;
}

.mobile-menu a{
  text-decoration:none;
  padding:10px 0;
  color:#333;
}

/* HERO */
.hero{
  position:relative;
  background:var(--dark);
  color:white;
  padding:60px 20px;
  overflow:hidden;
}

.hero-slider{
  position:absolute;
  width:100%;
  height:100%;
  top:0;
  left:0;
}

.slide{
  position:absolute;
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:0;
  transition:opacity 1s ease;
}

.slide.active{
  opacity:0.3;
}

.hero-content{
  position:relative;
  z-index:2;
}

.hero h1{
  font-size:34px;
  margin-bottom:15px;
}

.hero p{
  color:var(--muted);
  line-height:1.6;
}

/* BUTTONS */
.btn{
  display:inline-block;
  margin-top:15px;
  margin-right:10px;
  padding:12px 18px;
  border-radius:6px;
  text-decoration:none;
  font-weight:600;
  transition:0.3s;
}

.primary{
  background:var(--gold);
  color:black;
}

.primary:hover{
  opacity:0.9;
}

.secondary{
  border:1px solid #fff;
  color:white;
}

.secondary:hover{
  background:white;
  color:black;
}

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

.section h2{
  margin-bottom:15px;
}

/* CARDS */
.cards{
  display:flex;
  flex-direction:column;
  gap:15px;
}

.card{
  background:white;
  padding:20px;
  border-radius:10px;
  box-shadow:0 2px 8px rgba(0,0,0,0.05);
}

/* TAGS */
.tag{
  font-size:12px;
  font-weight:bold;
  margin-bottom:5px;
}

.confirmed{ color:var(--green); }
.developing{ color:#b08900; }
.unconfirmed{ color:#888; }

/* PROJECT SECTION */
.projects{
  background:var(--light);
}

/* FOOTER */
footer{
  background:var(--dark);
  color:white;
  padding:20px;
  text-align:center;
  font-size:14px;
}

/* MOBILE */
@media(max-width:600px){
  .hero h1{
    font-size:28px;
  }
}
/* JOIN FORM */
.join-form{
  display:flex;
  flex-direction:column;
  gap:12px;
  margin-top:15px;
}

.join-form input,
.join-form select{
  padding:12px;
  border-radius:6px;
  border:1px solid #ccc;
  font-size:16px;
}

.join-form button{
  margin-top:10px;
}
.card img{
  width:100%;
  border-radius:10px;
  margin-bottom:10px;
}
.logo img{
  height:62px;
  width:auto;
  object-fit:contain;
}