/* Start custom CSS *//* ---------- Spa Country – Custom LP Styles ---------- */

:root {
  --sc-primary: #0d2a3a;      /* deep blue / header tone */
  --sc-accent: #378bb0;       /* cool spa blue */
  --sc-light: #fafafb;        /* off-white / background */
  --sc-gray: #7a8a95;         /* subtle text secondary */
  --sc-dark: #1d1d1d;         /* strong body text */
  --sc-btn: #0d3f5e;          /* button base */
}

/* Base */
.spa-country-lp {
 color: var(--sc-dark);
 font-family: inherit;
  line-height: 1.6;
  width: 100%;
}

/* Hero */
.spa-hero {
  background: linear-gradient(rgba(13,42,58,0.75),rgba(13,42,58,0.75)),
              url('https://steamboathottubs.com/wp-content/uploads/2023/04/hero-image.jpg');
  background-size: cover;
  background-position: center;
  text-align: center;
  padding: 120px 20px;
  color: white;
}

.spa-hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 14px;
}

.spa-hero p {
  font-size: 20px;
  margin-bottom: 26px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.promo-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
}

.promo-list span {
  background: rgba(255,255,255,0.15);
  padding: 8px 16px;
  border-radius: 0px;
}
.hero-logo::after {
  content: "";
  display: block;
  width: 120px;
  height: 2px;
  background: var(--sc-accent);
  margin: 12px auto 24px;
}

/* Sections */
.spa-section {
  padding: 80px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Titles */
.section-title {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--sc-primary);
}

.section-sub {
  font-size: 18px;
  color: var(--sc-gray);
  margin-bottom: 36px;
}

/* Products */
.product-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.product-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.product-image {
  height: 400px;
  background-size: cover;
  background-position: center;
  
}

.product-content {
  padding: 28px;
  flex-grow: 1;
    padding: 28px;
  flex-grow: 1;
  text-align: center;
}

.product-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
  color: var(--sc-primary);
}

.product-card p {
  margin-bottom: 12px;
  color: var(--sc-dark);
}

.product-card ul {
  padding-left: 18px;
  margin-bottom: 20px;
  color: var(--sc-dark);
}

.cta-btn {
  display: inline-block;
  background: #f57955;
  color: #fff;
  padding: 12px 24px;
  border-radius: 0px;
  text-decoration: none;
  font-weight: 600;
  transition: background .3s ease;
  margin-top: auto;
}

.cta-btn:hover {
  background: var(--sc-accent);
}

/* Financing */
.finance-block {
  background: var(--sc-primary);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.finance-block h2 {
  font-size: 34px;
  margin-bottom: 14px;
}

.finance-block p {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto;
}
.finance-btn{
  display:inline-block;
  background:#f57955;
  color:#fff;
  padding:0.4em 2.5em;
  border-radius:0px;
  text-decoration:none;
  font-weight:600;
  transition:all .3s ease;
  margin-top:30px
}

/* Closing */

.spa-closing-full{
  width:100%;
  background:linear-gradient(rgba(13,42,58,0.75),rgba(13,42,58,0.75)),
             url('https://steamboathottubs.com/wp-content/uploads/2026/02/SpaCountry-CLosing.png');
  background-size:cover;
  background-position:center;
  padding:120px 20px;
  text-align:center;
  color:#fff;
  position:relative;
}

.spa-closing-content{
  max-width:800px;
  margin:0 auto;
}

.spa-closing-full h2{
  font-size:40px;
  margin-bottom:18px;
  font-weight:700;
}

.spa-closing-full p{
  font-size:18px;
  margin-bottom:30px;
}

.closing-btn{
  display:inline-block;
  background:#f57955;
  color:#fff;
  padding:0.4em 2.5em;
  border-radius:0px;
  text-decoration:none;
  font-weight:600;
  transition:all .3s ease;
}

.closing-btn:hover{
  background:#2b6d8b;
}

@media(max-width:768px){
  .spa-closing-full h2{
    font-size:28px;
  }
}/* End custom CSS */