* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  color: #9d5a4d;
}

/* HERO SECTION */
.hero {
  display: flex;
  min-height: 100vh;
  background: #ffe9ef;
}

.hero-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center; /* vertical center */
  padding: 60px;
}

.logo {
  font-family: Brittany, cursive;
  color: #fe2c55;
  font-size: 36px;
  margin-bottom: 20px;
}

.hero-left h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

.hero-left p {
  max-width: 500px;
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-right {
  flex: 1;
}

.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
  }

  .hero-left {
    padding: 30px;
    text-align: center;
  }

  .hero-left p {
    max-width: 100%;
  }
}

/* SERVICES */
.services {
  background: #ff9cb5;
  padding: 60px 40px;
}

.services-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}

.services-grid-bottom {
  justify-content: center;
}

.service-card {
  background: white;
  width: 335px; /* keeps your perfect size */
  text-align: center;
}

.service-card img {
  width: 100%;
  height: 475.5px;
  object-fit: cover;
}

.service-card h3 {
  margin-top: 15px;
}

.service-card p {
  margin-bottom: 15px;
}

/* MOBILE */
@media (max-width: 768px) {
  .services-grid {
    flex-direction: column;
    align-items: center;
  }

  .services-grid-bottom {
    margin-top: 0;
  }
}

/* ABOUT SECTION */
.about {
  position: relative;
  background: #ffff99;
  padding: 120px 60px;
  overflow: hidden;
}

.about-text {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.about-text h2 {
  margin-bottom: 30px;
}

.about-text p {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.star {
  color: #9d5a4d;
  font-size: 16px;
  line-height: 1.6;
}

/* IMAGES */
.about-img {
  position: absolute;
  object-fit: cover;
}

.about-img.top-right {
  top: 0;
  right: 0;
  width: 456.2px;
  height: 686.2px;
}

.about-img.bottom-left {
  bottom: 0;
  left: 0;
  width: 350.7px;
  height: 556px;
}

/* MOBILE */
@media (max-width: 768px) {
  .about {
    padding: 60px 30px;
  }

  .about-img {
    position: static;
    width: 100%;
    height: auto;
    margin-bottom: 20px;
  }

  .about-text {
    text-align: center;
  }

  .about-text p {
    justify-content: center;
  }
}

/* REVIEWS SECTION */
.reviews {
  background: #ffe9ef;
  padding: 80px 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
}

/* LEFT CARD (TEXTS) */
.reviews-text-card {
  max-width: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.review {
  margin-bottom: 40px; /* space between h + text blocks */
}

.review h3 {
  margin-bottom: 15px; /* space between title and text */
  text-align: center;
}

.review p {
  text-align: center;
  line-height: 1.6;
}

/* RIGHT CARD (IMAGE) */
.reviews-image-card {
  transform: translateX(40px); /* move image slightly right */
}

.reviews-image-card img {
  width: 487.9px;
  height: 651.9px;
  object-fit: cover;
}

/* MOBILE */
@media (max-width: 768px) {
  .reviews {
    flex-direction: column;
    padding: 60px 30px;
  }

  .reviews-image-card {
    transform: none;
    margin-top: 30px;
  }

  .reviews-text-card {
    max-width: 100%;
  }
}

/* FOOTER */
.footer {
  background: #ffff99;
  padding: 80px 60px;
}

.footer-top {
  text-align: center;
  margin-bottom: 60px;
}

.footer-logo {
  font-family: Brittany, cursive;
  font-size: 42px;
  color: #fe2c55;
  margin-bottom: 10px;
}

.footer-tagline {
  font-size: 14px;
  letter-spacing: 2px;
}

.footer-content {
  display: flex;
  justify-content: center;
  gap: 120px;
}

.footer-left,
.footer-right {
  max-width: 320px;
  text-align: center;
}

.footer-left h4,
.footer-right h4 {
  margin-bottom: 20px;
}

.footer a {
  color: #9d5a4d;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

/* MOBILE */
@media (max-width: 768px) {
  .footer {
    padding: 60px 30px;
  }

  .footer-content {
    flex-direction: column;
    gap: 40px;
  }
}

.reserve-btn {
  display: inline-block;
  background: #fe2c55;
  color: white;
  padding: 10px 18px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

.reserve-btn {
  width: fit-content;
}