/*
Theme Name: Soft Stream Inc. v2
Theme URI: https://softstreamfl.com
Author: Ben Maendel
Description: Under construction theme for Soft Stream Inc. (Westinghouse Authorized Dealer)
Version: 2.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: softstream-inc-v2
*/

:root {
  --black: #0b0b0b;
  --white: #ffffff;
  --text: #1b1f23;
  --accent-blue: #007bff;
  --accent-blue-dark: #0056b3;
  --blue-bar: #0056b3;
  --muted: #6b7280;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(0, 0, 0, .12);
}

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
}

img {max-width: 100%; display: block;}
a {color: var(--accent-blue); text-decoration: none;}
.container {max-width: 1200px; margin: 0 auto; padding: 0 20px; box-sizing: border-box;}

/* Header */
.util {background: var(--white);}
.util .container {display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; padding: 12px 20px;}
.logo img {height: 60px;}
.call {font-weight: 800; color: var(--accent-blue); font-size: 16px; margin: 6px 0;}
.call a {color: inherit; text-decoration: none;}
.btn {display: inline-flex; align-items: center; gap: 10px; border-radius: 999px; padding: 10px 16px; font-weight: 800; border: 2px solid transparent; transition: .2s transform, .2s box-shadow; font-size: 14px;}
.btn:hover {transform: translateY(-1px);}
.btn-cta {background: var(--accent-blue); color: #fff;}
.btn-cta:hover {background: var(--accent-blue-dark);}

/* Nav */
nav.main {background: var(--black);}
nav.main .container {display: flex; justify-content: center; height: 56px; align-items: center;}
.menu {display: flex; gap: 28px;}
.menu a {color: #f6f6f6; font-weight: 800; font-size: 16px;}

/* Hero */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(0deg, rgba(0,0,0,.45), rgba(0,0,0,.25)), url('images/softbackground.jpg') center/cover no-repeat;
}
.hero .inner {padding: 80px 0 60px;}
.headline {color: #fff; font-weight: 900; font-size: 72px; line-height: .95; margin: 0; text-transform: lowercase;}

/* Content */
.cta-strip {background: var(--blue-bar); color: #fff; text-align: center; padding: 18px 0; font-weight: 600;}
section {padding: 36px 0;}
.card {border: 1px solid #e5e7eb; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; background: var(--white);}
.card .body {padding: 18px; text-align: center;}
.muted {color: var(--muted);}
.under-construction-img {max-width: 260px; margin: 0 auto 20px; border-radius: var(--radius); box-shadow: var(--shadow);}

/* Footer */
footer {background:#0b0b0b;color:#e5e7eb;margin-top:24px;overflow:hidden;}
.footer-top{padding:48px 0;}
.footer-grid{display:grid;grid-template-columns:1.4fr 1.2fr;gap:36px;}
.footer-card{display:flex;align-items:flex-start;gap:14px;}
.footer-logo img{height:70px;width:auto;filter:invert(1) brightness(2);}
.footer-heading{font-weight:800;color:#fff;margin:0 0 10px;font-size:22px;}

/* New Footer Button */
.water-test-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--accent-blue);
  color: #fff;
  font-weight: 800;
  border-radius: 999px;
  padding: 14px 22px;
  text-decoration: none;
  transition: 0.2s ease-in-out;
  box-shadow: var(--shadow);
}
.water-test-btn img {
  height: 40px;
  width: auto;
}
.water-test-btn:hover {
  background: var(--accent-blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15);
}

.footer-bottom{border-top:1px solid #1e1e1e;padding:16px 0;color:#9ca3af;display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;text-align:center;}
.dealer-badge{display:flex;align-items:center;gap:10px;color:#cfd8ff;justify-content:center;margin-top:10px;}
.dealer-badge img{height:42px;width:auto;}

@media (max-width: 900px){
  .headline{font-size:48px;}
  .footer-grid{grid-template-columns:1fr;gap:24px;}
  .call{text-align:center;width:100%;}
  .util .container{flex-direction:column;text-align:center;}
  .btn{margin-top:8px;}
  .footer-top{padding:24px 10px;}
  .water-test-btn {
    justify-content: center;
    width: 100%;
  }
}
