
/*
Theme Name: FLT Homes V5 WordPress
Author: FLT Homes
Version: 5.0
Description: Full WordPress homepage for FLT Homes / Samar with logo, images, text, and responsive layout.
*/

:root{
  --cream:#f7f1e7;
  --sand:#e8dccb;
  --charcoal:#111111;
  --green:#3f6239;
  --gold:#b79a62;
  --muted:#6f675f;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
  background:var(--cream);
  color:var(--charcoal);
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}

.flt-header{
  position:fixed;
  top:0;left:0;right:0;
  z-index:9999;
  background:rgba(247,241,231,.95);
  backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(0,0,0,.08);
}
.flt-header-inner{
  max-width:1280px;
  margin:0 auto;
  padding:14px 24px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:22px;
}
.flt-logo img{
  height:58px;
  width:auto;
}
.flt-nav{
  display:flex;
  gap:24px;
  align-items:center;
  font-weight:700;
}
.flt-nav a{
  color:#111;
}
.flt-nav .join{
  background:#111;
  color:#fff;
  padding:13px 24px;
  border-radius:999px;
}

.hero{
  min-height:100vh;
  background:
    linear-gradient(90deg,rgba(0,0,0,.72),rgba(0,0,0,.28)),
    url("assets/hero.jpg");
  background-size:cover;
  background-position:center;
  color:#fff;
  display:flex;
  align-items:center;
  padding:150px 28px 100px;
}
.hero-inner{
  max-width:1240px;
  margin:0 auto;
  width:100%;
}
.hero-content{
  max-width:760px;
}
.kicker{
  color:#e5ca8d;
  letter-spacing:3px;
  text-transform:uppercase;
  font-weight:900;
  font-size:13px;
  margin-bottom:20px;
}
.hero h1{
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(52px,8vw,96px);
  line-height:.94;
  margin:0 0 24px;
}
.hero p{
  font-size:clamp(18px,2.2vw,24px);
  line-height:1.55;
  max-width:760px;
  margin:0 0 32px;
}
.btn-row{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:54px;
  padding:0 28px;
  border-radius:999px;
  font-weight:800;
}
.btn-green{background:var(--green);color:#fff}
.btn-white{background:#fff;color:#111}
.btn-dark{background:#111;color:#fff}

.value-bar{
  max-width:1120px;
  margin:-44px auto 0;
  position:relative;
  z-index:4;
  background:rgba(39,61,44,.98);
  color:#fff;
  border-radius:24px;
  display:grid;
  grid-template-columns:repeat(5,1fr);
  overflow:hidden;
  box-shadow:0 22px 60px rgba(0,0,0,.18);
}
.value{
  padding:24px 18px;
  text-align:center;
  border-right:1px solid rgba(255,255,255,.15);
}
.value:last-child{border-right:none}
.value strong{display:block;font-size:15px}
.value span{display:block;color:#ded6ca;font-size:13px;margin-top:5px}

.section{
  padding:96px 28px;
}
.container{
  max-width:1200px;
  margin:0 auto;
}
.label{
  color:var(--gold);
  text-transform:uppercase;
  letter-spacing:3px;
  font-size:12px;
  font-weight:900;
  margin-bottom:14px;
}
h2{
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(36px,5vw,64px);
  line-height:1.02;
  margin:0 0 22px;
}
.lead{
  color:var(--muted);
  font-size:20px;
  line-height:1.7;
  margin:0;
}
.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:52px;
  align-items:center;
}
.panel{
  background:#fff;
  border-radius:28px;
  padding:44px;
  box-shadow:0 14px 40px rgba(0,0,0,.07);
}
.image-card{
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 18px 50px rgba(0,0,0,.13);
}
.image-card img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.checks{
  margin:25px 0 0;
  padding:0;
  list-style:none;
}
.checks li{
  border-bottom:1px solid rgba(0,0,0,.08);
  padding:13px 0 13px 32px;
  position:relative;
  color:var(--muted);
  line-height:1.5;
}
.checks li:before{
  content:"✓";
  position:absolute;
  left:0;
  color:var(--green);
  font-weight:900;
}

.dark{
  background:#111;
  color:#fff;
}
.dark .lead{color:#d7d0c7}
.dark h2{color:#fff}
.sand{background:var(--sand)}

.grid-3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.grid-2{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
}
.card{
  background:#fff;
  border-radius:26px;
  overflow:hidden;
  box-shadow:0 14px 40px rgba(0,0,0,.08);
}
.card img{
  width:100%;
  height:280px;
  object-fit:cover;
}
.grid-2 .card img{height:330px}
.card-body{padding:24px}
.card h3{margin:0 0 8px;font-size:22px}
.card p{margin:0;color:var(--muted);line-height:1.55}

.full-image{
  min-height:650px;
  background:
    linear-gradient(90deg,rgba(0,0,0,.65),rgba(0,0,0,.20)),
    url("assets/garden-play.jpg");
  background-size:cover;
  background-position:center;
  display:flex;
  align-items:center;
  color:#fff;
  padding:90px 28px;
}
.full-image .copy{
  max-width:650px;
}
.full-image h2{color:#fff}
.full-image p{font-size:20px;line-height:1.65;color:#eee}

.audience{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
  margin-top:32px;
}
.audience div{
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.06);
  padding:16px;
  border-radius:999px;
  text-align:center;
}

.floorplan{
  background:#fff;
  border-radius:30px;
  padding:18px;
  box-shadow:0 16px 45px rgba(0,0,0,.12);
}
.floorplan img{border-radius:20px;width:100%}

.cta-section{
  background:
    linear-gradient(90deg,rgba(0,0,0,.72),rgba(0,0,0,.40)),
    url("assets/arrival.jpg");
  background-size:cover;
  background-position:center;
  color:#fff;
  padding:125px 28px;
}
.cta-section h2{color:#fff;max-width:760px}
.cta-section p{max-width:760px;color:#eee;font-size:21px;line-height:1.6}

.flt-footer{
  background:#0b0b0b;
  color:#fff;
  padding:52px 28px;
}
.footer-inner{
  max-width:1200px;
  margin:0 auto;
  display:flex;
  justify-content:space-between;
  gap:30px;
  flex-wrap:wrap;
}
.footer-title{font-size:26px;font-weight:900}
.footer-muted{color:#aaa;line-height:1.6;margin-top:8px}

@media(max-width:950px){
  .flt-nav a:not(.join){display:none}
  .value-bar{grid-template-columns:repeat(2,1fr);margin:-32px 16px 0}
  .split,.grid-3,.grid-2{grid-template-columns:1fr}
  .audience{grid-template-columns:repeat(2,1fr)}
  .section{padding:76px 22px}
}
@media(max-width:560px){
  .flt-logo img{height:42px}
  .flt-header-inner{padding:12px 16px}
  .flt-nav .join{padding:11px 16px;font-size:13px}
  .hero{padding:130px 20px 90px}
  .btn-row{flex-direction:column;align-items:flex-start}
  .btn{width:100%;max-width:290px}
  .value-bar{grid-template-columns:1fr}
  .panel{padding:30px 23px}
  .audience{grid-template-columns:1fr}
}
