@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@700&family=Merriweather:wght@900&family=Alex+Brush&family=Poppins:wght@400;600;700&display=swap");

.banner_section {
  position: relative;
  background: url("./banner.png") left top no-repeat;
  background-size: cover;
  height: 90vh;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: white;
  font-family: "Roboto", sans-serif;
}

.banner_section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  z-index: 1;
}

.text-container {
  position: relative;
  z-index: 2;
  font-family: "Poppins", sans-serif;
  color: #ffffff;
  text-align: center;
  max-width: 50%;
  padding: 40px 20px;
}

.text-container h1 {
  font-family: "Merriweather", serif;
  font-size: 3.3rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-align: center;
}

.text-container h1 span {
  color: #f5d04c;
}

.text-container h2 {
  font-size: 10rem;
  font-family: "Alex Brush", cursive;
  color: #ffffff;
  letter-spacing: 1px;
  font-weight: 400;
  text-align: center;
  margin: 0;
  padding: 0;
}

.text-container .offer-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 100%;
  flex-wrap: wrap;
  flex-direction: column;
}

.text-container .offer-container .offer-line {
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.2;
}

.text-container .offer-container .highlight {
  font-family: "Cinzel", serif;
  color: #ff4c4c;
  font-weight: 700;
  font-size: 3rem;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 2px;
  line-height: 1.1;
}

.text-container .bottom-text {
  margin-top: 20px;
  font-size: 2.5rem;
  font-weight: 600;
  color: #f5d04c;
  letter-spacing: 1px;
  text-align: center;
  font-family: "Merriweather", serif;
  line-height: 3.5rem;
}

@media (min-width: 769px) {
  .banner_section {
    background: url("./banner.png") center top no-repeat;
    background-size: cover;
  }
}

@media (max-width: 768px) {
  .banner_section {
    background: url("./banner_1.png") center top no-repeat;
    background-size: cover;
    justify-content: center;
    align-items: center;
    height: 400px;
  }

  .banner_section::before {
    background: rgba(0, 0, 0, 0);
  }

  .text-container {
    display: none;
  }
}

@media (max-width: 480px) {
  .banner_section {
    height: 200px;
    background-size: cover;
    background-position: center;
  }
}

/*  Vertical Garden Balcony  */

.wpo-property-section {
  margin-top: 30px;
  padding: 0 15px;
}

.wpo-property-section .wpo-section-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  margin-bottom: 40px;
}

.wpo-property-section .wpo-section-title h2 {
  margin: 0;
  font-weight: 600;
  text-align: center;
  font-size: 2rem;
  color: #1e751e;
}

.wpo-property-section .wpo-section-title p {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: #555;
  margin-top: 5px;
  max-width: 700px;
}

.balcony-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.card-single {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-single:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.card-single .image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}

.card-single .text {
  padding: 15px 20px;
}

.card-single .text h2 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.card-single .text h2 a {
  color: #1fa77a;
  text-decoration: none;
}

.card-single .text h2 a:hover {
  text-decoration: underline;
}

.card-single .text p {
  font-size: 1rem;
  color: #555;
  margin: 0;
}

@media (max-width: 768px) {
  .wpo-property-section .wpo-section-title h2 {
    font-size: 2rem !important;
  }

  .wpo-property-section .wpo-section-title p {
    font-size: clamp(0.85rem, 3vw, 1rem);
  }

  .card-single .image img {
    max-height: 380px;
    width: 100%;
    object-fit: cover;
  }
}
