
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  line-height: 1.6;
  background-color: #111;
  color: #eee;
}

.banner {
  background: url('bg.jpg') no-repeat center center/cover;
  height: 100vh;
  position: relative;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.5);
  height: 100%;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.overlay h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 5px #000;
}

.overlay p {
  font-size: 1.5rem;
}

section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: auto;
}

section h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 2rem;
  color: #f4a261;
}

.about p {
  text-align: center;
  max-width: 800px;
  margin: auto;
}

.services ul {
  list-style: none;
  padding: 0;
  text-align: center;
}

.services li {
  margin: 10px 0;
  font-size: 1.2rem;
}

.gallery-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.gallery-container img {
  width: 300px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);
  transition: transform 0.3s;
}

.gallery-container img:hover {
  transform: scale(1.05);
}

.contact p {
  text-align: center;
  font-size: 1.1rem;
  margin: 10px 0;
}

footer {
  background-color: #000;
  text-align: center;
  padding: 20px;
  color: #aaa;
  font-size: 0.9rem;
}
