/*
Theme Name: Astra Child - Winchester Lock Storage
Theme URI: https://winchester-lock.watchman-properties.com
Description: Child theme for Astra, customized for Winchester Lock Storage
Author: Byrd IT
Template: astra
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: astra-child-wls
*/

/* ------------------------------------------------------------------
   Brand variables — Winchester Lock Storage maroon + gold
------------------------------------------------------------------- */
:root {
  --wls-maroon: #722A2E;
  --wls-maroon-dark: #5a1f23;
  --wls-maroon-light: #8a353a;
  --wls-gold: #c9a45c;
  --wls-text: #2a2a2a;
  --wls-muted: #6b6b6b;
  --wls-bg-soft: #f7f5f3;
  --wls-border: #e2e2e2;
}

body {
  font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  color: var(--wls-text);
  margin: 0;
  background: #fff;
}

a { color: var(--wls-maroon); text-decoration: none; }
a:hover { color: var(--wls-maroon-light); }

img { max-width: 100%; height: auto; display: block; }

/* ------------------- TOP HEADER STRIP ------------------- */
.wls-topbar {
  background: var(--wls-maroon);
  color: #fff;
  padding: 8px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  flex-wrap: wrap;
  gap: 12px;
}
.wls-topbar a { color: #fff; font-weight: 600; }
.wls-topbar .wls-phone { font-size: 16px; letter-spacing: 0.5px; }

/* ------------------- MAIN HEADER / NAV ------------------- */
.wls-header {
  background: #fff;
  border-bottom: 1px solid var(--wls-border);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 4px rgba(0,0,0,0.04);
}
.wls-header .wls-logo img { height: 60px; width: auto; }
.wls-header nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
}
.wls-header nav a {
  color: var(--wls-text);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}
.wls-header nav a:hover,
.wls-header nav a.active {
  color: var(--wls-maroon);
  border-bottom-color: var(--wls-maroon);
}
.wls-header .wls-tenant-btn {
  background: var(--wls-maroon);
  color: #fff;
  padding: 8px 18px;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
}
.wls-header .wls-tenant-btn:hover { background: var(--wls-maroon-dark); color: #fff; }

/* ------------------- HERO ------------------- */
.wls-hero {
  position: relative;
  min-height: 560px;
  background:
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
    url('https://winchester-lock.watchman-properties.com/wp-content/uploads/2026/08/hero.png') center/cover no-repeat;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 24px;
}
.wls-hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  margin: 0 0 24px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.wls-hero .wls-reserve-btn {
  display: inline-block;
  background: var(--wls-maroon);
  color: #fff;
  padding: 16px 36px;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 15px;
  margin-bottom: 40px;
  transition: all 0.2s;
}
.wls-hero .wls-reserve-btn:hover {
  background: var(--wls-gold);
  color: var(--wls-maroon-dark);
  transform: translateY(-2px);
}
.wls-hero h2 {
  font-size: clamp(24px, 3vw, 36px);
  margin: 0 0 8px;
  font-weight: 700;
}
.wls-hero .wls-subtitle {
  font-size: 16px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 32px;
  opacity: 0.9;
}
.wls-hero .wls-minutes {
  background: rgba(114, 42, 46, 0.85);
  padding: 16px 32px;
  border-radius: 4px;
  font-size: 15px;
  line-height: 1.8;
  margin-top: 16px;
}

/* ------------------- SECTION COMMON ------------------- */
.wls-section {
  padding: 80px 24px;
  max-width: 1280px;
  margin: 0 auto;
}
.wls-section--alt { background: var(--wls-bg-soft); }
.wls-section h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  text-align: center;
  margin: 0 0 16px;
  color: var(--wls-maroon);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.wls-section h2 .accent { color: var(--wls-gold); }
.wls-section .wls-eyebrow {
  display: block;
  text-align: center;
  color: var(--wls-muted);
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 12px;
  font-weight: 600;
}
.wls-section .wls-lead {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
  color: var(--wls-muted);
  font-size: 17px;
  line-height: 1.7;
}

/* ------------------- STORAGE TYPES ------------------- */
.wls-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 32px;
}
.wls-type-card {
  background: #fff;
  border-radius: 8px;
  padding: 36px 24px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: all 0.25s;
  border-top: 4px solid var(--wls-maroon);
}
.wls-type-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(114,42,46,0.15);
}
.wls-type-card img {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  object-fit: contain;
}
.wls-type-card h3 {
  font-size: 20px;
  margin: 0 0 12px;
  color: var(--wls-maroon);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}
.wls-type-card p {
  color: var(--wls-muted);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* ------------------- WHY CHOOSE US ------------------- */
.wls-why {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.wls-why-item {
  background: #fff;
  padding: 28px 20px;
  border-left: 4px solid var(--wls-gold);
  border-radius: 4px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: 0 1px 6px rgba(0,0,0,0.05);
}
.wls-why-item .check {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--wls-maroon);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.wls-why-item p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: var(--wls-text);
  font-weight: 500;
}

/* ------------------- LOCATIONS GRID ------------------- */
.wls-locations {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 40px;
}
.wls-location {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: all 0.25s;
}
.wls-location:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.wls-location img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.wls-location .wls-loc-body {
  padding: 24px;
  text-align: center;
}
.wls-location .wls-loc-label {
  color: var(--wls-gold);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 8px;
}
.wls-location h3 {
  font-size: 20px;
  color: var(--wls-maroon);
  margin: 0 0 8px;
  font-weight: 700;
}
.wls-location .wls-loc-addr {
  color: var(--wls-muted);
  font-size: 15px;
  margin-bottom: 16px;
}
.wls-location .wls-loc-link {
  display: inline-block;
  color: var(--wls-maroon);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1.5px;
  border-bottom: 2px solid var(--wls-maroon);
  padding-bottom: 2px;
}
.wls-location .wls-loc-link:hover { color: var(--wls-gold); border-bottom-color: var(--wls-gold); }

/* ------------------- SIZE GUIDE ------------------- */
.wls-size-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 40px;
  align-items: end;
}
.wls-size-card {
  background: #fff;
  border-radius: 8px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.wls-size-card img {
  margin: 0 auto 16px;
  max-width: 100%;
  height: auto;
}
.wls-size-card h4 {
  font-size: 18px;
  color: var(--wls-maroon);
  margin: 0 0 6px;
  font-weight: 700;
}
.wls-size-card p {
  color: var(--wls-muted);
  font-size: 14px;
  margin: 0;
}
.wls-size-cta {
  text-align: center;
  margin-top: 32px;
}
.wls-size-cta a {
  display: inline-block;
  background: var(--wls-maroon);
  color: #fff;
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 14px;
  margin: 0 8px;
  transition: all 0.2s;
}
.wls-size-cta a:hover { background: var(--wls-gold); color: var(--wls-maroon-dark); }

/* ------------------- ABOUT US ------------------- */
.wls-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.wls-about-img {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.wls-about-img img { width: 100%; display: block; }
.wls-about-text h2 {
  text-align: left;
  margin-bottom: 24px;
}
.wls-about-text p {
  color: var(--wls-text);
  line-height: 1.8;
  font-size: 16px;
  margin: 0 0 18px;
}
@media (max-width: 768px) {
  .wls-about { grid-template-columns: 1fr; }
  .wls-about-text h2 { text-align: center; }
}

/* ------------------- ACCESS LIST ------------------- */
.wls-access {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
  margin-top: 24px;
}
.wls-access span {
  background: #fff;
  border: 1px solid var(--wls-border);
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 15px;
  color: var(--wls-text);
  font-weight: 500;
}
.wls-access span::before {
  content: "\1F4CD ";
  margin-right: 4px;
}

/* ------------------- CALL CTA BAR ------------------- */
.wls-cta-bar {
  background: linear-gradient(135deg, var(--wls-maroon) 0%, var(--wls-maroon-dark) 100%);
  color: #fff;
  padding: 60px 24px;
  text-align: center;
}
.wls-cta-bar h3 {
  font-size: clamp(22px, 2.5vw, 32px);
  margin: 0 0 12px;
  font-weight: 700;
}
.wls-cta-bar p {
  margin: 0 0 24px;
  font-size: 18px;
  opacity: 0.9;
}
.wls-cta-bar a.wls-call-btn {
  display: inline-block;
  background: #fff;
  color: var(--wls-maroon);
  padding: 16px 40px;
  border-radius: 4px;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 1px;
  transition: all 0.2s;
}
.wls-cta-bar a.wls-call-btn:hover {
  background: var(--wls-gold);
  color: var(--wls-maroon-dark);
  transform: scale(1.05);
}

/* ------------------- FOOTER ------------------- */
.wls-footer {
  background: #1a1a1a;
  color: #ccc;
  padding: 40px 24px 24px;
  text-align: center;
}
.wls-footer .wls-footer-logo {
  height: 50px;
  margin: 0 auto 20px;
  filter: brightness(0) invert(1);
}
.wls-footer p { margin: 8px 0; font-size: 14px; }
.wls-footer a { color: var(--wls-gold); }
.wls-footer .wls-copy {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #333;
  font-size: 13px;
  color: #888;
}

/* ------------------- RESPONSIVE ------------------- */
@media (max-width: 768px) {
  .wls-header { flex-wrap: wrap; gap: 12px; justify-content: center; }
  .wls-header nav ul { gap: 16px; flex-wrap: wrap; justify-content: center; }
  .wls-hero { min-height: 460px; padding: 60px 20px; }
  .wls-section { padding: 56px 20px; }
  .wls-topbar { justify-content: center; text-align: center; }
}