* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  line-height: 1.6;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0,0,0,0.7);
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  z-index: 1000;
}

.navbar a {
  color: white;
  margin-left: 20px;
  text-decoration: none;
}

/* HERO */
.hero {
  height: 100vh;
  background: url("../img/hero.jpg") center/cover no-repeat;
}

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

.overlay h1 {
  font-size: 50px;
  margin-bottom: 15px;
}

.overlay p {
  font-size: 22px;
  margin-bottom: 30px;
}

/* BUTTON */
.btn {
  background: #ffc800;
  padding: 15px 30px;
  border: none;
  text-decoration: none;
  color: black;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: transform 0.3s;
}

.btn:hover {
  transform: scale(1.05);
}

/* SECTIONS */
.section {
  padding: 100px 20px;
  text-align: center;
}

.grey {
  background: #f4f4f4;
}

.cards {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.card {
  background: white;
  padding: 30px;
  width: 260px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.card ul {
  list-style: none;
  margin: 20px 0;
}

.card ul li {
  margin: 10px 0;
}

.price-tag {
  font-size: 22px;
  margin: 15px 0;
}

/* CONTACT */
form {
  max-width: 500px;
  margin: auto;
}

input, textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
}

/* FOOTER */
footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 30px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .overlay h1 {
    font-size: 32px;
  }
}

