/* Woodstock Deck & Fence - Clean Base CSS */

:root{
  --green:#264D2C;
  --green-dark:#1F4025;
  --brown:#8B5E3C;
  --bg:#F8F8F6;
  --text:#202020;
  --muted:#666;
  --white:#fff;
  --shadow:0 12px 30px rgba(0,0,0,.08);
}

*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  font-family:Inter,sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.6;
}
img{display:block;max-width:100%}
a{text-decoration:none;color:inherit}
ul{list-style:none}
.container{max-width:1200px;margin:auto;padding:0 24px}
section{padding:90px 0}

h1,h2,h3,h4{font-family:Poppins,sans-serif}
h1{font-size:4rem;line-height:1.1}
h2{font-size:2.5rem;margin-bottom:16px}
p{color:var(--muted)}

header{
  position:sticky;
  top:0;
  background:#fff;
  z-index:1000;
  box-shadow:0 2px 12px rgba(0,0,0,.05);
}

.navbar{
  max-width:1200px;
  margin:auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:16px 24px;
}

.logo img{height:90px}

.nav-links{
  display:flex;
  gap:32px;
  align-items:center;
}

.nav-links a{
  font-weight:600;
  position:relative;
}

.nav-links a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-5px;
  width:0;
  height:2px;
  background:var(--green);
  transition:.25s;
}

.nav-links a:hover::after{width:100%}
.nav-links a.active{color:var(--green)}
.nav-links a.active::after{width:100%}

.btn-primary,.btn-secondary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:15px 30px;
  border-radius:999px;
  font-weight:700;
  transition:.25s;
  cursor:pointer;
  border:none;
  font-size:1rem;
  font-family:inherit;
}

.btn-primary{
  background:var(--green);
  color:#fff;
  box-shadow:0 8px 24px rgba(38,77,44,.25);
}

.btn-primary:hover{
  background:var(--green-dark);
  transform:translateY(-2px);
}

.btn-secondary{
  color:#fff;
  border:2px solid #fff;
  background:transparent;
}

.btn-secondary:hover{
  background:#fff;
  color:var(--green);
}

#hero{
  position:relative;
  min-height:90vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  background:
    linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.45)),
    url("../images/hero.jpg") center/cover no-repeat;
}

.hero-content{max-width:850px;color:#fff;padding:20px;position:relative}
.hero-content h1{color:#fff;margin:20px 0}
.hero-content p{color:#eee}
.hero-badge{
  display:inline-block;
  background:rgba(255,255,255,.15);
  color:#fff;
  padding:8px 16px;
  border-radius:999px;
}
.hero-buttons{
  display:flex;
  gap:16px;
  justify-content:center;
  margin-top:32px;
  flex-wrap:wrap;
}

.section-heading{
  text-align:center;
  max-width:760px;
  margin:0 auto 60px;
}

.section-heading span{
  color:var(--green);
  font-weight:700;
  letter-spacing:2px;
  font-size:.85rem;
}

.placeholder{
  text-align:center;
  max-width:760px;
  margin:0 auto;
}

.why-grid,.services-grid,.testimonial-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:28px;
}

.why-card,.service-card,.testimonial-card{
  background:#fff;
  border-radius:18px;
  padding:32px;
  box-shadow:var(--shadow);
  transition:.25s;
}

.why-card:hover,.service-card:hover,.testimonial-card:hover{
  transform:translateY(-6px);
}

.why-icon{
  width:70px;height:70px;
  margin:0 auto 20px;
  border-radius:50%;
  background:var(--green);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
}

.why-icon svg{width:34px;height:34px}

/* About preview band on homepage */
#about-preview{
  background:#fff;
  text-align:center;
}

/* Projects */
.featured-project{
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:48px;
  align-items:center;
  margin-bottom:60px;
}

.project-image img{
  height:500px;
  width:100%;
  object-fit:cover;
  border-radius:20px;
  box-shadow:var(--shadow);
}

.project-tag{
  display:inline-block;
  background:var(--green);
  color:#fff;
  padding:8px 14px;
  border-radius:999px;
  margin-bottom:16px;
}

.project-checklist{margin:20px 0}
.project-checklist li{margin-bottom:8px;font-weight:600;color:var(--text)}

.projects-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:28px;
}

.project-card{
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  box-shadow:var(--shadow);
  transition:.25s;
}

.project-card:hover{transform:translateY(-6px)}
.project-card img{height:240px;width:100%;object-fit:cover}
.project-info{padding:24px}
.project-info h3{margin-bottom:8px}

/* Service areas */
#service-areas{background:#fff}

.areas-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(160px,1fr));
  gap:16px;
  max-width:900px;
  margin:0 auto;
}

.area-tag{
  background:var(--bg);
  border:2px solid var(--green);
  color:var(--green);
  font-weight:600;
  text-align:center;
  padding:14px;
  border-radius:12px;
}

/* CTA band */
#cta{
  background:var(--green);
  color:#fff;
  text-align:center;
}

.cta-box{max-width:700px;margin:0 auto}
.cta-small{
  display:inline-block;
  font-weight:700;
  letter-spacing:2px;
  font-size:.85rem;
  color:#c9e0cc;
  margin-bottom:12px;
}

#cta h2{color:#fff}
#cta p{color:#e5e5e5;margin-bottom:24px}

.cta-highlights{
  display:flex;
  gap:24px;
  justify-content:center;
  flex-wrap:wrap;
  margin-bottom:32px;
  font-weight:600;
}

#cta .btn-primary{background:#fff;color:var(--green);box-shadow:none}
#cta .btn-primary:hover{background:#eee}

.cta-contact{margin-top:32px}
.cta-contact h3{color:#fff;font-size:1.8rem;margin-bottom:6px}
.cta-contact p{color:#cde3cf}

/* Inner page hero banner (About, Services, Gallery, Contact) */
.page-hero{
  background:var(--green);
  color:#fff;
  padding:100px 0 60px;
  text-align:center;
}

.page-hero h1{color:#fff}
.page-hero p{color:#e0e0e0;margin-top:12px}

/* Gallery page */
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:20px;
}

.gallery-grid img{
  border-radius:16px;
  box-shadow:var(--shadow);
  height:280px;
  width:100%;
  object-fit:cover;
  transition:.25s;
}

.gallery-grid img:hover{transform:scale(1.02)}

/* Contact page */
.contact-section .container{
  display:grid;
  grid-template-columns:1fr 1.2fr;
  gap:60px;
}

.contact-info h2{margin-bottom:20px}
.contact-info p{margin-bottom:16px;color:var(--text)}

.contact-form{
  display:flex;
  flex-direction:column;
  gap:16px;
  background:#fff;
  padding:36px;
  border-radius:18px;
  box-shadow:var(--shadow);
}

.contact-form input,.contact-form textarea{
  padding:14px 16px;
  border:1px solid #ddd;
  border-radius:10px;
  font-family:inherit;
  font-size:1rem;
}

.contact-form textarea{resize:vertical}
.contact-form button{margin-top:8px}

/* Simple inner-page footer (About, Services, Gallery, Contact) */
.footer-simple{
  text-align:center;
  color:#ccc;
}

footer{
  background:#1b1b1b;
  color:#fff;
  padding:70px 0 30px;
}

.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1.5fr;
  gap:40px;
}

.footer-logo{width:160px;margin-bottom:20px}
.footer-column h3{margin-bottom:16px}
.footer-column p{color:#ccc}
.footer-bottom{
  text-align:center;
  margin-top:40px;
  padding-top:20px;
  border-top:1px solid rgba(255,255,255,.1);
  color:#aaa;
}

.menu-toggle{display:none}

@media (max-width:768px){

  h1{font-size:2.8rem}
  h2{font-size:2rem}

  .menu-toggle{
    display:block;
    background:none;
    border:none;
    font-size:2rem;
    color:var(--green);
    cursor:pointer;
  }

  .nav-links{
    display:none;
    width:100%;
    flex-direction:column;
    padding:20px 0;
  }

  .nav-links.active{display:flex}

  .navbar{
    flex-wrap:wrap;
  }

  .featured-project{
    grid-template-columns:1fr;
  }

  .project-image img{
    height:320px;
  }

  .footer-grid{
    grid-template-columns:1fr;
    text-align:center;
  }

  .logo img{height:70px}

  .contact-section .container{
    grid-template-columns:1fr;
  }
}
