body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #fdfdfd;
  color: #222;
}

.hero-fullscreen {
  background: url('../images/villa1.jpg') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-fullscreen .overlay {
  background: rgba(255, 255, 255, 0.65);
  padding: 4rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 0 40px rgba(0,0,0,0.1);
}

.hero-fullscreen h1 {
  font-family: 'Cinzel', serif;
  font-size: 4rem;
  margin: 0;
  color: #1e4d4d;
}

.hero-fullscreen p {
  font-size: 1.5rem;
  color: #444;
}

.about-section, .contact-section, .gallery-section {
  padding: 5rem 1rem;
  text-align: center;
}

.about-section h2,
.gallery-section h2,
.contact-section h2 {
  font-family: 'Cinzel', serif;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #365e5e;
}

.about-section p {
  max-width: 700px;
  margin: auto;
  line-height: 1.8;
  font-size: 1.1rem;
}

.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.gallery-grid img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.contact-form {
  display: flex;
  flex-direction: column;
  max-width: 500px;
  margin: auto;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

.contact-form button {
  background: #2e6058;
  color: white;
  border: none;
  padding: 1rem;
  border-radius: 8px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #1e4d4d;
}
