/* =========================
   RESET / BASE
========================= */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #111;
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}

/* Shared layout wrapper */
.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* =========================
   TOP BAR
========================= */

.top-bar {
  width: 100%;
  background: #000;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  min-height: 3.5rem;
}

.top-bar-inner a {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
}

/* =========================
   HEADER / NAV
========================= */

.site-header {
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1.5rem;
}

.logo img {
  max-height: 70px;
  width: auto;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1.25rem;
}

.main-nav a {
  text-decoration: none;
  color: #111;
  font-weight: 500;
}

.contact-button {
  background: #4fbfb5;
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 4px;
  text-decoration: none;
  white-space: nowrap;
}

.contact-button:hover {
  background: #3aa9a0;
}

/* =========================
   HERO
========================= */

.hero {
  min-height: 70vh;
  background: url("../IMG/Kitchen-1170x650.jpg") center / cover no-repeat;
  display: flex;
  align-items: flex-start;
}

.hero-inner {
  width: 100%;
  padding-top: 1.5rem;
  display: flex;
  justify-content: center;
}

.hero h1 {
  color: #fff;
  font-size: clamp(2rem, 6vw, 3rem);
  max-width: 720px;
  text-align: center;
  background: rgba(0, 0, 0, 0.55);
  padding: 0.75rem 1.25rem;
  border-radius: 6px;
}

/* =========================
   VALUE PROPOSITION
========================= */

.value-prop {
  background: #f8f8f8;
  padding: 3.5rem 0;
}

.value-prop-heading {
  text-align: center;
  font-size: clamp(1.75rem, 5vw, 2.2rem);
  margin-bottom: 2.5rem;
}

.value-prop-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem;
}

.value-item {
  text-align: center;
  padding: 1rem;
}

.value-icon {
  font-size: 3.5rem;
  margin-bottom: 0.75rem;
}

.value-item h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.value-item p {
  font-size: 0.95rem;
  color: #444;
}

/* =========================
   SECTION DIVIDER
========================= */

.section-divider {
  background: #2f8f88;
  padding: 3rem 0;
  text-align: center;
}

.section-divider h2 {
  color: #fff;
  font-size: clamp(2rem, 6vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.section-divider h3 {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 500;
  opacity: 0.9;
}

/* =========================
   FEATURED HOMES
========================= */

.featured-homes {
  background: #f9f9f9;
  padding: 3.5rem 0;
}

.featured-homes h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2.5rem;
}

.homes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.home-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.12);
}

.home-info {
  padding: 1.25rem 1.5rem;
}

.home-brand {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2f8f88;
  margin-bottom: 0.3rem;
  display: block;
}

.home-title {
  font-size: 1.1rem;
  font-weight: 600;
}

/* =========================
   FOOTER
========================= */

.site-footer {
  background: #f1f1f1;
  border-top: 1px solid #ddd;
  padding: 1.25rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  text-align: center;
}

.footer-copy {
  font-size: 0.85rem;
  color: #555;
}

.footer-logo {
  max-height: 100px;
}

/* =========================
   BREAKPOINTS
========================= */

/* Tablets */
@media (min-width: 768px) {
  .value-prop-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .homes-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .homes-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.product-benefits {
  padding: 4rem 0;
  background-color: #f9f9f9; /* optional, adjust to taste */
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.benefit-card {
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.benefit-card h4 {
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.benefit-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #555;
}
@media (max-width: 900px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}
