/* General */
body, html {
  margin: 0;
  padding: 0;
  font-family: 'Lato', sans-serif;
  height: 100%;
  overflow-x: hidden;

  /* Background image */
  background: url('img/bg.jpg') no-repeat center center fixed;
  background-size: cover;
}

/* Hero Section */
header {
  text-align: center;
  padding: 150px 20px 60px;
  position: relative;
  z-index: 2;
}

header .logo {
  max-width: 700px; /* Bigger logo */
  width: 80%;
  height: auto;
  margin-bottom: 50px;
}

/* Dark text for bright sky background (smaller) */
header .hero-text {
  font-size: 1.4rem; /* smaller than before */
  max-width: 800px;
  margin: 0 auto;
  color: #111; /* dark color for sky background */
  text-shadow: 0 2px 5px rgba(255,255,255,0.3); /* subtle shadow */
  line-height: 1.6;
}

/* Footer without background */
footer {
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  color: #111; /* Dark color for footer */
  position: relative;
  z-index: 2;
}

footer a {
  color: #333;
  text-decoration: none;
  font-weight: 600;
}

footer a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 1024px) {
  header .logo {
    max-width: 500px;
  }
  header .hero-text {
    font-size: 1.5rem;
    max-width: 600px;
  }
}

@media (max-width: 768px) {
  header .logo {
    max-width: 350px;
  }
  header .hero-text {
    font-size: 1.3rem;
    max-width: 90%;
  }
}
