/* Reset + base styles */
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: 'Segoe UI', sans-serif;
}

/* Full screen background image */
.hero-section {
  background: url('Front.png') no-repeat center center/cover;
  height: 100vh;
  position: relative;
}

/* Dark overlay for contrast */
.overlay {
  background-color: rgba(0, 0, 0, 0.3);
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* Align content to top */
  align-items: center;
  padding-top: 0vh; /* Adjust spacing from top */
}

/* Text styles */
.content {
  color: #fff;
  text-align: center;
  padding: 1rem;
}

.content h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.tagline {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

/* Navigation buttons */
.nav-buttons a {
  display: inline-block;
  margin: 0 0.5rem;
  padding: 0.75rem 1.5rem;
  background-color: #ffffffcc;
  color: #000;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.nav-buttons a:hover {
  background-color: #fff;
}


@media (max-width: 768px) {
  .hero-section {
    background-image: url('Front-mobile.png'); /* mobile-optimized image */
    background-size: cover;
  }
 #about {
    padding: 1.5rem;
  }

  #about .about-content h2 {
    font-size: 2rem;
  }

  #about .about-content p {
    font-size: 1rem;
    line-height: 1.6;
  
  }
}
































