/* style.css */

/* Base styles */
body {
  font-family: sans-serif;
  margin: 0;
  padding: 0;
}

/* Hero section */
.hero {
  background-image: url("images/hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;             /* desktop full-screen look */
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;       /* center text vertically on desktop */
  align-items: center;
  text-align: center;
  color: #fff;
}

.hero h1 {
  font-size: 3em;
  margin-bottom: 10px;
}

.hero h2 {
  font-size: 2em;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
  .hero {
    min-height: auto;            /* let height grow with content */
    justify-content: flex-start; /* push text to top on mobile */
    padding: 4rem 1rem;
  }

  .hero h1 {
    font-size: 2em;
  }

  .hero h2 {
    font-size: 1.4em;
  }
}

/* Section padding */
.about,
.why-choose,
.services,
.contact,
.skydown,
.history {
  padding: 50px;
}

/* About section */
.about p {
  font-size: 1.2em;
  line-height: 1.5;
}

/* Why choose section */
.why-choose h2 {
  margin-bottom: 20px;
}
