@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Merriweather', serif;
}

body {
  color: white;
  background: #000; 
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

header .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  font-size: 18px;
  color: white;
}

header nav {
  display: flex;
  align-items: center;
  width: 100%;
}

header .menu {
  list-style: none;
  display: flex;
  gap: 30px;
  margin-left: auto;
  flex-wrap: wrap;
}

header .menu li a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s;
  white-space: nowrap;
}

header .menu li a:hover {
  color: #e6b800;
}

.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.hero video.background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(70%);
  z-index: 1;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.hero .overlay {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 0 20px;
}

.hero h1 {
  font-size: 80px;
  font-weight: bold;
}

.hero h1 .highlight {
  color: #e6b800; 
  font-size: 100px;
}

.hero h2 {
  font-size: 28px;
  margin: 20px 0;
  font-weight: bold;
  letter-spacing: 1px;
}

.hero .btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  border: 2px solid white;
  text-decoration: none;
  color: white;
  font-weight: bold;
  transition: all 0.3s;
}

.hero .btn:hover {
  background: #e6b800;
  border-color: #e6b800;
  color: white;
}

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

  .hero h1 .highlight {
    font-size: 65px;
  }

  .hero h2 {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  header {
    padding: 10px 20px;
  }

  header .menu {
    gap: 15px;
  }

  header .menu li a {
    font-size: 14px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero h1 .highlight {
    font-size: 50px;
  }

  .hero h2 {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  header .menu {
    gap: 10px;
    justify-content: center;
  }

  header .menu li a {
    font-size: 12px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero h1 .highlight {
    font-size: 46px;
  }

  .hero h2 {
    font-size: 16px;
  }
}
