@font-face {
  font-family: Bropella;
  src: url('./fonts/Bropella.ttf');
}
@font-face {
  font-family: Passenger;
  src: url('./fonts/passenger_light.otf');
}

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

body {
  font-family: "Arial, Helvetica, sans-serif";
  background-color: #f2f2f2;
  color: #111;
}


.navbar {
  width: 95%;
  max-width: 1200px;
  margin: 20px auto;
  background: #fff;
  border-radius: 40px;
  padding: 12px 20px;
}

.navbar ul {
  display: flex;
  justify-content: space-around;
  align-items: center;
  list-style: none;
  flex-wrap: wrap;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar .dropbtn {
  font-family: Arial, Helvetica, sans-serif;
}

.navbar a {
  text-decoration: none;
  color: #000;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.navbar a:hover {
  color: #666;
}

.navbar a.active {
  color: #666;
}


.dropdown {
  position: relative;
}

.dropbtn {
  background: none;
  border: none;
  font-size: 0.9rem;
  cursor: pointer;
  padding: 0;
  color: #000;
}

.dropbtn:hover {
  color: #666;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  min-width: 180px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
  border-radius: 6px;
  z-index: 1000;
}

.dropdown-content a {
  display: block;
  padding: 12px 16px;
  text-decoration: none;
  color: #111;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
  display: block;
}


.hero {
  text-align: center;
  margin-top: 150px;
  padding: 0 10px;
}

.hero h1 {
  font-family: "Bropella";
  font-size: 14vw;
  font-weight: 500;
  color: #222;
  line-height: 1;
  word-break: break-word;
}

.hero p {
  margin-top: 15px;
  font-size: 2rem;
  font-family: "Passenger";
  color: black;
  padding: 0 10px;
}

.hero .description{
  font-size: 1.2rem;
  color: grey;
  font-style: italic;
}

@media (max-width: 768px) {
  .navbar {
    padding: 8px 12px;
    border-radius: 20px;
  }

  .navbar a {
    font-size: 0.8rem;
  }

  .hero h1 {
    font-size: 18vw;
  }

  .hero p {
    font-size: 1.2rem;
  }

  .hero .description {
    font-size: 0.9rem;
  }
}
