/*
Theme Name: Hestia Child
Theme URI: https://www.themeisle.com/
Description: This is a custom child theme I have created.
Author: ThemeIsle
URI: https://www.themeisle.com/
Template: hestia
Version: 0.1
*/
:root {
    /* Primary Theme Colors */
    --color-primary: #0f1e3c; /* Deep Navy – for headers/backgrounds */
    --color-primary-dark: #070d1b; /* Twilight Black-Blue */
    --color-primary-light: #3f5fbf; /* Patriotic Blue Highlight (stars/flag) */

    /* Accent / Action Colors */
    --button-accent: #e32636; /* Firecracker Red (stars, glasses, bold text) */
    --button-accent-hover: #b31c28; /* Darker Red for hover */

    /* Neutrals & Backgrounds */
    --color-background: #fefcfb; /* Warm Off-White (Rushmore stone base) */
    --color-background-alt: #f2f2f2; /* Light gray smoke (for sections/cards) */
    --color-surface: #ffffff; /* True White (button faces, cards) */

    /* Text Colors */
    --color-text: #333; /* Bold black (lines, shadow) */
    --color-text-light: #ffffff; /* For use on dark or colored buttons */

    /* UI/Border Colors */
    --color-border: #e5e7eb; /* Neutral gray-blue for subtle lines */
    --color-secondary: #d0d7ff; /* Light Sky Blue (for backgrounds or secondary CTAs) */
    --color-secondary-hover: #aebef9; /* Slightly deeper hover tone */

    /* Status/Utility */
    --color-error: #d32f2f; /* Warning red (urgent alerts) */
    --color-warning: #ffc107; /* Gold-orange firework flash */
    --color-success: #4ade80; /* Vibrant green (for optional success UI) */
}

nav a {
    font-weight: 700 !important;
}

#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1; /* sits behind everything */
    pointer-events: none; /* don’t block clicks     */

    /* optional soft fallback gradient if JS disabled */
    background: radial-gradient(ellipse at top left,
    #f7f7f7 0%, #ffffff 100%);
}
#particles-js canvas {
    background: transparent !important;
}

.navbar .navbar-nav > li > a:hover,
.navbar .navbar-nav > li.active > a {
    color: white !important;
}

/* Frosted translucent white for navbar, always on */
.navbar.navbar-not-transparent {
    background: linear-gradient(
            to right,
            rgba(63, 95, 191, 0.5), /* --color-primary-light */ rgba(227, 38, 54, 0.5) /* --button-accent */
    );
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); /* for Safari */
    transition: all 0.3s ease;
    color: white !important;

}

@media (max-width: 768px) {
    .navbar-collapse.collapse.in {
        display: block !important;
        max-height: none !important;
    }

    /* Always use this text color */
    .navbar .navbar-nav > li > a{
        color: var(--color-text) !important;
    }

    /* (optional) you can drop these;
       they’re now redundant) */
    .navbar .navbar-nav > li > a:hover,
    .navbar .navbar-nav > li.active > a{
        color: var(--color-text) !important;
    }
}

.hestia-toggle-search {
    color: white !important;
}

.hestia-nav-search {

    color: white !important;

}

.btn-primary {
    font-weight: bold;
}

.btn-primary:hover {
    background-color: var(--button-accent); /* darker red for hover */
    box-shadow: 0 4px 12px var(--button-accent) !important;
}

/* HERO SECTION */
.hero-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--color-text-light); /* or #ffffff */
    overflow: hidden;

    background-image: url('/wp-content/uploads/images/image copy.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


/* 🔲 Overlay for contrast */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(
            to right,
            rgba(20, 35, 80, 0.7),
            rgba(100, 10, 20, 0.7)
    );


}

/*ABOUT PAGE*/
.hero-section.about-hero {
    min-height: 45vh;

}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 110px 2rem 2rem 2rem;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center; /* horizontal centering */
    justify-content: center; /* vertical centering if needed */
    text-align: center;
}


.hero-content h1 {
    font-size: 7rem;

}

.hero-content p {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.features-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 2rem 1rem;
    text-align: center;
    position: relative;
    z-index: 2;
    margin-top: 2rem;
}


.feature {
    max-width: 280px;
    margin: 1rem;
}

.feature h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.feature p {
    font-size: 1.5rem;
}


/* ─── Responsive Hero Section ──────────────────────────── */
@media (max-width: 1024px) {
    .hero-overlay {
        position: absolute;          /* <—  stay absolute  */
        inset: 0;                    /* shorthand for top/right/bottom/left:0 */
        background: linear-gradient(
                to bottom,               /* vertical fade */
                rgba(20,35,80,.7),
                rgba(100,10,20,.7)
        );
    }

    /* 2. Allow the section to grow naturally */
    .hero-section{
        min-height: auto;     /* remove the 70vh cap  */
        overflow: visible;    /* don’t crop content   */
    }
    /* Center everything & tighten spacing */
    .hero-content{
        padding: 90px 1.5rem 1.5rem;
    }

    /* Tablet headline / sub-headline */
    .hero-content h1{
        font-size: 4rem;
    }
    .hero-content p{
        font-size: 2rem;
    }

    /* Features: go to 2-column on tablets, 1-column on phones */
    .features-section{
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .feature{
        flex: 1 1 45%;         /* two per row on tablets */
        max-width: none;
    }
}

/* Phone-specific tweaks */
@media (max-width: 640px){
    .hero-overlay {
        position: absolute;          /* <—  same here      */
        inset: 0;

        background: linear-gradient(
                to bottom,
                rgba(20,35,80,.7),
                rgba(100,10,20,.7)
        );


    }


    /* 2. Allow the section to grow naturally */
    .hero-section{

        min-height: auto;     /* remove the 70vh cap  */
        overflow: visible;    /* don’t crop content   */
    }
    .hero-content{
        padding: 80px 1rem 1.5rem;
    }

    .hero-content h1{
        font-size: 4rem;
    }
    .hero-content p{
        font-size: 2rem;
    }

    .features-section{
        flex-direction: column; /* stack */
        align-items: center;
    }
    .feature{
        flex: none;
        width: 100%;
        max-width: 320px;
        margin: 0 auto 1.25rem;
    }
}

/* Hero Countdown */
.hero-countdown{
    display:flex;
    flex-wrap:wrap;              /* ← NEW: allows a second line */

    justify-content:center;
    gap:15px;
    margin-top:0;

    /* glassy pill backdrop */
    background:rgba(0,0,0,.25);
    backdrop-filter:blur(6px);
    padding:12px 28px;
    border-radius:48px;
}

.hero-countdown div{
    display:flex;
    flex-direction:column;
    align-items:center;
    min-width:68px;          /* keeps cells equal */
}

.hero-countdown span{
    font-size:2.4rem;
    font-weight:700;
    line-height:1;
    /* animated gradient (subtle) */
    background:linear-gradient(45deg,#e73636,#3f5fc1 60%);
    -webkit-background-clip:text;
    color:transparent;
    animation:shift 8s linear infinite;
}

.hero-countdown small{
    font-size:.65rem;
    text-transform:uppercase;
    letter-spacing:1px;
    color:#fff;
    opacity:.9;
}
.hero-countdown > small{        /* targets “Until the 4th” */
    width:100%;                 /* ← NEW: pushes to its own line */
    margin-top:0;
    font-size:.65rem;
    font-weight:600;
    text-align:center;
    color:#fff;
}
/* gradient shimmer */
@keyframes shift{
    0%{background-position:0 0;}
    100%{background-position:200% 0;}
}

/* mobile tweak */
@media(max-width:600px){
    .hero-countdown{
        gap:18px;
        padding:10px 18px;
        font-size:90%;
    }
}

.services-section {
    background: #f9f9f9;
    padding: 0 1rem;
    text-align: center;

}

.services-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.services-section h2 {
    font-size: 4rem;
    font-weight: 500;
    margin-bottom: 3rem;
}

/* ——— base grid (desktop) ——— */
.service-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    grid-auto-rows:1fr;                 /* equal-height rows (kept) */
    gap:clamp(1.5rem,2vw,2rem);
    margin-bottom:30px;
}

/* ——— tablet ——— */
@media (max-width:1024px){
    .service-grid{grid-template-columns:repeat(2,1fr);}
}

/* ——— phone: 2-up, equal widths ——— */
@media (max-width:640px){
    /* 1. allow each track to shrink all the way to 0 */
    .service-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

    /* 2. prevent a wide image / long word from forcing the cell wider */
    .service-card{min-width:0;}
}

.service-card {
    display: flex;                   /* stretch the card */
    flex-direction: column;
    justify-content: space-between;  /* push CTA/footer if added */
    padding: clamp(1.5rem, 2.5vw, 2rem);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transition: transform .3s, box-shadow .3s;
    background: none;                /* keep against grey bg */
}

.service-card h3 {
    font-size: clamp(1.25rem, 1.2vw + 1rem, 1.5rem);
    margin-bottom: .5rem;
    color: var(--button-accent);
}

.service-card p {
    font-size: clamp(1rem, 1vw + .75rem, 1.25rem);
    line-height: 1.5;
    color: #333;
    margin: 0;                       /* remove default */
}

/* Hover remains the same */
.service-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 10px 24px var(--button-accent-hover);
}

/* ▸ Shop pagination – kill bullets & center row */
.shop-pagination ul{
    margin:40px 0 0;
    padding:0;
    list-style:none;
    display:flex;
    justify-content:center;
    gap:12px;
}

/* ▸ each <li> */
.shop-pagination li{margin:0;}

/* ▸ page links & span.current */
.shop-pagination a,
.shop-pagination span{
    display:inline-block;
    padding:6px 18px;
    font-weight:600;
    border:1px solid var(--color-text, #0f1f2e);
    border-radius:8px;
    background:#fff;
    color:var(--color-text, #0f1f2e);
    text-decoration:none;
    transition:.2s ease;
}

.shop-pagination .current{
    background: var(--color-primary);               /* same blue as select outline */
    border-color:var(--color-primary-light);
    color:#fff;
    pointer-events:none;
}

/* ▸ hover / active */
.shop-pagination a:hover{
    background:var(--button-accent-hover);               /* your accent red */
    border-color:var(--button-accent);
    color:#fff;
}
@media screen and (max-width: 600px) {
    .shop-pagination a,
    .shop-pagination span {
        padding: 4px 12px;
        font-size: 13px;
        border-radius: 6px;
    }

    .shop-pagination ul {
        text-align: center;
        gap: 8px;
        margin-top: 24px;
    }
}
.slide-alert {
    position: fixed;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    padding: 18px 36px;
    max-width: 90%;
    width: fit-content;
    font-weight: 600;
    font-size: 1.3rem;
    border-radius: 12px;
    z-index: 9999;

    color: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    transition: top 0.5s ease, opacity 0.5s ease;

    /* frosted glass */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* ✅ Glassy green (success) */
.slide-alert.success {
    background: rgba(40, 167, 69, 0.3); /* green, transparent */
}

/* ✅ Glassy red (error) */
.slide-alert.error {
    background: rgba(220, 53, 69, 0.3); /* red, transparent */
}

.slide-alert.show {
    top: 40px;
}
.slide-alert.show {
    top: 40px;  /* spacing from top */
}

.payment-types {
    text-align: center;
    margin: 30px 0  0;
    color: var(--color-text);
    opacity: 0.8;
    font-size: 2rem;
}

.payment-icons {
    margin-top: 0.4rem;
    font-size: 3rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    background: var(--color-primary-light); /* red to blue */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}



/* ─── Brand bar strip ────────────────────────────────────── */
.brand-bar{
    padding:2.5rem 1rem;
}

/* grid: 4-up desktop, wraps on tablets/phones */
/* ── BRAND BAR LAYOUT ───────────────────────────────────── */
.brand-grid{
    list-style: none;
    margin: 0 auto;
    padding: 0;
    max-width: 1200px;

    /* use CSS-grid for easy column control */
    display: grid;
    grid-template-columns: repeat(3, 1fr);   /* 3 across on desktop */
    gap: 2rem;
    justify-items: center;                   /* center each cell */
    text-align: center;
}

.brand-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .85rem;
}

/* bigger logos */
.brand-grid img,
.brand-grid i{
    height: 100px;           /* ⬆︎ from 70 → 100 px */
    width: auto;
    max-width: 100%;
}

/* label under logos (keep underline) */
.brand-grid span{
    font-size: 1rem;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ── 2-up on tablet / phone ─────────────────────────────── */
@media (max-width: 768px){
    .brand-grid{
        grid-template-columns: repeat(2, 1fr);   /* two per row */
    }
}

/* optional: keep 2-up even on very small phones */
@media (max-width: 480px){
    .brand-grid{
        grid-template-columns: repeat(2, 1fr);
    }
}







.locations-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
    align-items: center;
    flex-wrap: nowrap; /* 👈 prevent wrapping in desktop layout */
}

/* Left Side: Text */
.locations-text {
    width: 40%;
    min-width: 280px;
}

.locations-text h2 {
    font-size: 4rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: var(--color-text);
}

.location-entry {
    margin-bottom: 2rem;
}

.location-entry h3 {
    font-size: 1.5rem;
    color: var(--button-accent);
    margin-bottom: 0.5rem;
}

.location-entry a {
    color: var(--color-primary-light);
    font-weight: 600;
    text-decoration: none;
}

.location-entry a:hover {
    text-decoration: underline;
}

/* Right Side: Map/Image */
.locations-map {
    width: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.locations-map img {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    display: block;
}
.mobile-only {
    display: none;
}

.desktop-only {
    display: block;
}

/* On phones: show mobile map version, hide desktop */
@media (max-width: 640px) {
    .mobile-only {
        display: block;
        margin-bottom: 1.5rem;
    }

    .desktop-only {
        display: none;
    }
}
/* ─── Tablet (641 px – 1024 px) ─────────────────────────── */
@media (max-width: 1024px) {
    .locations-container{
        flex-direction: row;
        gap: 2rem;
    }
    .locations-text{
        width: 50%;            /* 50 / 50 split                   */
        padding-right: 1.5rem;
    }
    .locations-map{
        width: 50%;
    }
}

/* ─── Phone (≤ 640 px) ─────────────────────────────────── */
@media (max-width: 640px) {
    .locations-container{
        flex-direction: column;                 /* stack               */
        gap: 1.5rem;
        padding: 0 1rem;
    }

    /* Center everything */
    .locations-text,
    .location-entry,
    .locations-text h2{
        text-align: center;
    }

    .locations-text,
    .locations-map{
        width: 100%;                            /* full-width blocks   */
    }


    .location-entry{
        margin-bottom: 1.25rem;
    }

    .locations-map img{
        max-width: 100%;
        height: auto;
    }

}

/* Responsive */


/* core layout */
.journey-section {
    padding: 4rem 1rem;
}

.journey-title {
    text-align: center;
    font-size: 4rem;
    font-weight: 500;
    margin-bottom: 4rem;
    color: var(--color-text);
}

.journey-wrapper {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

/* horizontal slider */
.journey-track {
    display: flex;
    overflow-x: auto;     /* allows scrollTo */
    scroll-behavior: smooth;
    padding: 30px;
}
/* Each slide still scrolls horizontally */
.journey-slide{
    flex:0 0 100%;
    display:flex;
    justify-content:center;
    align-items:center;
    padding: 0 3rem 40px 3rem;
}

/* The new glass-style card */
.journey-card{
    width:100%;
    max-width:520px;
    min-height: 250px;

    padding:2.5rem 2rem;
    border-radius:16px;
    background:rgba(255,255,255,0.10);        /* translucent */
    backdrop-filter:blur(8px);                /* glass effect */
    box-shadow:0 8px 28px rgba(0,0,0,0.25);
    color:var(--color-text-light);
    transition:transform .35s, box-shadow .35s;
}

/* Headings & text */
.journey-card h3{
    font-size:1.9rem;
    margin-bottom:.75rem;
    color:var(--button-accent);
}
.journey-card p{
    font-size:1.5rem;
    line-height:1.6;
    color: var(--color-text);
}

/* Lift the active card slightly (optional) */
.journey-slide.active .journey-card{
    transform:translateY(-6px) scale(1.02);
    box-shadow:0 12px 40px rgba(0,0,0,0.35);
}


.slide-content {
    align-self: center;
    max-width: 520px;
}

.slide-content h3 {
    font-size: 1.8rem;
    margin-bottom: .8rem;
    color: var(--button-accent);
}

.slide-content p {
    line-height: 1.6;
    font-size: 1.4rem;
}

/* nav arrows */
.journey-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    cursor: pointer;
    transition: background .2s;
    transition: box-shadow 0.3s ease;
    border-radius: 50px;
}

.journey-nav:hover {
    background: transparent; /* no color change */
    box-shadow: 0 4px 12px var(--button-accent-hover); /* subtle lift effect */
}

.journey-nav.prev {
    right: 88px;
    color: var(--color-text);
}

.journey-nav.next {
    right: 24px;
    color: var(--color-text);

}

/* tabs */
.journey-tabs {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    border-top: 1px solid #ddd;
    padding-top: .75rem;
}

.journey-tabs li {
    flex: 1;
    text-align: center;
    font-size: 1.2rem;
    cursor: pointer;
    color: #666;
    transition: color .2s;
}

/* 1 ▸ Wrapper stays centered under the track */
.journey-controls {
    margin: 24px 0 16px;       /* space above + below */
    display: flex;
    justify-content: center;   /* center the arrow pair */
    gap: 40px;                 /* space between arrows */
}

/* 2 ▸ Reset the arrows from absolute → static */
.journey-controls .journey-nav {
    position: static;          /* take them out of absolute flow */
    top: auto;
    right: auto;
    transform: none;           /* no vertical shift */
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: none;
    font-size: 1.3rem;
    cursor: pointer;
    transition: background 0.25s, color 0.25s;
}

/* 3 ▸ Hover effect */
.journey-controls .journey-nav:hover {
    color: #fff;
}

/* 4 ▸ Optional: shrink the horizontal scroll padding
        so arrows don’t overlap on very small screens */
@media (max-width: 600px) {
    .journey-track { padding: 20px; }
    .journey-controls { gap: 24px; }
}

.journey-tabs li.active {
    color: var(--button-accent);
    font-weight: 600;
}

.journey-tabs li:hover {
    color: #000;
}

/* ─── Responsive styles for #journey slider ─────────────── */

/* Tablets: 641 – 1024 px */
@media (max-width: 1024px) {

    /* Title a bit smaller */
    .journey-title{
        margin-bottom: 3rem;
    }

    /* Narrower cards & softer padding */
    .journey-slide{
        padding: 3rem 2rem;
    }
    .journey-card{
        max-width: 460px;
        padding: 2rem 1.5rem;
    }
    .journey-card h3{font-size: 1.6rem;}
    .journey-card p{font-size: 1.25rem;}

    /* Tabs wrap and center */
    .journey-tabs{
        overflow-x: auto;
        white-space: nowrap;
        border-top: none;
        padding-top: 0;
        margin-top: 1.5rem;
        gap: .75rem;
        justify-content: flex-start;
        padding-left: 0;
    }
    .journey-tabs li{
        display: inline-block;
        flex: none;
        font-size: 1.1rem;
        padding: .25rem .5rem;
    }
}

/* Phones: ≤ 640 px */
@media (max-width: 640px) {

    .journey-title{
        margin-bottom: 2.5rem;
    }

    /* Stack slides tighter */
    .journey-slide{
        padding: 2.5rem 1rem;
    }
    .journey-card{
        max-width: 100%;
        padding: 1.75rem 1.25rem;
    }
    .journey-card h3{font-size: 1.4rem;}
    .journey-card p{font-size: 1.05rem;}

    /* Arrows: shrink & move lower */
    .journey-nav{
        width: 36px;
        height: 36px;
        font-size: 1rem;
        top: 65%;               /* nudge below the card */
    }
    .journey-nav.prev{ right: 72px; }
    .journey-nav.next{ right: 24px; }

    /* Tabs: horizontal scroll (single row) */
    .journey-tabs{
        overflow-x: auto;
        white-space: nowrap;
        border-top: none;
        padding-top: 0;
        margin-top: 1.5rem;
        gap: .75rem;
        justify-content: flex-start;
        padding-left: 0;
    }
    .journey-tabs li{
        display: inline-block;
        flex: none;
        font-size: .95rem;
        padding: .25rem .5rem;
    }
}


.about-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
}

/* Headline */
.about-wrapper h2 {
    font-size: 4rem;
    margin-bottom: 2rem;

    font-weight: 500;
}

.large{
    font-size: 4rem;
    margin-bottom: 2rem;

    font-weight: 700;
}

/* Paragraphs */
.about-wrapper p {
    font-size: 1.5rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}






.contact-inner {
    display: grid;
    grid-template-columns:minmax(0, 400px) 1fr; /* info | form */
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

/* ─── Contact info heading + lead ───────────────────────────── */
.contact-info small {
    text-transform: uppercase;
    font-size: 2rem;
    letter-spacing: 1.6px;
    font-weight: 600;
    color: var(--button-accent);
    display: block;
    margin-bottom: .65rem;
}

.contact-info .lead {
    font-size: 1.3rem;
    line-height: 1.55;
    margin-bottom: 1.75rem;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-list li {
    font-size: 1rem;
    line-height: 1.6;
}

.contact-list strong {
    display: block;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-primary-light);
}

/* Shared line block for address & phone */
.contact-list .line {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.3rem;
}

.contact-list .line i {
    color: var(--button-accent);
    font-size: 1rem;
    line-height: 1.4;
    padding-top: 0.15rem; /* aligns icon nicely with first text line */
    width: 1rem;
    text-align: center;
}

.contact-list a {
    color: var(--color-primary-light);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
}

.contact-list a:hover {
    text-decoration: underline;
}

/* Email block */
.email {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    margin-top: 1.25rem;
}

.email i {
    color: var(--button-accent);
}

.email a {
    color: var(--color-text);
    text-decoration: none;
}

.email a:hover {
    text-decoration: underline;
}


/* Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-form label {
    font-weight: 600;
    font-size: .9rem;
}

.contact-form input,
.contact-form textarea {
    padding: 14px 18px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px rgba(0, 144, 96, .15);
}

/* reuse primary button */
.contact-form .btn-primary {
    align-self: flex-start;
    padding: .9rem 2.4rem;
}



/* Sort tabs (reuse gradient) */
.sort-tabs{
    display:flex; justify-content:center; gap:1.5rem; margin:2rem 0 3rem;
}
.sort-tabs a{
    padding:.4rem 1rem; font-weight:600; border-radius:40px;
    background:linear-gradient(90deg,#be2c3c,#3f5fbf);
    -webkit-background-clip:text; -webkit-text-fill-color:transparent;
    transition:opacity .25s;
}
.sort-tabs a:hover{ opacity:.75; }
.sort-tabs a.active{
    background:none; color:var(--button-accent); border:2px solid var(--button-accent);
}





/* ——— mobile stack ——— */
@media (max-width: 820px) {
    .contact-inner {
        grid-template-columns:1fr;
        gap: 50px;
    }

    .contact-form .btn-primary {
        align-self: stretch;
        text-align: center;
    }
}

.mpd-footer {
    background: linear-gradient(
            to right,
            rgba(63, 95, 191, 0.5), /* --color-primary-light */ rgba(227, 38, 54, 0.5) /* --button-accent */
    );
    color: #ffffff;
    padding: 2rem 1rem 1rem 1rem;
    font-size: 0.95rem;
    border-top: 1px solid var(--color-border);
}

.mpd-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    text-align: center;
}

.footer-col {
    flex: 1 1 300px;
    font-size: 1.3rem;
}

.contact-col a,
.info-col a {
    color: var(--primary);
    text-decoration: none;
    display: block;
    margin: 2px 0;
}

.contact-col i,
.info-col i {
    color: var(--button-accent-hover);

}

.business-name {
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
}

.mpd-social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.mpd-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--color-primary-light);
    font-size: 18px;
    transition: all 0.3s ease;
}

.mpd-social-icons a:hover {
    border-color: var(--primary);
    color: var(--primary);
}




.features-light {
    background: #f9f9f9;
    color: var(--primary);
    margin: 0;
}

.features-light .feature p {
    color: #333;
}

.team-photos {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.team-photos img {
    width: 250px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

/*SERVICES*/

.hero-section.services-hero {
    min-height: 45vh; /* slightly shorter than homepage, but taller than about */
    background: url('/wp-content/uploads/2025/04/image4.jpeg') center center / cover no-repeat;
}

.project-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.project-card {
    text-decoration: none;
    color: inherit;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.project-thumb img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.project-info {
    padding: 1rem;
}

.project-info h3 {
    margin: 0 0 0.5rem;
    font-size: 1.25rem;
}

.project-info p {
    margin: 0;
    color: #555;
}

.btn-danger {
    background-color: #d9534f;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.btn-danger:hover {
    background-color: #c9302c;
}

/* Hero */


.contact-hero .hero-overlay {
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.contact-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

.contact-clean-section {
    padding-top: 5rem;
    background: var(--white);
    color: var(--primary);
    margin-bottom: 0;
    min-height: calc(100vh - 600px); /* adjust 300px based on your header/footer height */

}

.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form-block h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.clean-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.clean-contact-form input,
.clean-contact-form textarea {
    padding: 1rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    background: #f9f9f9;
}

.clean-contact-form textarea {
    resize: vertical;
    min-height: 160px;
}

.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.info-box {
    display: flex;
    flex-direction: column;
}

.info-box h3 {
    margin: 0.5rem 0;
    font-size: 1.2rem;
    font-weight: 700;
}

.icon {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-clean-section {
        padding: 3rem 1.5rem;
    }

    .contact-form-block,
    .contact-info-block {
        padding: 0 1rem;
    }

    .clean-contact-form input,
    .clean-contact-form textarea {
        font-size: 1rem;
    }

    .contact-form-block h2 {
        font-size: 1.5rem;
    }

    .info-box h3 {
        font-size: 1.1rem;
    }

    .icon {
        font-size: 1.3rem;
    }
}

/* ─── Tweak filter layout to horizontal ─── */
.shop-filters{
    flex-direction:row;        /* already default, but explicit */
    gap:3rem;                  /* wider separation between the two controls */
}

/* put the label text and the <select> inline */
.shop-filters label{
    flex-direction:row;        /* <span> text | <select> */
    align-items:center;
    gap:.75rem;
}

/* mobile: fall back to vertical so nothing feels cramped */
@media (max-width:480px){
    .shop-filters{
        gap:1.25rem;
    }
    .shop-filters label{
        flex-direction:column;
    }
}

/* ─── Single Firework Layout ─────────────────────────────── */

/* Outer wrapper */
.firework-single{
    padding:80px 0 60px;          /* roomy top/bottom spacing */
}

/* Flex row: image | info */
.hero-flex{
    display:flex;
    flex-wrap:wrap;
    gap:60px;
    align-items:center;
}

/* Featured image */
.hero-img img{
    width:380px;                  /* feel free to tweak */
    max-width:100%;
    border-radius:12px;
    box-shadow:0 6px 14px rgba(0,0,0,.15);
}

/* Text/CTA column */
.hero-info{
    flex:1;
    min-width:260px;
}

.hero-info h1{
    font-size:2rem;
    margin-bottom:.5rem;
    line-height:1.25;
}

/* Center the whole block */

.firework-single .container{
    max-width:880px;     /* keeps it from stretching too wide */
    margin:0 auto;
    padding-top: 100px;
    /* centers the container itself */
}
.related-fireworks .container{
    padding-top: 0;
}

/* Center image + info inside the flex row */
.hero-flex{
    justify-content:center;  /* horizontally center the columns */
    text-align:center;       /* center headlines & buttons */
}

/* Make the text column itself center-aligned */
.hero-info{
    align-items:center;      /* flex children (h1, badge, buttons) */
}

/* ─── Swiper wrapper sizing ─────────────────────────────── */
/* ─── Gallery container ───────────────────────────────────── */
/* Gallery frame stays square */
.firework-gallery{
    width:380px;        /* or any square size you prefer */
    height:380px;
    max-width:100%;
    position:relative;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 6px 14px rgba(0,0,0,.15);
}

/* Kill flex; just let image stretch */
.firework-gallery .swiper-slide{
    width:100% !important;      /* Swiper adds inline width—override */
    height:100% !important;
    display:block !important;   /* no flexbox centring needed        */
    padding:0;
}

/* Image covers the whole square */
.firework-gallery .swiper-slide img{
    width:100%;
    height:100%;
    object-fit:cover;           /* fills box, crops if needed        */
    object-position:center;
    display:block;
}

/* Swiper arrows: vertical-centered on left/right edges */
.firework-gallery .swiper-button-prev,
.firework-gallery .swiper-button-next{
    color: #fff;
    top: 50%;
    width: 44px;
    height: 44px;
    margin-top: -22px;            /* 50% - half height */
    background: rgba(0,0,0,.45);
    border-radius: 50%;
    z-index: 10;
}

.firework-gallery .swiper-button-prev{ left: 8px; }
.firework-gallery .swiper-button-next{ right: 8px; }

.firework-gallery .swiper-button-prev:after,
.firework-gallery .swiper-button-next:after{
    font-size: 18px;              /* icon size */
}
.service-card .firework-price,
.firework-price {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0.4rem 0 1rem;
    color: #27ae60;
}

.firework-price {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0.4rem 0 1rem;
    color: #27ae60; /* rich green (feel free to tweak) */
}

/* Center image within each slide 100 % of the time */
/* Always treat each slide as a flexbox container */
.firework-gallery .swiper-slide{
    display:flex !important;          /* beat Swiper’s inline styles   */
    justify-content:center !important;
    align-items:center !important;
}

/* Make the image itself behave */
.firework-gallery .swiper-slide img{
    display:block;                    /* kill whitespace bugs          */
    max-width:100%;
    height:auto;
    margin:auto;                      /* safety-net centring           */
}

/* ─── Responsiveness ─────────────────────────────────────── */
@media(max-width:700px){
    .hero-flex{
        flex-direction:column;
        text-align:center;
    }
    .hero-img img{
        width:100%;
        max-width:340px;
    }
    .hero-info{
        padding:0;
    }
}


.dark {
    padding: 60px 40px 60px 40px;
    background: rgba(220, 220, 220, 0.1);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    border-top: 1px solid var(--color-border);
}

.light {
    padding: 60px 40px 60px 40px;

    background: rgba(247, 247, 247, 0.11);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    border-top: 1px solid var(--color-border);

}

.padding-top{
    padding-top: 40px;
}

.hours {
    margin-top: 0;
    font-size: 0.95rem;
    line-height: 1.4;
    color: var(--color-text);
    font-weight: 500;
    white-space: pre-line; /* supports line breaks */
}

.stand-section {
    display: flex;
    flex-wrap: nowrap;
    gap: 2rem;
    justify-content: center;
    padding: 4rem 10%;
}

.stand-feature {
    flex: 1 1 300px;
    max-width: 400px;
    text-align: center;
}

.stand-feature h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.stand-feature p {
    font-size: 1.5rem;
}


.stand-feature img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 1rem;
    filter: brightness(0.8); /* dims slightly */
    transition: filter 0.3s ease;
}

.stand-feature img:hover {
    filter: brightness(1); /* restores on hover */
}

@media (max-width: 768px) {
    .stand-section {
        flex-direction: column;
        padding: 2rem 5%;
    }

    .stand-feature {
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 100%;
    }

    .stand-feature img {
        margin-bottom: 1rem;
    }

    .stand-content {
        text-align: center;
    }
}