@charset "utf-8";
/*
    -------------------------------------------------------------------
        Theme Name: Wingards Market
        Theme URI: https://yourgardencenter.com
        Author: GCSolutions
        Author URI: https://gardencentersolutions.com
        Description: Custom Theme for Wingards Market
        Tags: custom
        Version: 1.0
        Requires at least: 6.0
        Tested up to: 6.6
        Requires PHP: 7.4
    -------------------------------------------------------------------
*/

/* General Imports
-------------------------------------------------------------------*/
@import url('css/bootstrap.css');
@import url('wp-paginate.css');
@import url('fonts/stylesheet.css');
@import url('js/owlcarousel/owl.carousel.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css');
@import url('https://fonts.googleapis.com/css2?family=Cabin:ital,wght@0,400..700;1,400..700&family=Great+Vibes&display=swap');


/* Root
-------------------------------------------------------------------*/
:root {
    --white: #FFF;
    --black: #232126;
    --brand-darker: #3d0e48;
    --brand-dark: #601772;
    --brand-medium: #89b0b8;
    --brand-light: #f0f5e0;
    --brand-bright: #2fc9eb;
    --brand-accent: #9bb92d;
    --brand-accent-alt: #455414;
    --ff-accent: "Great Vibes", cursive;
    --ff-headings: "Georgia", serif;
    --ff-default: "Cabin", sans-serif;
    --light-tan: #fcf6ea;
    --light-grey: #dedfd0;
    --medium-grey: #dedede;
    --dark-grey: #4c4854;

}

/* Backgrounds
-------------------------------------------------------------------*/
.bg-white {background-color: var(--white) !important;}
.bg-black, .bg-brand-black {background-color: var(--black);}
.bg-brand-dark {background-color: var(--brand-dark);}
.bg-brand-darker {background-color: var(--brand-darker) !important;}
.bg-brand-medium {background-color: var(--brand-medium);}
.bg-brand-light {background-color: var(--brand-light);}
.bg-brand-bright {background-color: var(--brand-bright);}
.bg-brand-accent {background-color: var(--brand-accent);}
.bg-brand-accent-alt {background-color: var(--brand-accent-alt);}
.bg-light-grey {background-color: var(--light-grey);}
.bg-medium-grey {background-color: var(--medium-grey);}
.bg-dark-grey {background-color: var(--dark-grey);}
.bg-testimonials {background-size: cover; background-repeat: no-repeat; background-position: center center;}
/* IBM-friendly invisible background fix */
.bg-special {
    background-color: #e0e5d1 !important; /* matches your green tone */
    position: relative;
    z-index: 0;
}

.bg-special::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('/wp-content/themes/wingards/images/bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;  /* image sits *behind* content but above bg-color */
    pointer-events: none;
}

/* Text Colors
-------------------------------------------------------------------*/
.text-white, .white {color: var(--white);}
.text-black {color: var(--black);}
.text-brand-dark {color: var(--brand-dark);}
.text-brand-medium {color: var(--brand-medium);}
.text-brand-light {color: var(--brand-light);}
.text-brand-bright {color: var(--brand-bright);}
.text-brand-accent, .text-accent {color: var(--brand-accent);}
.text-brand-accent-alt {color: var(--brand-accent-alt);}
.text-light-grey { color: var(--light-grey);}
.text-medium-grey {color: var(--medium-grey);}
.text-dark-grey {color: var(--dark-grey);}

.page-sections-formatting.bg-brand-dark,
.page-sections-formatting.bg-brand-bright {color: var(--white) !important;}


/* HTML
-------------------------------------------------------------------*/
html {
    font-size: 62.5%;
}

.skip-link {
    position: absolute;
    top: 0;
    left: -9999px;
    background: #ffffff;
    color: #000000;
    padding: 10px 15px;
    z-index: 10000;
    font-size: 16px;
    text-decoration: none;
}

.skip-link:focus {
    left: 10px;
    top: 10px;
}

/* WCAG 1.4.1 - Non-color indicators */

/* Required field indicator */
.required:after {
    content: " *";
    font-weight: bold;
    color: inherit; /* not dependent on color */
}

/* Error state indicator */
.error:before {
    content: "⚠ ";
    font-weight: bold;
}

.error {
    border-left: 4px solid currentColor;
    padding-left: 8px;
}

/* Success state indicator */
.success:before {
    content: "✓ ";
    font-weight: bold;
}

.success {
    border-left: 4px solid currentColor;
    padding-left: 8px;
}

.visually-hidden { 
    border: 0 !important; 
    clip: rect(1px,1px,1px,1px); 
    height: 1px !important; 
    margin: -1px !important; 
    overflow: hidden !important; 
    padding: 0 !important; 
    position: absolute !important; 
    width: 1px !important; 
    white-space: nowrap !important;
}

a.icon-pair:focus-visible,
button.search-toggle:focus-visible {
    outline: 3px solid #fff !important;
    outline-offset: 3px !important;
}

/* Body
-------------------------------------------------------------------*/
body {
    background: var(--white);
    color: var(--black);
    font-family: var(--ff-default);
    font-size: 1.75rem;
    font-weight: 400;
    line-height: 1.5;
    overflow-x: hidden;
}

    @media screen and (max-width: 991px) {
        body {
            padding-top: 24px;
        }
    }

/* Formatting
-------------------------------------------------------------------*/
p {
    margin: 1em 0;
}

.container-fluid.reduced {
    width: 100%;
    max-width: 85%;
    margin: 0 auto;
}

.container-reduced {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

    .container-reduced hr {
        width: 100%;
        max-width: 50%;
    }


h1, h2, h3 {
    font-family: var(--ff-headings);
    line-height: 1;
    padding: 0;
}

h4 {
    font-family: var(--ff-headings);
    font-size: 1.8rem;
    line-height: 1.5;
}

h1 {
    font-size: 5rem;
    line-height: 1;
}

    @media screen and (max-width: 1199px) {
        h1 {
            font-size: 4.6rem;
        }
    }

    @media screen and (max-width: 991px) {
        h1 {
            font-size: 4.0rem;
        }
    }

h2 {
    font-size: 4rem;
    margin: .5em 0 0 0;
}

    @media screen and (max-width: 1199px) {
        h2 {
            font-size: 2.8rem;
        }
    }

    @media screen and (max-width: 991px) {
        h2 {
            font-size: 2.4rem;
        }
    }


h2.accent {
    position: relative; 
    display: inline-block; 
    margin: 0 15px; 
    padding: 0 15px; 
    font-family: var(--ff-default);
    font-weight: 500;
}

h2.accent::before,
h2.accent::after {
    content: ''; 
    position: absolute; 
    width: 150px; 
    height: 1px; 
    background-color: var(--brand-dark); 
}

h2.accent::before {
    left: -160px; 
    top: 50%; 
    transform: translateY(-50%); 
}

h2.accent::after {
    right: -160px; 
    top: 50%; 
    transform: translateY(-50%); 
}

article.posts .content h2 {
    margin-top: 1em;
}

h3 {
    font-size: 2.6rem;
    margin: 1em 0 0 0;
}
h3.accent-text{
    font-family:var(--ff-accent) !important;
    color:var(--brand-accent-alt);
    font-size:35px;
}
.p-10{
    padding: 8rem !important;
}

/* Headings */

.section-eyebrow {
    font-size: 2rem;
    color: var(--brand-accent-alt);
}

.section-title {
    font-family: var(--ff-headings);
    line-height: 1.1;
    font-size:3em;
}

.section-intro {
    color: var(--dark-grey);
}

/*Form*/

.form-control, .form-select {
    border: 1px solid var(--dark-grey);
    font-weight: 300;
    background-color: var(--white);
    color: var(--dark-grey);
    font-size: 1.8rem;
    border-radius: 0;
    padding: .5em;
}

/*Buttons*/

.btn-custom, a.btn-custom:link, a.btn-custom:focus, a.btn-custom:active, a.btn-custom:visited {
    background: var(--brand-dark);
    border-color: var(--brand-dark);
    color: var(--white);
    font-size: 1.8rem;
    padding: .5em 1em;
    border-radius: 0;
}

.btn-custom:hover, a.btn-custom:hover {
    color: var(--white);
    background: var(--brand-accent);
    border-color: var(--brand-accent);
}

.btn-tabs, a.btn-tabs:link, a.btn-tabs:focus, a.btn-tabs:active, a.btn-tabs:visited {
    background: var(--brand-dark);
    border-color: var(--brand-dark);
    color: var(--white);
    font-size: 1.6rem;
    padding: .5em .75em;
    border-radius: 0;
    margin: 0 .15em;
}

.btn-tabs:hover, a.btn-tabs:hover, .btn-tabs.active {
    color: var(--white);
    background: var(--brand-accent);
    border-color: var(--brand-accent);
}

.btn-learnmore, a.btn-learnmore:link, a.btn-learnmore:focus, a.btn-learnmore:active, a.btn-learnmore:visited {
    background: var(--white);
    border-color: var(--brand-dark);
    color: var(--brand-dark);
    font-size: 1.3rem;
    text-transform: uppercase;
    padding: .5em 1em;
    border-radius: 0;
    font-weight: 700;
    margin: 0 auto;
}

.btn-learnmore:hover, a.btn-learnmore:hover {
    color: var(--white);
    background: var(--brand-accent);
    border-color: var(--brand-accent);
}

.btn-search, a.btn-search:link, a.btn-search:focus, a.btn-search:active, a.btn-search:visited {
    background: var(--brand-accent);
    border-color: var(--brand-accent);
    color: var(--white);
    font-size: 1.8rem;
    padding: .5em 1em;
    border-radius: 0;
}

.btn-search:hover, a.btn-search:hover {
    color: var(--white);
    background: var(--brand-accent);
    border-color: var(--brand-accent);
}

a:link, a:visited, a:active, a:hover {
    color: var(--brand-dark);
    text-decoration: none;
}
a:focus-visible,
button:focus-visible {
    outline: 1px solid var(--brand-dark);
    outline-offset: 1px;
}

a:hover {
    color: var(--brand-accent);
}

a.dark:link, a.dark:visited, a.dark:active, a.dark:hover {
    color: var(--black);
}

strong, b, .bold, .strong {
    font-weight: 700;
}

.text-sm {
    font-size: 1.2rem;
    overflow-wrap: break-word;
}

.fs-reduced {
    font-size: 1.4rem;
    font-weight: 500;
}

.fs-sm {
    font-size: 1.3rem;
}

.smaller {
    font-size: 1.4rem;
}

.ff-default {
    font-family: var(--ff-default);
    font-weight: 700;
}

.intro-copy p {
    font-size: 2.8rem;
    line-height: 1.5;
    font-family: var(--ff-accent) !important;
    font-weight: 400;
    font-style: italic;
}

    @media screen and (max-width: 1199px) {
        .intro-copy p {
            font-size: 2.6rem;
        }
    }

    @media screen and (max-width: 991px) {
        .intro-copy p {
            font-size: 2.4rem;
        }
    }

/* Images
-------------------------------------------------------------------*/
img.alignright {
    float: right;
    margin-left: 1em;
    margin-bottom: 1em;
}

img.alignleft {
    float: left;
    margin-right: 1em;
    margin-bottom: 1em;
}

.image-rounded{
    border-radius: 1.75rem;
}

.img-thegallery {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: cover;
}

.img-cover {
    width: 100%;
    height: auto;
}

@keyframes effectShine {
    0% {
        left: -75%;
    }

    100% {
        left: 125%;
    }
}

.image-fixed-height {
    height: 500px !important;
    padding: 0;
    overflow: hidden;
    position: relative;
}

.image-fixed-height img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.image-gallery,
.image-gallery-small,
.image-figure,
.blog-thumbnail,
.image-container,
.image-rounded,
.event-thumbnail,
.image-gallery-products {
    position: relative;
    overflow: hidden;
    margin: 0;
}

.image-gallery:hover::before,
.image-gallery-small:hover::before,
.image-figure:hover::before,
.blog-thumbnail:hover::before,
.image-container:hover::before,
.image-rounded:hover::before,
.event-thumbnail:hover::before,
.image-gallery-products:hover::before {
    content: "";
    pointer-events: none;
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
    transform: skew(-25deg);
    animation: effectShine 0.75s;
}

.image-gallery img,
.image-gallery-small img,
.image-gallery-products img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.image-gallery .zoom-icon,
.image-gallery-small .zoom-icon,
.image-container .zoom-icon,
.image-gallery-products .zoom-icon {
    position: absolute;
    bottom: 10px;
    right: 10px;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.6);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.image-gallery:hover .zoom-icon,
.image-gallery-small:hover .zoom-icon,
.image-gallery-products:hover .zoom-icon {
    opacity: 1;
    transform: scale(1);
}

.image-gallery:hover img,
.image-gallery-small:hover img,
.image-gallery-products:hover img {
    transform: scale(1.1);
}

.image-figure {
    height: 400px;
}

.image-figure img {
    height: 100%;
    object-fit: cover;
}

.blog-thumbnail {
    width: 100%;
    height: 300px;
}

.blog-thumbnail img {
    width: 100% !important;
    height: 300px;
    object-fit: cover;
}

.event-thumbnail {
    width: 100%;
    height: 550px;
}

.event-thumbnail img {
    width: 100%;
    height: 550px;
    object-fit: cover;
}

.image-gallery {
    height: 250px;
}

.image-gallery-small {
    height: 150px;
}

.image-gallery-products {
    height: 400px;
}

/* Social Icons
-------------------------------------------------------------------*/
.social-icons {
    display: inline-block;
    width: 39px;
    height: 39px;
    background-position: top center;
    background-repeat: no-repeat;
}
.social-icons:hover {
    background-position: bottom center;
}

.social-icons.facebook {background-image: url('images/social_facebook.png');}
.social-icons.twitterx {background-image: url('images/social_twitterx.png');}
.social-icons.tiktok {background-image: url('images/social_tiktok.png');}
.social-icons.instagram {background-image: url('images/social_instagram.png');}

/* Top Bar
-------------------------------------------------------------------*/
.top-bar {
    font-size: 1.3rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--white);
}

.top-bar a {
    color: var(--white) !important;
}


/* Main Header
-------------------------------------------------------------------*/
.main-header {
    line-height: 1.75;
}

.main-header h2 {
    font-weight: normal;
    font-size: 2.4rem;
    margin: 0 0 .35em 0;
    padding: 0;
    font-family: var(--ff-accent);
}


    @media screen and (max-width: 991px) {
        .socials-mobile {
            text-align: center;
            font-size: 2rem;
        }
        .socials-mobile a {
            color: var(--white);
            text-decoration: none;
        }
    }

.main-logo img {
    width: auto;
    max-width: 100%;
    height: 100%;
    max-height: 120px;
}

/* Icon Row Layout */
.icon-row {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 40px;
}

/* Each icon + text pair */
.icon-pair {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-right: 25px;
    border-right: 1px solid var(--light-grey);
}

/* Remove border on last icon pair (Gift Cards) */
.icon-pair:last-of-type {
    border-right: none;
    padding-right: 0;
}

.icon-pair .icon-text {
    white-space: nowrap;
}

/* Purple circle icons */
.icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--brand-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
}

/* Text next to icons */
.icon-text {
    text-align: left;
    line-height: 1.2;
    font-size: 15px;
    color: var(--black);
}
.icon-text div{
    color: var(--dark-grey);
}

/* Search icon */
.search-icon i {
    font-size: 22px;
    padding-left: 10px;
    cursor: pointer;
    color: var(--black);
}

/* CONTAINER BORDER (not full width) */
.nav-border-container {
    border-top: 1px solid var(--light-grey);
    padding-top: 12px;
    padding-bottom: 12px;
}

/* MAIN NAV LAYOUT */
#desktop-navigation .navbar-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

/* TOP LEVEL ITEMS */
#desktop-navigation .navbar-nav > li {
    position: relative;
}

#desktop-navigation .navbar-nav > li > a {
    display: block;
    padding: 8px 0;
    font-size: 17px;
    color: var(--black);
    text-decoration: none;
    white-space: nowrap;
}

/* simple hover color if you want */
#desktop-navigation .navbar-nav > li > a:hover {
    color: var(--brand-accent-alt);
}

/* DROPDOWNS */
#desktop-navigation .navbar-nav li .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    padding: 0;
    margin: 0;
    list-style: none;
    background: #fff;
    border: 1px solid var(--light-grey);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    z-index: 999;
}

/* show dropdown on hover */
#desktop-navigation .navbar-nav li:hover > .sub-menu {
    display: block;
}

/* dropdown links */
#desktop-navigation .navbar-nav .sub-menu li a {
    display: block;
    padding: 15px;
    font-size: 15px;
    color: var(--black);
    text-decoration: none;
    white-space: nowrap;
}

#desktop-navigation .navbar-nav .sub-menu li a:hover {
    background: var(--light-grey);
    color: var(--brand-accent-alt);
}

/* Caret for dropdown parents */
#desktop-navigation .navbar-nav > li.menu-item-has-children > a {
    position: relative;
    padding-right: 18px; /* space for caret */
}

#desktop-navigation .navbar-nav > li.menu-item-has-children > a::after {
    content: "\f078"; /* Font Awesome caret-down */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    color: var(--black);
    opacity: 0.8;
    transition: transform 0.2s ease;
}

/* Rotate caret on hover */
#desktop-navigation .navbar-nav > li.menu-item-has-children:hover > a::after {
    transform: translateY(-50%) rotate(180deg);
    opacity: 1;
}

/* SEARCH ICON (unchanged) */
.search-icon {
    position: relative;
    z-index: 5000;
}

.search-icon .search-toggle {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    color: var(--black);
    font-size: 18px;
}

/* GLOBAL DROPDOWN (attached to <body>) */
.search-dropdown-global {
    position: absolute;
    width: 260px;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--light-grey);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: none;
    z-index: 9999999;
}

/* OPEN STATE */
.search-dropdown-global.open {
    display: block;
}

/* Form inside dropdown */
.search-dropdown-global form {
    display: flex;
    gap: 0px;
    align-items: center;
}

.search-dropdown-global input[type="search"] {
    flex: 1;
    padding: 6px 10px;
    border: 1px solid var(--light-grey);
    border-radius: 4px 0 0 4px;
}

.search-dropdown-global button[type="submit"] {
    background: var(--brand-accent-alt);
    border: 1px solid var(--brand-accent-alt);
    color: #fff;
    padding: 6px 10px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

/* SEARCH ICON IN HEADER */
.search-icon {
    position: relative;
    z-index: 5000;
}

.search-icon .search-toggle {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    color: var(--black);
    font-size: 18px;
}

/* GLOBAL DROPDOWN (appended to <body>) */
.search-dropdown-global {
    position: absolute;
    width: 260px;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--light-grey);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: none;              /* HIDDEN BY DEFAULT */
    z-index: 9999999;
}

/* Open state */
.search-dropdown-global.open {
    display: block;
}

/* Form styling */
input:focus,
input:focus-visible {
    outline: 1px solid var(--light-grey) !important;
    outline-offset: 0px;
    box-shadow: none !important;
    border-color: var(--light-grey);
}

input:active {
    outline: none;
    box-shadow: none;
}

button:focus-visible,
.search-toggle:focus-visible {
    outline: 1px solid var(--brand-accent-alt);
    outline-offset: 1px;
}

.search-dropdown-global form {
    display: flex;
    align-items: center;
}

.search-dropdown-global input[type="search"] {
    flex: 1;
    padding: 6px 10px;
    border: 1px solid var(--light-grey);
    border-radius: 4px 0 0 4px;
}

/* Mobile Menu
-------------------------------------------------------------------*/
img.mobile-logo {
    height: 60px;
}

.offcanvas {
    position: fixed;
    bottom: 0;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--white);
    visibility: hidden;
    background-color: var(--brand-dark);
    background-clip: padding-box;
    outline: 0;
    transition: transform 0.3s ease-in-out;
}

/* ===============================
   MOBILE MENU - OFFCANVAS
   =============================== */

/* Base list reset */
.offcanvas .mobile-menu,
.offcanvas .mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 0 1em;
}

/* Top-level items */
.offcanvas .mobile-menu > li {
    padding: .5em 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.offcanvas .mobile-menu > li:last-child {
    border-bottom: none;
}

/* Mobile menu links */
.offcanvas .mobile-menu a {
    color: var(--white);
    text-decoration: none;
    display: block;
    padding: .25em 0;
    font-size: 1.3rem;
    font-weight: 600;
}

/* ===============================
   DROPDOWN INDENTATION
   =============================== */
.offcanvas .mobile-menu .sub-menu {
    padding-left: 1.25em;
    font-size: 1.2rem;
    margin-top: .25em;

    /* Hide submenus by default */
    display: none;
}

/* ===============================
   CARETS
   =============================== */

/* Parent item */
.offcanvas .mobile-menu > li.menu-item-has-children > a {
    position: relative;
    padding-right: 22px;
}

/* Down caret */
.offcanvas .mobile-menu > li.menu-item-has-children > a::after {
    content: "\f078"; /* Font Awesome caret-down */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.85rem;
    opacity: 0.9;
}

/* When submenu is open (class added by JS) */
.offcanvas .mobile-menu > li.open > a::after {
    transform: translateY(-50%) rotate(180deg);
}

/* When submenu is open */
.offcanvas .mobile-menu > li.open > .sub-menu {
    display: block;
}


.navbar-content {
    padding: 0 1em;
    font-size: 1.5rem;
    text-transform: none;
}

.mobile-menu .hidden-mobile {
    display: none;
    visibility: none;
}

/* Intro
-------------------------------------------------------------------*/
#intro h2 {
    font-size: 3.2rem;
    font-style: italic;
    text-align: center;
    font-weight: normal;
    line-height: 1.4;
    font-family: var(--ff-accent);
}

    @media screen and (max-width: 991px) {
        #intro h2 {
            font-size: 2.8rem;
        }
    }

    @media screen and (max-width: 768px) {
        #intro h2 {
            font-size: 2.5rem;
        }
    }

/* ========================================
   HERO SLIDER STYLES
   ======================================== */

#hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hs-wrapper {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}

.hs-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease-in-out;
}

.hs-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

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

.hs-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}

.hs-cursive {
  font-family: var(--ff-accent);
  font-size: 9rem;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hs-content h3 {
  font-family: var(--ff-headings);
  font-size: 5rem;
  margin: -20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hs-content p {
  font-family: var(--ff-default);
  font-size: 2rem;
  margin: 3rem 0 2rem 0;
  max-width: 500px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
}

a.hs-btn {
  display: inline-block;
  padding: 12px 40px;
  background: var(--brand-dark);
  color: var(--white);
  text-decoration: none;
  font-family: var(--ff-default);
  font-size: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}


.hs-btn:hover {
  background: #8b3cb3;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

/* Arrow Navigation */
.hs-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  color: #333;
  font-size: 2rem;
  width: 50px;
  height: 50px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hs-wrapper:hover .hs-arrow {
  opacity: 1;
  visibility: visible;
}

.hs-arrow:hover {
  background: white;
  color: #6b2c91;
  transform: translateY(-50%) scale(1.1);
}

.hs-prev {
  left: 20px;
}

.hs-next {
  right: 20px;
}

/* Slide Tabs Navigation */
.hs-tabs {
  display: flex;
  background: var(--brand-light);
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}

.hs-tab {
  flex: 1;
  padding: 20px 15px;
  text-align: center;
  font-family: var(--ff-default);
  font-size: 1.5rem;
  color: var(--black);
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-right: 1px solid var(--light-grey);
}

.hs-tab:hover {
  background: var(--brand-light);
}

.hs-tab.active {
  color: var(--brand-accent-alt);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hs-wrapper {
    height: 450px;
  }

  .hs-cursive {
    font-size: 6rem;
  }

.hs-content h3 {
    font-size: 3rem;
    margin: 0px;
}

  .hs-content p {
    font-size: 1.5rem;
    margin: 1rem 0 2rem 0;
  }

  .hs-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }

  .hs-prev {
    left: 10px;
  }

  .hs-next {
    right: 10px;
  }

  .hs-tab {
    font-size: 0.8rem;
    padding: 15px 10px;
  }
}

@media (max-width: 576px) {
  .hs-wrapper {
    height: 400px;
  }
.hs-content p {
    font-size: 1.5rem;
    margin: 1rem 0 2rem 0;
    max-width: 300px;
    }
  .hs-tabs {
    flex-direction: column;
  }

  .hs-tab {
    width: 100%;
  }
  .hs-tab {
        font-size: 1.25rem;
        padding: 15px 10px;
    }
}

/* Main Link Cards */
.ml-card {
    background:  var(--light-tan);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 3px 20px rgba(0,0,0,0.12);
    position: relative;
}

/* Top image */
.ml-image-wrapper {
    margin: 0;
    height: 300px !important;
}

.ml-top-image {
    width: 100%;
    height: 300px !important;
    object-fit: cover;
    display: block;
}

/* Icon circle */
.ml-icon-circle {
    width: 100px;
    height: 100px;
    background: var(--light-tan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -70px auto 0px;
    position: relative;
    z-index: 5;
}

.ml-icon-circle img {
    width: 55px;
    height: auto;
}

/* Card body */
.ml-card-body {
    padding: 20px;
}

.ml-title {
    text-transform: uppercase;
    margin-bottom: 10px;
    color: var(--black);
    font-size: 1.75rem;
}

.ml-text {
    color: var(--dark-grey);
}

/* Button */
.ml-btn {
    display: inline-block;
    background: #5c1a7d;
    color: #fff;
    padding: 10px 26px;
    border-radius: 6px;
    text-decoration: none;
    margin-top: 15px;
    font-weight: 600;
    transition: 0.3s ease;
}

.ml-btn:hover {
    background: #7c2daf;
    color: #fff;
}

/* About Wingard's Intro Section
--------------------------------------------------*/
#about-wingards-intro {
    position: relative;
}

/* Checklist */
.about-checklist-item {
    font-size: 1rem;
}

.about-check-icon-wrap {
    flex: 0 0 auto;
    margin-top: .2rem;
}

.about-check-icon {
    width: 20px;
    height: 20px;
    display: block;
}
.list-unstyled{
    color: var(--dark-grey);
}

/* Image collage */
.about-photo-collage {
    position: relative;
    max-width: 560px;
}

.about-photo-main,
.about-photo-secondary,
.about-photo-tertiary {
    border-radius: 1.75rem;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
    border: 7px solid var(--white)
}

/* large greenhouse image */
.about-photo-main img {
    width: 100%;
    height: auto;
    display: block;
}

/* overlapping images */
.about-photo-secondary {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    width: 52%;
    z-index: 9;
}

.about-photo-tertiary {
    position: absolute;
    bottom: -3rem;
    right: -1.5rem;
    width: 45%;
}

/* Responsive tweaks */
@media (max-width: 991px) {
    .about-photo-collage {
        margin: 2.5rem auto 0;
    }

    .about-photo-secondary,
    .about-photo-tertiary {
        position: relative;
        bottom: 0;
        left: -82px;
        right: auto;
        width: 70%;
        margin-top: -25rem;
    }

    .about-photo-tertiary {
        margin-left: auto;
    }
}
@media (max-width: 768px) {
#about-wingards-intro {
    text-align: center;
}
#about-wingards-intro figure.about-img{
    margin:0 auto 20px !important;
}
.about-photo-secondary, .about-photo-tertiary {
        left: 70px;
 }
}

/*Plant Guide*/
.planting-step img{
    width:150px;
}
.planting-subtitle  {
    font-size: 1.5rem;
    color: var(--brand-accent-alt);
}

/*Video*/
/* Video – keep width responsive, leave height alone */
.wp-video,
.wp-video-shortcode {
    width: 100% !important;
    max-width: 100% !important;
}

/* optional: only control width, no height override */
.wp-video-shortcode video {
    width: 100% !important;
    max-width: 100% !important;
    /* remove height: auto !important; */
}

.video-link {
    color: var(--brand-dark);
    font-weight: 600;
    text-decoration: underline;
}

#bottom-about a[href$=".mp4"] {
    color: transparent !important;
    font-size: 0 !important;
    line-height: 0 !important;
}

/*Bottom About*/
@media (max-width: 768px) {
  #bottom-about{
      text-align:center;
  }  
}

/* Home Links
-------------------------------------------------------------------*/
.home-boxes {
    text-align: center;
    font-size: 2rem;
    text-transform: uppercase;
    font-weight: normal;
    color: var(--black) !important;
}

.home-boxes img {
    margin-top: 0em;
}

/* Calculators
-------------------------------------------------------------------*/
label.clabel,
span.label {
    font-weight: bold;
    line-height: 1.5;
}

.calculator-wrap {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.bg-calc-accent {
    background: var(--white);
    border: 1px solid var(--brand-medium);
    padding: 1em;
    border-radius: 4px;
}

.bg-calc-accent-two {
    background: #EEE;
    border: 1px solid #AAA;
    padding: 1em;
}

.calcvalue {
    font-size: 28px;
    vertical-align: middle;
}

.btn-calculator,
.btn-calculator:hover {
    color: #FFF;
    background-color: var(--brand-dark);
    border-color: var(--brand-dark);
    font-size: 1.3rem;
    letter-spacing: .5px;
    font-weight: bold;
    padding: 1em 1.5em;
    text-transform: uppercase;
}

.btn-calculator-alt,
.btn-calculator-alt:hover {
    color: var(--black);
    background-color: var(--medium-grey);
    border-color: var(--medium-grey);
    font-size: 1.3rem;
    letter-spacing: .5px;
    font-weight: bold;
    padding: 1em 1.5em;
    text-transform: uppercase;
}

/* Default Pages
-------------------------------------------------------------------*/
/* Overlay for page banners / carousel */
.bg-page-carousel::before,
.bg-page-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45); /* overlay color */
    z-index: 1;
    pointer-events: none;
}

/* Make sure inner content sits above overlay */
.bg-page-carousel .container,
.bg-page-banner .container {
    position: relative;
    z-index: 2;
}

.bg-page-carousel {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative;
    padding: 0;
    z-index: 1;
    text-align: center;
}

.carousel-background-adjustment {
    position: relative;
}

.bg-page-carousel .container {
    z-index: 999999;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    width: 100%;
    transform: translateY(-50%);
}

.bg-page-banner {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative;
    padding: 3em 0;
    z-index: 1;
    text-align: center;
}

.bg-page-banner .container {
    z-index: 15 !important;
}

.bg-page-banner .py-10,
.bg-blog-no-banner .py-10 {
    padding-top: 5em;
    padding-bottom: 5em;
}

.bg-blog-no-banner .py-title {
    padding-top: 3em;
    padding-bottom: 3em;
}

.bg-page-banner h1,
.bg-page-carousel h1 {
    z-index: 10;
    color: var(--white);
    font-size: 6rem;
    padding: .25em .65em;
    font-family: var(--ff-headings);
    display: inline;
    margin: 0;
    text-transform:uppercase;
}

.bg-page-no-banner h1 {
    z-index: 10;
    color: var(--black);
    font-size: 5.5rem;
    text-align: left;
    font-family: var(--ff-accent);
    font-weight: 700;
}

    @media screen and (max-width: 991px) {
        .bg-page-banner .py-10 {
            padding-top: 3em;
            padding-bottom: 3em;
        }

        .bg-page-carousel h1,
        .bg-page-banner h1 {
            font-size: 3rem;
            display: block;
            width: 100%;
            text-align: center;
        }
    }
 
 
/* Plants Page */
.plants-gallery-strip {
    width: 100%;
}

/* shared for both static row and inside slider */
.plants-gallery-row {
    margin: 0;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

/* 7 across on desktop, naturally wraps on smaller viewports */
.plants-gallery-item {
    flex: 0 0 calc(100% / 7);
}

.plants-gallery-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px; /* ★★ THIS ADDS THE GAP YOU WANT ★★ */
    margin: 0;
    padding: 0;
}

.plants-gallery-item {
    flex: 0 0 calc((100% - 60px) / 7); 
    /* 6 gaps × 10px = 60px total */
}

.plants-gallery-item img {
    display: block;
    width: 100%;
    height: auto;
}

.hs-wrapper.plants-gallery-wrapper  {
    height: 230px;
}

/* tweak for smaller screens if you want */
@media (max-width: 991.98px) {
    .plants-gallery-item {
        flex: 0 0 calc(100% / 4);
    }
}

/* PLANTS PAGE — stack images ABOVE content on mobile */
@media (max-width: 767px) {
    .plants-section .row {
        display: flex;
        flex-direction: column-reverse !important;
    }

    .plants-section .row > .col-md-6:first-child.image-fixed-height {
        order: -1;
    }
}

@media (max-width: 575.98px) {
    .plants-gallery-item {
        flex: 0 0 calc(100% / 3);
    }
}

/*about page*/
/* Make the row stretch both columns */
.row.align-items-stretch {
    align-items: stretch !important;
}

/* Background image column */
.bg-col {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    flex: 1;                /* <-- This is the magic */
    min-height: 100%;       /* <-- does nothing without flex */
    height: auto;
    width: 100%;
}

/* Mobile fallback */
@media (max-width: 767px) {
    .bg-col {
        min-height: 350px;
    }
    .about-difference .row,
    .about-helping-gardeners .row {
        display: flex;
        flex-direction: column-reverse; /* Image first, then content */
    }

    /* Do NOT reverse Legacy */
    .about-legacy .row {
        display: flex;
        flex-direction: column; /* Natural order: image first, text second */
    }
}


/* Map Embed
-------------------------------------------------------------------*/
.map-embed p {
    padding: 0;
    margin: 0;
}
.map-embed iframe {
    width: 100%;
    height: 350px;
    margin: 0;
    padding: 0;
}

/* Contact
-------------------------------------------------------------------*/
.contact-hours h3,
.contact-hours h2 {
    font-size: 2rem;
    font-weight: normal;
    margin: 0;
    padding: 0;
}

/* Articles
-------------------------------------------------------------------*/
.bg-article {
    background: var(--light-grey);
}

a.btn-category,
a.btn-category:hover,
a.btn-category:active,
a.btn-category:focus {
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    border-color: var(--brand-dark);
    background-color: var(--brand-dark);
    color: var(--white);
    border-radius: 5px;
    padding: 3px 5px 2px 5px;
}

.article-meta {
    font-size: 1.3rem;
    text-transform: uppercase;
}

.article-title h3 {
    font-size: 2.8rem;
    text-decoration: none;
    font-family: var(--ff-default);
}

.article-title a {
    color: var(--black);
    text-decoration: none;
}

.article-continue .read-more {
    display: inline-block;
    background: var(--brand-medium);
    color: var(--white);
    border: 1px solid var(--brand-medium);
    padding: .5em 1em;
    margin: 0 0 0 auto;
    text-decoration: none;
    font-size: 1.5rem;
}

.article-continue .read-more:hover {
    display: inline-block;
    background: var(--white);
    color: var(--brand-accent);
    border-color: var(--brand-accent);
    padding: .5em 1em;
    margin: 0 0 0 auto;
    text-decoration: none;
    font-size: 1.5rem;
}

.bg-blog-no-banner h1 {
    z-index: 10;
    color: #000;
    font-size: 5rem;
    text-align: center;
}

.sub_content {
    width: 70%;
    float: left;
}

.img_content {
    width: 30%;
    float: right;
}

.img_content img {
    width: auto;
    height: 100%;
    max-height:350px;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

    @media screen and (max-width: 991px) {
        .sub_content, .img_content {
            float: none;
            width: 100%;
        }

        .img_content p {
            float: left;
            width: 32%;
            height: 100%;
            max-height: 200px;
            margin-right: 1%;
        }

        .img_content img, .img_content p {
            max-height: 200px;
            width: auto;

        }
    }

/* Testimonials
-------------------------------------------------------------------*/
#customer-testimonials-section .ml-text{
    font-size:2.8rem;
}


/* Video
-------------------------------------------------------------------*/
.video-wrap {
    z-index: -100;
}

.custom-video {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
}



/* Modal
-------------------------------------------------------------------*/
p.lightbox-caption {
    background: rgba(17, 17, 17, 0.75);
    width:100%;
    font-size: 2.4rem;
    position:absolute;
    bottom: 0;
    text-align: center;
    z-index: 99;
}

p.lightbox-caption em {
    font-style: normal;
    font-weight: bold;
}

.modal-header {
    background: var(--brand-bright);
    color: var(--black);
    border-radius: 0;
    border-bottom: 0;
}

.modal-header h5 {
    font-size: 2rem;
    font-weight: bold;
}

.modal-content {
    border-radius: 0;
    padding-bottom: 1em;
}

.modal-body {
    font-size: 1.8rem;
}
    
/* Footer
-------------------------------------------------------------------*/
footer#copyright {
    color: var(--white);
    font-size: 15px;
    background-color: var(--brand-darker) !important;
}

/* ADA FIX: Force consistent solid white text/icons in footer */
footer#copyright,
footer#copyright *,
footer#copyright a,
footer#copyright a:visited,
footer#copyright a:hover,
footer#copyright a:focus,
footer#copyright i,
footer#copyright svg {
    color: #ffffff !important;
    opacity: 1 !important;
    text-decoration-color: #ffffff !important;
}

/* Left block */
.footer-logo {
    max-width: 300px;
}

.footer-address {
    margin-bottom: 0;
    font-size: 25px;
}

/* FOOTER SOCIAL ICONS – circles */
.footer-socials a {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--brand-accent);
    color: #ffffff !important;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    text-decoration: none;
}

.footer-socials a:last-child {
    margin-right: 0;
}

.footer-socials a i {
    font-size: 18px;
    line-height: inherit;
    color: #ffffff !important;
}

/* Hover */
.footer-socials a:hover {
    opacity: 0.85;
}

/* Headings: QUICK LINKS / SHOP ONLINE / RESOURCES / CONNECT WITH US */
.footer-heading {
    font-size: 25px;
    text-transform: uppercase;
    color: #ffffff !important;
}

/* Footer menus */
.footer-menu ul {
    padding:0;
}

.footer-menu li {
    margin-bottom: 0.3rem;
    font-size: 18px;
    list-style-type: none;
}

.footer-menu li a {
    color: #ffffff !important;
    text-decoration: none;
}

.footer-menu li a:hover {
    text-decoration: underline;
}

/* Social icons row */
.footer-socials a {
    display: inline-block;
    margin-right: 0.35rem;
}

/* GCS logo alignment tweak on desktop */
.footer-gcs-logo {
    max-height: 40px;
}

@media (max-width: 991px) {
    .footer-brand-block {
        margin: 0 auto;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .footer-menus {
        text-align: center;
    }
}

/* Back to Top
-------------------------------------------------------------------*/
.scrolltop {
    display: none;
    width: 100%;
    margin: 0 auto;
    position: fixed;
    right: 1%;
    bottom: 0%;
    z-index: 1070;
}

@media screen and (max-width: 768px) {
    .scrolltop {
        right: 3%;
    }
}

@media screen and (max-width: 575px) {
    .scrolltop {
        display: none !important;
    }
}

.scroll {
    position: absolute;
    right: 1px;
    bottom: 0px;
    background: var(--brand-dark);
    -webkit-border-top-left-radius: 10px;
    -webkit-border-top-right-radius: 10px;
    -moz-border-radius-topleft: 10px;
    -moz-border-radius-topright: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    text-align: center;
    margin: 0 0 0 0;
    cursor: pointer;
    transition: 0.5s;
    -moz-transition: 0.5s;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    width: 60px;
    height: 30px;
    color: #FFF;
    padding-top: 5px;
}

.scroll:hover {
    background: var(--brand-accent);
}

.scroll .fas {
    font-size: 20px;
    margin-top: 25px;
    margin-left: 1px;
    transition: 0.5s;
    -moz-transition: 0.5s;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
}