*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  background:#000;
  color:#fff;
  font-family:Arial, Helvetica, sans-serif;
}

.hero{
  position:relative;
  height:100vh;
  overflow:hidden;
}

.bg-video{
  position:absolute;
  width:100%;
  height:100%;
  object-fit:cover;
}

.overlay{
  position:absolute;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.65);
}

header{
  position:relative;
  z-index:2;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:30px 60px;
}

.logo img{
  height:140px;
 filter:
    drop-shadow(0 0 8px rgba(255,255,255,.20))
    drop-shadow(0 0 20px rgba(255,255,255,.10));
}

nav a{
  color:#fff;
  text-decoration:none;
  margin-left:45px;
  font-size:15px;
  letter-spacing:2px;
  text-transform:uppercase;
}

.hero-content{
  position:relative;
  z-index:2;
  height:80%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:20px;
}

.hero-content h1{
  font-size:70px;
  font-weight:300;
  max-width:1000px;
  margin-bottom:25px;
}

.hero-content p{
  max-width:700px;
  color:#cfcfcf;
  line-height:1.8;
  margin-bottom:40px;
}

.buttons{
  display:flex;
  gap:20px;
}

.btn,
.btn-outline{
  padding:15px 35px;
  text-decoration:none;
  border-radius:40px;
  transition:0.3s;
}

.btn{
  background:#fff;
  color:#000;
}

.btn-outline{
  border:1px solid rgba(255,255,255,.5);
  color:#fff;
}

.section{
  padding:120px 10%;
}

.section h2{
  text-align:center;
  font-size:45px;
  margin-bottom:70px;
}

.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:40px;
}

.card{
  background:#111;
  padding:40px;
  border-radius:20px;
  border:1px solid rgba(255,255,255,.08);
}

.card h3{
  margin-bottom:20px;
}

.card p{
  color:#bdbdbd;
  line-height:1.8;
}

.dark{
  background:#080808;
}

.about-text{
  max-width:900px;
  margin:auto;
  text-align:center;
  color:#cfcfcf;
  line-height:2;
}

#contact{
  text-align:center;
}

#contact p{
  font-size:22px;
  margin-bottom:15px;
}

footer{
  padding:40px;
  text-align:center;
  border-top:1px solid rgba(255,255,255,.08);
  color:#8f8f8f;
}

@media(max-width:768px){

  header{
    flex-direction:column;
    gap:20px;
  }

  nav a{
    margin:0 10px;
  }

  .hero-content h1{
    font-size:42px;
  }
}
.tagline{
  font-size:13px;
  letter-spacing:4px;
  text-transform:uppercase;
  color:rgba(255,255,255,.85);
  margin-bottom:25px;
}
.closing-message{
  padding:120px 30px 80px;
  text-align:center;
  background:#0a0a0a;
}

.closing-message h2{
  font-size:22px;
  font-weight:300;
  color:#ffffff;
  letter-spacing:1px;
  line-height:1.4;
  max-width:800px;
  margin:auto;
  text-shadow:0 0 20px rgba(255,255,255,0.08);
}
footer{
  background:#050505;
  padding:70px 30px;
  text-align:center;
  color:#cfcfcf;
}

.footer-logo{
  width:240px;
  height:auto;
  margin-bottom:25px;
  opacity:0.95;
filter: drop-shadow(0 0 12px rgba(212,175,55,0.25));
}

footer p{
  margin:8px 0;
  letter-spacing:2px;
  font-size:13px;
  color:#9a9a9a;
}