
* {
    box-sizing: border-box;
}

    body {
        margin: 0;
        font-family: Arial, sans-serif;
        background: #111;
        color: #fff;
        text-align: center;
    }

    /* Banner */
    .banner-container {
        position: relative;
        width: 100%;
        height: 350px;
        overflow: hidden;
    }

    .banner-background {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
    }

    .banner-logo {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 40%;
        transform: translate(-50%, -50%);
        z-index: 2;
    }

    /* CTA Button */
    .cta-button {
        display: inline-block;
        margin: 40px auto;
        padding: 15px 40px;
        background: #ffcc00;
        color: #000;
        font-size: 22px;
        font-weight: bold;
        text-decoration: none;
        border-radius: 6px;
    }
.cta-button:hover {opacity: 0.8;
}

    /* Image Gallery */
    .infinite-gallery {
        padding-top: 40px;
        width: 900px;
        overflow: hidden;
        margin: auto;
    }

    .gallery-track {
        display: flex;
        width: max-content;
        gap: 20px;
        animation: scroll-left 12s linear infinite;
    }

    .gallery-track img {
        width: 300px;
        height: 300px;
        border-radius: 8px;
        object-fit: cover;
        flex-shrink: 0;
    }

    @keyframes scroll-left {
        from { transform: translateX(0); }
        to { transform: translateX(-2240px); }
    }

    /* Alternating Sections */
    .section-block {
        padding: 60px 0;
    }

    .section-block:nth-child(odd) {
        background: #000;
    }

    .section-block:nth-child(even) {
        background: #0a1a33;
    }

    .section-inner {
        width: 70%;
        max-width: 1400px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 40px;
    }

    .section-block.reverse .section-inner {
        flex-direction: row-reverse;
    }

    .section-text {
        flex: 1;
        text-align: left;
    }

    .section-text h2 {
        color: #ffcc00;
        font-size: 32px;
        margin-bottom: 20px;
text-transform: uppercase;
    }

    .section-text p {
        color: #fff;
        font-size: 18px;
        line-height: 1.6;
    }

    .section-image {
        flex: 1;
    }

    .section-image img {
        width: 100%;
        border-radius: 10px;
        object-fit: cover;
    }

    /* Mobile */
    @media (max-width: 900px) {
        .section-inner,
        .section-block.reverse .section-inner {
            flex-direction: column;
            text-align: center;
        }

        .section-text {
            text-align: center;
        }
    }
/* Final CTA Section */
.final-cta {
    position: relative;
    background: url('banner-background-zero-breath-clothing.png') center/cover no-repeat;
    padding: 80px 0;
    text-align: center;
}

.final-cta-inner {
    width: 80%;
    max-width: 1400px;
    margin: 0 auto;
}

.final-cta h2 {
    color: #ffcc00;
    font-size: 40px;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.final-thumbs {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.final-thumbs img {
    width: 150px;
    height: 150px;
    border-radius: 12px;
    object-fit: cover;
}

/* Mobile */
@media (max-width: 900px) {
    .final-thumbs {
        flex-direction: column;
    }
}

h2.wave-header {color: #fff;}

/* HEADER */
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    color: #fff;
    font-size: 14px;
}

header h1 {
    margin: 0;
    font-size: 18px;
    letter-spacing: 1px;
    font-weight: bold;
text-transform: uppercase;
}

/* NAVIGATION */
nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    position: relative;
padding: 8px;
}

nav a:hover {background-color: #111; opacity: 0.8;}

/* DROPDOWN */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 22px;
    right: 0;
    background: rgba(0,0,0,0.85);
    padding: 10px 0;
    border-radius: 6px;
    min-width: 140px;
}

.dropdown-menu a {
    display: block;
    padding: 8px 15px;
    white-space: nowrap;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* Extend banner height to make room for header */
.banner-container {
    height: 450px; /* increased from 350px */
}

.header-logo {
    width: 120px;
    height: auto;
}


footer {
font-family: Arial, sans-serif;
margin: 0;
      padding: 0;
      box-sizing: border-box;
      background-color: #0a1a33;
      height: 350px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 40px 60px 24px;
    }

    .footer-inner {
      display: flex;
      width: 100%;
      align-items: center;
      justify-content: space-between;
      flex: 1;
    }

    /* LEFT: Logo + company name */
    .footer-logo {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 12px;
    }

    .footer-logo img {
      max-height: 110px;
      width: auto;
      display: block;
    }

    .footer-company-name {
      color: #ffffff;
      font-family: Arial, sans-serif;
      font-weight: bold;
      font-size: 16px;
      letter-spacing: 0.08em;
      white-space: nowrap;
    }

    /* Copyright bar */
    .footer-copyright {
      color: #4a6a8a;
      font-family: Arial, sans-serif;
      font-size: 11px;
      letter-spacing: 0.03em;
      text-align: right;
      width: 100%;
    }

    /* RIGHT: Nav */
    .footer-nav {
      display: flex;
      gap: 60px;
      align-items: flex-start;
    }

    .nav-link {
      color: #ffffff;
      text-decoration: none;
      font-family: Arial, sans-serif;
      font-weight: bold;
      font-size: 14px;
      letter-spacing: 0.05em;
      white-space: nowrap;
    }

    .nav-link:hover {
      color: #a8c4e0;
    }

    /* Column with sub-links under BESTSELLERS */
    .nav-column {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .nav-column .nav-link {
      margin-bottom: 0;
    }

    .sub-links {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-top: 16px;
    }

    .sub-link {
      color: #a8c4e0;
      text-decoration: none;
      font-family: Arial, sans-serif;
      font-weight: normal;
      font-size: 13px;
      white-space: nowrap;
    }

    /* ── Tablet: ~768px–1024px ── */
    @media (max-width: 1024px) {
      footer {
        height: auto;
        padding: 40px 40px 24px;
      }
      .footer-nav {
        gap: 36px;
      }
      .sub-link {
        font-size: 12px;
      }
    }

    /* ── Mobile: below 768px ── */
    @media (max-width: 768px) {
      footer {
        height: auto;
        padding: 36px 28px 20px;
      }
      .footer-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
      }
      .footer-logo img {
        max-height: 80px;
      }
      .footer-company-name {
        font-size: 14px;
      }
      .footer-nav {
        flex-direction: column;
        gap: 20px;
        width: 100%;
      }
      .nav-link {
        font-size: 13px;
      }
      .sub-links {
        gap: 8px;
        margin-top: 12px;
      }
      .sub-link {
        font-size: 12px;
      }
      .footer-copyright {
        text-align: left;
        margin-top: 8px;
      }
    }

    .sub-link:hover {
      color: #ffffff;
    }



.simple-hero {
    width: 80%;
    max-width: 900px;
    margin: 60px auto;
    text-align: center;
}

.simple-hero h1 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #ffcc00;
text-transform: uppercase;
}


.simple-hero-images {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}


.simple-hero-img {
    width: 300px;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 25px;
}

.simple-hero-images .simple-hero-img {
    width: 45%;
    max-width: 350px;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}


.simple-hero-text {
    font-size: 18px;
    line-height: 1.6;
    color: #fff;
    max-width: 700px;
    margin: 0 auto 40px auto;
}

ul.simple-hero-bullets {
    font-size: 12px;
    line-height: 1.6;
    color: #fff;
    max-width: 700px;
   
}

h1.subpage-header {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    font-size: 60px;
    color: #fff;
text-shadow: 2px 2px 1px black;
    z-index: 2;
    text-align: center;
text-transform: uppercase;
}
.faq-section {
    background: #000;
    padding: 60px 0;
}

.faq-section h2 {
    color: #ffcc00;
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.faq-container {
    width: 70%;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #333;
}

.faq-item:first-of-type {
    border-top: 1px solid #333;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    font-family: Arial, sans-serif;
    text-align: left;
    padding: 22px 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 16px;
}

.faq-question:hover {
    color: #ffcc00;
}

.faq-icon {
    font-size: 20px;
    line-height: 1;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 10px 0 42px;
    color: #ccc;
    font-size: 15px;
    line-height: 1.7;
    text-align: left;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding-bottom: 22px;
}

@media (max-width: 900px) {
    .faq-container {
        width: 88%;
    }
}

/* ── Two by Two Grid Section ── */
.grid-section {
    background: #000;
    padding: 60px 0;
}

.grid-container {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.grid-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: #fff;
}

.grid-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
}

.grid-item h2 {
    color: #ffcc00;
    font-size: 26px;
    margin: 0 0 12px;
    text-transform: uppercase;
}

.grid-item p {
    color: #fff;
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 20px;
}

.grid-item:hover h2 {
    color: #fff;
}

.grid-cta {
    margin: 0;
    padding: 12px 30px;
    font-size: 16px;
}

/* Mobile */
@media (max-width: 900px) {
    .grid-container {
        width: 88%;
        grid-template-columns: 1fr;
    }
}


a.body-section-link {color: #ffcc00;}
a.body-section-link:hover {color: #fff;}

/* ════════════════════════════════════════════ */
/* BLOG TEMPLATES — Main, Tag, and Post pages    */
/* ════════════════════════════════════════════ */

/* Outer 3-column layout wrapper used on all 3 blog templates */
.blog-layout {
    width: 90%;
    max-width: 1400px;
    margin: 60px auto;
    display: flex;
    align-items: flex-start;
    gap: 40px;
    text-align: left;
}

/* ── LEFT COLUMN: sticky thumbnail/CTA ── */
.blog-sidebar-left {
    width: 220px;
    flex-shrink: 0;
    position: sticky;
    top: 30px;
    text-align: center;
}

.blog-sidebar-left img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.blog-sidebar-left p {
    color: #fff;
    font-size: 14px;
    line-height: 1.5;
    margin: 15px 0;
}

.blog-sidebar-left .cta-button {
    display: block;
    width: 100%;
    margin: 0 auto;
    padding: 12px 0;
    font-size: 15px;
}

/* ── CENTER COLUMN: main content ── */
.blog-main {
    flex: 1;
    min-width: 0;
}

/* ── RIGHT COLUMN: related/top posts (always reserves space) ── */
.blog-sidebar-right {
    width: 220px;
    flex-shrink: 0;
}

.blog-sidebar-right h3 {
    color: #ffcc00;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 20px;
}

.blog-sidebar-right ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.blog-sidebar-right li {
    margin-bottom: 16px;
}

.blog-sidebar-right a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: bold;
    line-height: 1.4;
}

.blog-sidebar-right a:hover {
    color: #ffcc00;
}

/* ── Blog post preview cards (used on Main blog page + Tag page) ── */
.blog-post-preview {
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid #222;
}

.blog-post-preview:last-child {
    border-bottom: none;
}

.blog-post-preview h2 {
    margin: 0 0 14px;
    font-size: 26px;
}

.blog-post-preview h2 a {
    color: #ffcc00;
    text-decoration: none;
}

.blog-post-preview h2 a:hover {
    color: #fff;
}

.blog-post-preview p {
    color: #fff;
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 14px;
}

.blog-read-more {
    color: #ffcc00;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-read-more:hover {
    color: #fff;
}

/* ── Tag page: label above the filtered list ── */
.blog-tag-label {
    color: #999;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 30px;
}

.blog-tag-label span {
    color: #ffcc00;
}

/* ── Individual blog post: article body ── */
.blog-post-content h2 {
    color: #ffcc00;
    font-size: 28px;
    margin: 40px 0 18px;
    text-transform: uppercase;
}

.blog-post-content h2:first-child {
    margin-top: 0;
}

.blog-post-content h3 {
    color: #ffcc00;
    font-size: 22px;
    margin: 32px 0 16px;
}

.blog-post-content p {
    color: #fff;
    font-size: 17px;
    line-height: 1.7;
    margin: 0 0 18px;
}


.blog-post-content a {
    color: #ffcc00;
    font-size: 17px;
    line-height: 1.7;
    margin: 0 0 18px;
}

.blog-post-content img {
    width: 100%;
    border-radius: 10px;
    margin: 30px 0;
}

/* ── Individual blog post: tag links footer ── */
.blog-post-tags {
    margin-top: 50px;
    padding-top: 24px;
    border-top: 1px solid #333;
    color: #ccc;
    font-size: 14px;
}

.blog-post-tags .blog-tags-label {
    color: #ccc;
    margin-right: 6px;
}

.blog-post-tags a {
    color: #ccc;
    text-decoration: underline;
    margin-right: 4px;
}

.blog-post-tags a:hover {
    color: #ffcc00;
}

/* ── Mobile: stack the three columns ── */
@media (max-width: 900px) {
    .blog-layout {
        flex-direction: column;
        width: 88%;
    }

    .blog-sidebar-left {
        position: static;
        width: 100%;
        max-width: 280px;
        margin: 0 auto 20px;
    }

    .blog-sidebar-right {
        width: 100%;
    }

    .blog-post-preview h2 {
        font-size: 22px;
    }
}

p.caption{color: #ccc; font-size: 14px; font-family: Arial; font-style: italic; text-align: center;}
a.caption{color: #ccc;font-size: 14px;font-family: Arial; font-style: italic; }
