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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  background-color: #fafafa;
  color: #333;
  overflow-x: hidden;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}


.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}


header {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: #fff;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}


.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 0 1rem;
}


.logo {
  margin-left: -18rem;
}
.logo img {
  height: 50px;
}


.nav-menu {
  display: flex;
  gap: 2rem;
  margin-right: -10rem;
}

.nav-menu li a {
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.5rem;
  border-radius: 4px;
  color: #000;
  transition: background-color 0.3s ease;
}
.nav-menu li a:hover {
  background-color: rgba(245, 166, 35, 0.1);
}


.hero {
  display: flex;
  flex-wrap: wrap;
  height: 100vh; 
  margin-top: 0;
}


.hero .hero-image,
.hero .hero-content {
  flex: 1 1 100%;
}

.hero .hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.hero .hero-content {
  background-color: #f5a623;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 4rem;
  padding-left: 4rem;
  padding-right: 4rem;
  color: #000;
  text-align: left;
}


.hero .hero-content h1 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #000;
  padding-bottom: 15rem;
}


.hero .hero-content .hero-text {
  font-size: 1.125rem;
  color: #000;
  margin-bottom: 2.5rem;
  max-width: 600px;
}


.hero .hero-content .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #111;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  position: relative;
  transition: background-color 0.3s ease;
}


.hero .hero-content .btn::after {
  content: "→";
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  color: #111;
  font-size: 1rem;
  width: 2rem;
  height: 2rem;
  margin-left: 0.75rem;
  border-radius: 4px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.hero .hero-content .btn:hover {
  background-color: #333;
}
.hero .hero-content .btn:hover::after {
  background-color: #eee;
}


@media (max-width: 767px) {
  .navbar {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .nav-menu {
    display: none;
  }
  .logo {
    margin: 0 auto;
  }

  .hero {
    flex-direction: column;
    height: auto;
  }
  .hero .hero-image {
    height: 50vh;
  }
  .hero .hero-image img {
    object-position: center top;
  }
  .hero .hero-content {
    padding: 2rem 1rem;
    text-align: center;
  }
  .hero .hero-content h1 {
    font-size: 2.5rem;
  }
  .hero .hero-content .hero-text {
    font-size: 1rem;
    margin-bottom: 2.5rem;
  }
  
  .hero .hero-content .btn {
    width: auto;
    justify-content: center;
  }
  .hero .hero-content .btn::after {
    margin-left: 0.5rem;
}

}
@media (min-width: 768px) and (max-width: 1023px) {
  .nav-menu {
    display: flex;
    gap: 1.5rem;
  }

  .hero .hero-image,
  .hero .hero-content {
    flex: 1 1 50%;
  }
  .hero .hero-content {
    text-align: left;
    padding: 4rem;
    height: auto;
  }
  .hero {
    height: auto;
  }
  .hero .hero-content h1 {
    font-size: 3.5rem;
  }
  .hero .hero-content .hero-text {
    font-size: 1rem;
    margin-bottom: 2.5rem;
  }
  .hero .hero-content .btn {
    width: auto;
  }
  .hero .hero-content .btn::after {
    margin-left: 0.75rem;
  }
}


@media (min-width: 1024px) {
  .hero .hero-image {
    flex: 0 0 60%;
  }
  .hero .hero-content {
    flex: 0 0 40%;
    text-align: left;
    padding: 5rem 6rem;
    height: 100vh;
  }
  .hero {
    height: 100vh;
  }
  .hero .hero-content h1 {
    font-size: 5rem;
  }
  .hero .hero-content .hero-text {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
  }
  .hero .hero-content .btn {
    width: auto;
  }
  .hero .hero-content .btn::after {
    margin-left: 0.75rem;
  }
}









