/*------------------------------------------------------------------
  outdoor-wifi-page.css
  Page-specific styles for outdoor-wifi.html
  West Coast AV & Security — Pleasanton, CA

  This file is loaded AFTER main.css and style.css.
  It extends — never overrides — the site's base framework.
  All colours pulled from the site palette:
    Navy dark  #1a2740
    Navy mid   #243350  (bg-2 equivalent)
    Red/accent #cc2222  (id-color / btn-custom from red.css)
    Gold       #c8a040  (id-color variant used elsewhere)
    Light bg   #f5f5f5
    Border     #e8e6e1
------------------------------------------------------------------*/


/* ─────────────────────────────────────────────────────────────
   IMAGE PLACEHOLDERS
   Remove these when real images are added.
   Replace each .owp-img-ph div with an <img> tag.
───────────────────────────────────────────────────────────── */
.owp-img-ph {
    background: linear-gradient(135deg, #d4dde8 0%, #bfcbda 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    padding: 16px;
    width: 100%;
    box-sizing: border-box;
}
.owp-img-ph span {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: rgba(26, 39, 64, .42);
    line-height: 1.55;
}
.owp-img-ph.lifestyle-ph {
    width: 100%;
    display: flex;
}


/* ─────────────────────────────────────────────────────────────
   PANEL STRIP — services-2.html style four-up grid
   Extends .one-fourth and .bg-color-fx from style.css.
───────────────────────────────────────────────────────────── */
.owp-panel-strip {
    background: #1a2740;
    width: 100%;
}

/* Each panel reuses .one-fourth (width:25%, float:left) from style.css.
   We add vertical rhythm and spacing only. */
.owp-panel .bg-color-fx {
    padding: 40px 28px 36px;
    min-height: 420px;
    border-right: 1px solid rgba(255,255,255,.07);
}
.owp-panel:last-child .bg-color-fx {
    border-right: none;
}

.owp-panel-icon {
    font-size: 36px;
    color: #fff;
    margin-bottom: 14px;
    display: block;
    opacity: .9;
    transition: opacity .2s;
}
.owp-panel .bg-color-fx:hover .owp-panel-icon {
    opacity: 1;
}

.owp-panel h3 {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 0;
}

.owp-panel p {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255,255,255,.72);
    margin-top: 16px;
    margin-bottom: 18px;
}

/* Tiny border inside panels — reuses .tiny-border colour set in red.css */
.owp-panel .tiny-border {
    background: rgba(255,255,255,.22);
}

/* Hover tint — extends bg-color-fx:hover from style.css with navy variant */
.owp-panel .bg-color-fx:hover {
    background: rgba(0,0,0,.18) !important;
}
.owp-panel .bg-color-fx:hover h3 {
    color: #fff;
}

/* Responsive: stack panels on mobile */
@media (max-width: 991px) {
    .owp-panel.one-fourth {
        width: 50% !important;
        display: block;
        float: left;
    }
}
@media (max-width: 600px) {
    .owp-panel.one-fourth {
        width: 100% !important;
        float: none;
        display: block;
    }
    .owp-panel .bg-color-fx {
        min-height: 0;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,.07);
    }
}


/* ─────────────────────────────────────────────────────────────
   FEATURE CHECK GRID (inside main content column)
   Uses .feature-box.border from style.css.
   We add a 2-column grid wrapper only.
───────────────────────────────────────────────────────────── */
.wifi-check-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin: 24px 0;
}
.wifi-check-grid .feature-box.border {
    width: 50%;
    box-sizing: border-box;
    margin-bottom: 0;
}
@media (max-width: 600px) {
    .wifi-check-grid .feature-box.border {
        width: 100%;
    }
}


/* ─────────────────────────────────────────────────────────────
   LIFESTYLE SHOWCASE — editorial 3-card grid
   Left: tall portrait card. Right: two stacked landscape cards.
───────────────────────────────────────────────────────────── */
.wifi-lifestyle-showcase {
    margin-top: 10px;
}

.showcase-intro {
    margin-bottom: 32px;
}
.showcase-kicker {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #cc2222;
    margin-bottom: 10px;
}

.showcase-grid {
    display: flex;
    gap: 16px;
    align-items: stretch;
}

/* Tall left card */
.showcase-card-large {
    flex: 0 0 42%;
    display: flex;
    flex-direction: column;
}

/* Right column — two stacked smaller cards */
.showcase-right-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.showcase-card {
    display: flex;
    flex-direction: column;
    background: #fafafa;
    border: 1px solid #e8e6e1;
    overflow: hidden;
}

.showcase-media {
    margin: 0;
    padding: 0;
    overflow: hidden;
    flex-shrink: 0;
}
.showcase-media img,
.showcase-media .owp-img-ph {
    width: 100%;
    display: block;
}

.showcase-copy {
    padding: 20px;
    flex: 1;
}
.showcase-label {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #cc2222;
    margin-bottom: 8px;
}
.showcase-copy h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1a2740;
    margin-bottom: 10px;
    line-height: 1.3;
}
.showcase-copy p {
    font-size: 13px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .showcase-grid {
        flex-direction: column;
    }
    .showcase-card-large {
        flex: none;
    }
}


/* ─────────────────────────────────────────────────────────────
   FAQ SECTION
   Uses the native .faq / .btn-expand / .hide-content /
   .icon-search classes already defined in style.css.
   We add section chrome only — background, spacing, kicker.
───────────────────────────────────────────────────────────── */
.owp-faq-section {
    background: #f5f5f5;
    padding: 64px 0 48px;
    position: relative;
}

/* Thin top accent line matching id-color */
.owp-faq-section::before {
    content: '';
    display: block;
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: #cc2222;
}

.owp-faq-section h2 {
    color: #1a2740;
    margin-bottom: 10px;
}

.owp-faq-section .lead {
    font-size: 15px;
    color: #888;
    max-width: 640px;
    margin: 0 auto 40px;
}

.owp-faq-kicker {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #cc2222;
    margin-bottom: 10px;
}

/* The .faq class from style.css already handles most styling.
   These tweaks improve readability in the light-bg context. */
.owp-faq-section .faq .inner {
    background: #fff;
    border-color: #e0ddd6;
    /* Override the bottom-border:none from style.css so items have clean separation */
    border-bottom: none;
}
.owp-faq-section .faq .hide-content {
    background: #fff;
    border: 1px solid #e0ddd6;
    border-top: none;
    padding: 18px 20px 18px 88px;
    color: #555;
    font-size: 14px;
    line-height: 1.75;
}

/* .icon-search square — brand colour */
.owp-faq-section .faq .icon-search {
    background: #1a2740;
    color: #fff;
}

/* Give the last FAQ item a bottom border so the section closes cleanly */
.owp-faq-section .faq:last-child .inner {
    border-bottom: 1px solid #e0ddd6;
}
.owp-faq-section .faq:last-child .hide-content {
    border-bottom: 1px solid #e0ddd6;
}

/* FAQ CTA */
.owp-faq-cta {
    margin-top: 40px;
}
.owp-faq-cta .btn-custom {
    padding: 12px 32px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
}


/* ─────────────────────────────────────────────────────────────
   SIDEBAR IMAGE WRAPPER
───────────────────────────────────────────────────────────── */
.owp-sidebar-img-wrap {
    overflow: hidden;
    padding: 0 !important;
}
.owp-sidebar-img-wrap .owp-img-ph {
    border-top: 3px solid #cc2222;
}


/* ─────────────────────────────────────────────────────────────
   OUTDOOR MAIN SLOT — minor spacing
───────────────────────────────────────────────────────────── */
.outdoor-main-slot h2 {
    color: #1a2740;
}
.outdoor-main-slot h3 {
    color: #1a2740;
    margin-bottom: 12px;
}
.outdoor-main-slot p {
    color: #666;
    line-height: 1.78;
}


/* ─────────────────────────────────────────────────────────────
   CONTENT SECTION WRAPPER
   Small section utility class used in the main column.
───────────────────────────────────────────────────────────── */
.content-section {
    margin-bottom: 8px;
}
