/* =============================================
   SmartLivingHacks.org — Global Stylesheet
   Colors: Orange #FF6B35 | Dark #1A1A2E | White #FFFFFF
   ============================================= */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  font-size: 16px;
  color: #333;
  background: #fff;
  line-height: 1.7;
}

a { text-decoration: none; color: inherit; }

/* --- HEADER --- */
.site-header {
  background: #fff;
  border-bottom: 1px solid #eee;
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link img.logo-img {
  width: 156px;
  height: 77px;
  object-fit: contain;
  display: block;
}

.header-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

.header-nav a {
  font-size: 15px;
  font-weight: 600;
  color: #1A1A2E;
  transition: color 0.2s;
}

.header-nav a:hover { color: #FF6B35; }

/* --- HERO --- */
.hero {
  background: linear-gradient(135deg, #1A1A2E 0%, #2d2d4e 100%);
  color: #fff;
  padding: 80px 24px;
  text-align: center;
}

.hero-inner { max-width: 760px; margin: 0 auto; }

.hero h1 {
  font-size: 38.4px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero h1 span { color: #FF6B35; }

.hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-primary {
  display: inline-block;
  background: #FF6B35;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: 6px;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover { background: #e85a24; transform: translateY(-2px); }

/* --- SECTION COMMON --- */
.section { padding: 64px 24px; }
.section-inner { max-width: 1100px; margin: 0 auto; }

.section-title {
  font-size: 28px;
  font-weight: 700;
  color: #1A1A2E;
  margin-bottom: 12px;
}

.section-sub {
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
}

.section-alt { background: #F8F8F8; }

/* --- FEATURES GRID --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 28px 24px;
  transition: box-shadow 0.2s;
}

.feature-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }

.feature-icon {
  font-size: 32px;
  margin-bottom: 14px;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1A1A2E;
  margin-bottom: 8px;
}

.feature-card p { font-size: 15px; color: #555; }

/* --- ABOUT STRIP --- */
.about-strip {
  display: flex;
  align-items: center;
  gap: 48px;
}

.about-text { flex: 1; }
.about-text h2 { font-size: 28px; font-weight: 700; color: #1A1A2E; margin-bottom: 16px; }
.about-text p { font-size: 16px; color: #555; margin-bottom: 14px; }

.about-img-wrap { flex: 0 0 380px; }
.about-img-wrap img { width: 100%; border-radius: 12px; }

/* --- CTA BANNER --- */
.cta-banner {
  background: #FF6B35;
  color: #fff;
  text-align: center;
  padding: 60px 24px;
}

.cta-banner h2 { font-size: 28px; font-weight: 800; margin-bottom: 14px; }
.cta-banner p { font-size: 16px; margin-bottom: 28px; opacity: 0.92; }

.btn-white {
  display: inline-block;
  background: #fff;
  color: #FF6B35;
  font-size: 16px;
  font-weight: 700;
  padding: 13px 34px;
  border-radius: 6px;
  transition: background 0.2s;
}

.btn-white:hover { background: #f0f0f0; }

/* --- FAQ --- */
.faq-list { max-width: 720px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid #eee;
  padding: 20px 0;
}

.faq-item h3 {
  font-size: 17px;
  font-weight: 700;
  color: #1A1A2E;
  margin-bottom: 8px;
}

.faq-item p { font-size: 15px; color: #555; }

/* --- FOOTER --- */
.site-footer {
  background: #1A1A2E;
  color: rgba(255,255,255,0.85);
  padding: 56px 24px 0;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  padding-bottom: 40px;
}

.footer-logo img { width: auto; height: 50px; object-fit: contain; margin-bottom: 14px; }

.footer-logo p { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.6; max-width: 520px; margin: 0 auto; }

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FF6B35;
  margin-bottom: 14px;
}

.footer-nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
}

.footer-nav-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}

.footer-nav-links a:hover { color: #FF6B35; }

.footer-col a {
  display: inline;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 8px;
  transition: color 0.2s;
}

.footer-col a:hover { color: #FF6B35; }

.footer-col p { font-size: 14px; color: rgba(255,255,255,0.75); }

/* --- FOOTER DISCLOSURE --- */
.footer-disclosure {
  border-top: 1px solid rgba(255,255,255,0.1);
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 0 16px;
}

.footer-disclosure p {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  margin-bottom: 8px;
}

.footer-disclosure strong { color: rgba(255,255,255,0.6); }

/* --- FOOTER BOTTOM --- */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 16px 24px;
  text-align: center;
}

.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.4); }

/* --- INNER PAGE HERO --- */
.page-hero {
  background: linear-gradient(135deg, #1A1A2E 0%, #2d2d4e 100%);
  color: #fff;
  padding: 60px 24px;
  text-align: center;
}

.page-hero h1 {
  font-size: 38.4px;
  font-weight: 800;
  margin-bottom: 12px;
}

.page-hero p { font-size: 16px; color: rgba(255,255,255,0.75); }

/* --- CONTENT PAGE --- */
.content-page { padding: 60px 24px; }
.content-page .content-inner { max-width: 820px; margin: 0 auto; }

.content-page h2 {
  font-size: 24px;
  font-weight: 700;
  color: #1A1A2E;
  margin: 36px 0 12px;
}

.content-page p { font-size: 16px; color: #444; margin-bottom: 16px; }
.content-page ul { padding-left: 20px; margin-bottom: 16px; }
.content-page ul li { font-size: 16px; color: #444; margin-bottom: 8px; }

/* --- CONTACT FORM --- */
.contact-form { max-width: 580px; margin: 0 auto; }

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #1A1A2E;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus { border-color: #FF6B35; }

.form-group textarea { height: 140px; resize: vertical; }

.btn-submit {
  background: #FF6B35;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 13px 36px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-submit:hover { background: #e85a24; }

/* --- HAMBURGER MOBILE --- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1A1A2E;
  border-radius: 2px;
  transition: all 0.3s;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .hamburger { display: flex; }

  .header-nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid #eee;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    padding: 8px 0;
  }

  .header-nav.open { display: flex; }

  .header-nav a {
    padding: 12px 24px;
    width: 100%;
    border-bottom: 1px solid #f5f5f5;
  }

  .hero h1 { font-size: 28px; }
  .page-hero h1 { font-size: 28px; }
  .section-title { font-size: 22px; }

  .features-grid { grid-template-columns: 1fr; }

  .about-strip { flex-direction: column; }
  .about-img-wrap { flex: none; width: 100%; }

  .footer-inner { flex-direction: column; align-items: center; }
}


