/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  font-family: 'Open Sans', sans-serif; /* If you're using the Google Font above */
  color: #fff;
  background-color: #111; /* Fallback background color */
}

/* Navigation Bar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #000; /* or any preferred color */
}

.logo img {
  max-height: 150px; /* Adjust as needed */
}

.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin-left: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #00bcd4; /* Example hover color */
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 80vh; /* Adjust height as needed */
  background: url("img/background.jpg") no-repeat center center / cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* Dark overlay */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.hero-overlay h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-overlay h2 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

/* Contact Button */
.contact-btn {
  display: inline-block;
  padding: 1rem 2rem;
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}

.contact-btn:hover {
  background: #fff;
  color: #000;
}

/* Under Development Section */
.development {
  padding: 50px 20px;
  background-color: #222;
  text-align: center;
}

.development h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.development p {
  font-size: 1.2rem;
  line-height: 1.5;
}

/* Footer Section */
footer {
  background-color: #000;
  padding: 20px;
}

.footer-text {
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

.footer-text p {
  margin: 5px 0;
  font-size: 0.9rem;
}

/* Responsive Media Query (example for screens up to 768px) */
@media (max-width: 768px) {
  /* Adjust hero text sizes on smaller screens */
  .hero-overlay h1 {
    font-size: 2rem;
  }
  .hero-overlay h2 {
    font-size: 1.2rem;
  }
  .contact-btn {
    font-size: 0.9rem;
    padding: 0.8rem 1.5rem;
  }

  /* Stack navigation for small screens if needed */
  .navbar {
    flex-direction: column;
  }
  .nav-links {
    margin-top: 10px;
  }
}