/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body, html {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  height: 100%;
  overflow-x: hidden;
  background-color: #fff;
}

/* Main Wrapper */
#main {
  width: 100%;
  overflow: hidden;
}/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  z-index: 0;
}


.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
  background-color: rgba(0.5, 0, 0, 0.573);
  background-image: url('https://images.unsplash.com/photo-1621583628955-42fbc37bf424?fm=jpg&q=60&w=3000&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8Nnx8emFuemliYXIlMjBiZWFjaHxlbnwwfHwwfHx8MA%3D%3D');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}


/* Navigation */
nav {
  padding: 2vw 4vw;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 100;
  background: rgba(0, 0, 0, 0.3);
}

.logo {
  width: 120px;
  height: auto;
}

#nav-part2 {
  display: flex;
  align-items: center;
  gap: 1vw;
}

#nav-part2 h4 {
  padding: 10px 20px;
  border: 1px solid #ffffff3c;
  border-radius: 50px;
  font-weight: 500;
  color: #ffffffd4;
  transition: all ease 0.4s;
  position: relative;
  font-size: 18px;
  overflow: hidden;
  cursor: pointer;
}

#nav-part2 h4::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: #d4a94f;
  left: 0;
  bottom: -100%;
  border-radius: 50%;
  transition: all ease 0.4s;
  z-index: 1;
}

#nav-part2 h4:hover::after {
  bottom: 0;
  border-radius: 0;
}

#nav-part2 h4 a {
  color: #fff;
  text-decoration: none;
  position: relative;
  z-index: 9;
}

#nav-part2 h4:hover a {
  color: #fff;
}

.btn-top {
  background-color: #d4a94f;
  padding: 10px 20px;
  text-decoration: none;
  color: white;
  font-weight: bold;
  border-radius: 3px;
}



/* Hero Content */
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  padding: 20px;
}

.hero-content h1 {
  font-size: 3em;
  font-weight: bold;
  max-width: 900px;
  margin-top: 70%;
  line-height: 1.3;
}

.btn-main {
  display: inline-block;
  margin-top: 20px;
  background-color: #d4a94f;
  padding: 15px 30px;
  color: white;
  font-weight: bold;
  text-decoration: none;
  border-radius: 4px;
}





/* Footer */
footer {
  background-color: #000;
  color: white;
  padding: 60px 40px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-col {
  flex: 1 1 200px;
  margin: 20px;
}

.footer-col h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 20px;
  border-bottom: 1px solid #555;
  padding-bottom: 10px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  padding: 6px 0;
  font-size: 15px;
}

.footer-col p {
  font-size: 15px;
  line-height: 1.6;
}

.footer-logo {
  width: 150px;
  margin-bottom: 15px;
}

/* ================= Responsive Media Queries ================= */

/* Large desktops / 1200px+ */
@media (max-width: 1200px) {
  .hero-content h1 {
    font-size: 2.5em;
    margin-top: 60%;
  }

  .btn-main {
    padding: 12px 25px;
    font-size: 1rem;
  }
}

/* Tablets / 992px */
@media (max-width: 992px) {
  nav {
    flex-direction: column;
    gap: 1rem;
    padding: 2vw;
  }

  #nav-part2 {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }

  .hero-content h1 {
    font-size: 2rem;
    margin-top: 50%;
  }

  .btn-main {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

/* Small tablets / 768px */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 1.8rem;
    margin-top: 40%;
  }

  .btn-main {
    padding: 8px 15px;
    font-size: 0.85rem;
  }

  .logo {
    width: 100px;
  }

  #nav-part2 h4 {
    font-size: 16px;
    padding: 8px 16px;
  }
}

/* Mobile / 480px */
@media (max-width: 40px) {
  .hero-content h1 {
    font-size: 1.5rem;
    margin-top: 30%;
  }

  .btn-main {
    padding: 6px 12px;
    font-size: 0.8rem;
  }

  .logo {
    width: 80px;
  }

  #nav-part2 {
    gap: 0.5rem;
  }

  #nav-part2 h4 {
    font-size: 14px;
    padding: 6px 12px;
  }

  footer {
    padding: 30px 20px;
  }

  .footer-container {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
  }

  .footer-col {
    margin: 10px 0;
  }

  .footer-logo {
    width: 120px;
  }
}

/* Extra small / 360px */
@media (max-width: 360px) {
  .hero-content h1 {
    font-size: 1.2rem;
    margin-top: 25%;
  }

  .btn-main {
    padding: 5px 10px;
    font-size: 0.75rem;
  }

  .logo {
    width: 70px;
  }

  #nav-part2 h4 {
    font-size: 12px;
    padding: 5px 10px;
  }

  .footer-logo {
    width: 100px;
  }
}
