body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 60px;
  background: #eeeeee;
}
.logo img {
  height: 50px;
}
nav ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}
nav li {
  margin-left: 30px;
}
nav a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
}
.hero {
  height: 620px;
  background-image: url("../images/door.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}
.hero-text {
  margin-left: 100px;
}
.hero h1 {
  font-family: "Slackey", cursive;
  font-size: 64px;
  color: white;
  margin: 0 0 20px 0;
}
.btn {
  background: #56e26f;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  color: black;
  font-weight: 600;
}
.cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 60px 0;
  background: #8fd0e0;
}
.card {
  position: relative;
  text-align: center;
}
.card img {
  width: 300px;
  border-radius: 15px;
}
.card h3 {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 24px;
}
.feature {
  display: flex;
}
.reverse {
  flex-direction: row-reverse;
}
.feature-text {
  width: 50%;
  padding: 80px;
}
.feature-text h2 {
  font-family: "Slackey", cursive;
  font-size: 36px;
  margin-top: 0;
}
.feature-img {
  width: 50%;
}
.feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.purple { background: #c86ad6; }
.teal { background: #7fd1c5; }
.yellow { background: #e8eb85; }

.packages {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 60px;
  background: linear-gradient(to bottom, #9d7ae0, #8fd0e0);
}
.package {
  width: 300px;
  text-align: center;
}
.package img {
  width: 100%;
  border-radius: 15px;
}
.photo-grid {
  display: flex;
  flex-wrap: wrap;
}
.photo-grid img {
  width: 25%;
}
footer {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(to bottom, #e048b8, #8d5be8);
  color: white;
}