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

body{
  background:#030712;
  color:white;
  font-family:Arial,sans-serif;
  line-height:1.6;
}

.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

.hero{
  position:relative;
  height:100vh;
  background:url('images/milkyway.jpg') center/cover no-repeat;
  display:flex;
  justify-content:center;
  align-items:center;
}

.overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.72);
}

nav{
  position:absolute;
  top:30px;
  left:50%;
  transform:translateX(-50%);
  width:90%;
  max-width:1200px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  z-index:5;
}

.logo{
  font-size:28px;
  font-weight:800;
}

.menu a{
  color:white;
  text-decoration:none;
  margin-left:25px;
}

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

.star{
  width:12px;
  height:12px;
  background:white;
  border-radius:50%;
  margin:0 auto 30px;
  box-shadow:0 0 30px white;
}

.subtitle{
  letter-spacing:8px;
  color:#bbb;
  margin-bottom:20px;
}

.hero h1{
  font-size:110px;
  margin-bottom:20px;
}

.tagline{
  letter-spacing:5px;
  text-transform:uppercase;
  color:#ccc;
  margin-bottom:40px;
}

.button{
  display:inline-block;
  padding:15px 35px;
  border:1px solid white;
  border-radius:40px;
  color:white;
  text-decoration:none;
  transition:0.3s;
}

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

section{
  padding:100px 0;
}

h2{
  font-size:48px;
  margin-bottom:40px;
}

.about,
.equipment{
  background:#060d1a;
}

.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
}

.card{
  background:#0a1325;
  border-radius:20px;
  overflow:hidden;
}

.card img{
  width:100%;
  height:380px;
  object-fit:cover;
  transition:0.5s;
}

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

.info{
  padding:25px;
}

.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
}

.equipment-card{
  background:#0a1325;
  padding:40px;
  border-radius:20px;
}

footer{
  padding:60px 20px;
  text-align:center;
  border-top:1px solid rgba(255,255,255,0.08);
}

footer p{
  color:#888;
  margin-top:10px;
}

@media(max-width:768px){
  .hero h1{
    font-size:64px;
  }

  nav{
    flex-direction:column;
    gap:15px;
  }
}
