/* Growth Town — VIP Housing and Properties
   Shared stylesheet for index.html, project-details.html, blog.html, contact.html, faqs.html
   Palette matches VIP Housing's established brand (teal + gold) used across sibling project sites —
   swap the two --teal values if Growth Town's own site signage uses different colors. */

:root {
  --teal-dark: #07373D;
  --teal: #0E5E67;
  --gold: #C17F0A;
  --cream: #FBF8F2;
  --ink: #1F2937;
  --gray: #6B7280;
  --border: #E5E7EB;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: var(--teal); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: 1080px; margin: 0 auto; padding: 0 20px; }

/* Header */
header.site-header {
  background: var(--teal-dark);
  color: #fff;
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 50;
}
header.site-header .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.brand { color: #fff; font-weight: 700; font-size: 20px; letter-spacing: 0.3px; }
.brand span { color: var(--gold); }
nav.main-nav a {
  color: #fff;
  margin-left: 20px;
  font-size: 15px;
  opacity: 0.9;
}
nav.main-nav a:hover { opacity: 1; text-decoration: none; border-bottom: 2px solid var(--gold); }
.nav-cta {
  background: var(--gold);
  color: #fff !important;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 600;
}
.nav-cta:hover { opacity: 0.9; text-decoration: none; }

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  color: #fff;
  padding: 64px 0 56px;
  text-align: center;
}
.hero h1 { font-size: 34px; margin: 0 0 14px; line-height: 1.25; }
.hero p.lead { font-size: 18px; max-width: 680px; margin: 0 auto 28px; opacity: 0.95; }
.hero-stats { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; margin: 28px 0; }
.hero-stats div { text-align: center; }
.hero-stats .num { font-size: 26px; font-weight: 700; color: var(--gold); }
.hero-stats .label { font-size: 13px; opacity: 0.85; }
.btn {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  padding: 13px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
  border: none;
  cursor: pointer;
}
.btn:hover { opacity: 0.92; text-decoration: none; }
.btn-outline {
  display: inline-block;
  background: transparent;
  color: #fff;
  padding: 12px 26px;
  border-radius: 6px;
  font-weight: 600;
  border: 1.5px solid #fff;
  margin-left: 10px;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); text-decoration: none; }

/* Sections */
section { padding: 52px 0; }
section.alt { background: var(--cream); }
h2.section-title { font-size: 27px; color: var(--teal-dark); margin: 0 0 8px; }
p.section-sub { color: var(--gray); margin: 0 0 32px; font-size: 16px; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
@media (max-width: 780px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 22px;
}
.card h3 { margin: 0 0 8px; color: var(--teal-dark); font-size: 18px; }
.card p { margin: 0; color: var(--gray); font-size: 15px; }

.proximity-list { list-style: none; padding: 0; margin: 0; }
.proximity-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  font-size: 15px;
}
.proximity-list li:last-child { border-bottom: none; }
.proximity-list .time { color: var(--gold); font-weight: 700; }

/* FAQ accordion */
details.faq {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 18px;
  margin-bottom: 12px;
  background: #fff;
}
details.faq summary {
  font-weight: 600;
  color: var(--teal-dark);
  cursor: pointer;
  font-size: 16px;
}
details.faq p { margin: 10px 0 0; color: var(--gray); }

/* Form */
form.lead-form { display: flex; flex-direction: column; gap: 14px; max-width: 480px; }
form.lead-form label { font-weight: 600; font-size: 14px; color: var(--teal-dark); }
form.lead-form input, form.lead-form select, form.lead-form textarea {
  padding: 11px 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 15px;
  font-family: inherit;
}
form.lead-form button { align-self: flex-start; }
#form-status { font-size: 14px; padding-top: 4px; }

/* Blog */
.blog-post { border-bottom: 1px solid var(--border); padding-bottom: 34px; margin-bottom: 34px; }
.blog-post:last-child { border-bottom: none; }
.blog-post h2 { color: var(--teal-dark); font-size: 24px; margin-bottom: 6px; }
.blog-meta { color: var(--gray); font-size: 13px; margin-bottom: 14px; }

/* Footer */
footer.site-footer {
  background: var(--teal-dark);
  color: #fff;
  padding: 36px 0 24px;
  margin-top: 20px;
}
footer.site-footer .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
footer.site-footer h4 { color: var(--gold); font-size: 15px; margin: 0 0 10px; }
footer.site-footer a { color: #E5E7EB; display: block; margin-bottom: 6px; font-size: 14px; }
footer.site-footer a:hover { color: #fff; }
.footer-bottom { text-align: center; font-size: 13px; opacity: 0.75; margin-top: 24px; }

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  background: #25D366;
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
  z-index: 60;
}
.whatsapp-float:hover { text-decoration: none; opacity: 0.92; }

.callout {
  background: #FEF3C7;
  border: 1px solid #F59E0B;
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 14px;
  color: #92400E;
  margin-bottom: 24px;
}
