* {margin: 0; padding: 0; box-sizing: border-box;}
body {font-family: Arial, sans-serif; line-height: 1.6; color: #333;}

.hero {
  background: url('../images/hero.jpg') no-repeat center center/cover;
  height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
}
.hero .overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.4);
}
.hero-content {position: relative; z-index: 1;}
.hero h1 {font-size: 3rem; margin-bottom: 10px;}
.hero p {font-size: 1.2rem; margin-bottom: 20px;}
.btn {
  background: #4CAF50; color: #fff; padding: 10px 20px; border-radius: 30px;
  text-decoration: none; transition: background 0.3s;
}
.btn:hover {background: #388E3C;}

section {padding: 60px 20px; max-width: 900px; margin: auto;}
h2 {margin-bottom: 20px; color: #2e4630; text-align: center;}

#gallery .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}
#gallery img {
  width: 75%;
  border-radius: 10px;
  object-fit: cover;
  height: 75%;
}

form {display: grid; gap: 15px;}
form input, form textarea {padding: 10px; border: 1px solid #ccc; border-radius: 5px;}
form button {background: #4CAF50; color: white; border: none; padding: 10px; cursor: pointer;}
form button:hover {background: #388E3C;}

footer {text-align: center; background: #2e4630; color: white; padding: 20px;}
