
body {
  margin: 0;
  font-family: Arial, sans-serif;
}

header {
  background: #000;
  color: #fff;
  padding: 1em;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1em;
  padding: 0;
  margin: 0;
}

.hero {
  background: url('https://i.imgur.com/pN3g91q.jpeg') no-repeat center center;
  background-size: cover;
  height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  color: white;
  text-shadow: 0 0 10px black;
}

.hero h1 {
  margin-bottom: 20vh;
  font-size: 2rem;
  text-align: center;
}


/* Improved Mobile Styles */
@media (max-width: 768px) {
  body {
    padding: 0.5rem;
    font-size: 16px;
  }

  header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-section {
    padding-top: 1rem;
    margin-top: 1rem;
  }

  .hero-text {
    font-size: 1.25rem;
    padding: 0.5rem;
    text-align: center;
  }

  nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 0;
    margin: 1rem 0;
  }

  nav ul li {
    margin: 0;
  }

  .background-logo {
    width: 100%;
    height: auto;
    max-width: 100vw;
    object-fit: contain;
  }

  .gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .card, .service, .about, .contact {
    padding: 1rem;
    margin: 1rem 0;
  }

  .button {
    padding: 10px 15px;
    font-size: 1rem;
  }

  img {
    max-width: 100%;
    height: auto;
  }
}
