@charset "utf-8";
/*
    -------------------------------------------------------------------
        Theme Name: Bayport Flower House
        Theme URI: https://yourgardencenter.com
        Author: GCSolutions
        Author URI: https://gardencentersolutions.com
        Description: Custom Theme for Bayport Flower House
        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=Allura&family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');


/* Root
-------------------------------------------------------------------*/
:root {
    --white: #FFF;
    --black: #000;
    --brand-dark: #4c6c2e;
    --brand-medium: #a25426;
    --brand-light: #f6f7e9;
    --brand-bright: #2fc9eb;
    --brand-accent: #f49234;
    --brand-accent-alt: #d7869f;
    --ff-accent: "Cormorant Garamond", serif;
    --ff-default: "Source Sans 3", sans-serif;
    --ff-script: "Allura", cursive
    --light-grey: #f4fdff;
    --medium-grey: #dedede;
    --dark-grey: #5c5c5c;

}

/* Backgrounds
-------------------------------------------------------------------*/
.bg-white {background-color: var(--white);}
.bg-black, .bg-brand-black {background-color: var(--black);}
.bg-brand-dark {background-color: var(--brand-dark);}
.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;}

/* 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%;
}

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

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

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

/* 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-accent);
    line-height: 1;
    padding: 0;
    font-weight: bold;
}

h4 {
    font-weight: bold;
    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;
    font-weight: 700;
    margin: 1em 0 0 0;
}

.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;
}

.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-dark);
    border-color: var(--brand-dark);
}

.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-dark);
    border-color: var(--brand-dark);
}

.btn-search, a.btn-search:link, a.btn-search:focus, a.btn-search:active, a.btn-search:visited {
    background: var(--brand-medium);
    border-color: var(--brand-medium);
    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);
}

.shop-btn a.mega-menu-link{
    background: var(--brand-medium) !important;
}

a:link, a:visited, a:active, a:hover {
    color: var(--brand-dark);
    text-decoration: none;
}

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;
}

.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-container {
    width: 100%;
    max-width: 100%;
    margin: 0 0 1rem;
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
}

/* Only affect the circular grid images, not events */
.grid-boxes .image-container img.rounded-circle {
    width: 320px !important;   /* fixed width */
    height: 320px !important;  /* same height => perfect square */
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0 auto 1.5rem;
}


@media (max-width: 767px) {
    .image-container {
        width: 100%;
        height: 350px;
    }
    
    .image-container img {
        height: auto !important;
    }
}

.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%;
    border-radius: 50%;
    overflow: hidden; 
    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 {
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: center;
    border-radius: 4px;
}
#g2-grid-items > div > div.row.g-4.my-5 > div.col-md-2.col-4{
    width:100%;
}
#g2-grid-items > div > div.row.g-4.my-5 > div.col-md-2.col-4 > figure{
    height: 460px;
    margin-top:0;
}

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

.single-post-content img {
    border-radius: 18px;
    margin-bottom: 1.25rem;
}

/* 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;
}

.header-email-wrapper {
    position: relative;
    display: inline-block;
}

.email-toggle {
    background: none;
    border: 0;
    padding: 0;
    font: inherit;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.email-toggle .chevron {
    font-size: 0.75em;
    opacity: 0.7;
    transition: transform .2s ease;
}

.email-toggle[aria-expanded="true"] .chevron {
    transform: rotate(180deg);
}

/* This is the nav-style overlay */
.email-list {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 4px;
    padding: 6px 10px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,.12);
    z-index: 50;
    min-width: 250px;
}

.email-list p {
    margin: 0 0 4px;
    font-size: 0.9em;
}

.email-list p:last-child {
    margin-bottom: 0;
}


/* Desktop alignment for Max Mega Menu in the header */
@media (min-width: 992px) {
    #desktop-navigation .mega-menu-wrap {
        width: 100%;
    }

    #desktop-navigation .mega-menu {
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;  /* or space-between if you prefer */
        width: 100%;
    }

    #desktop-navigation .mega-menu > li.mega-menu-item {
        float: none;          /* cancel default floats */
    }
}


/* 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;
}
.offcanvas-header {
    position: absolute;
    right: 15px;
}

.mobile-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}
.mobile-menu ul{
    padding: 0;
}
.mobile-menu li {
    padding-bottom: .25rem;
}

.mobile-menu ul li{
    padding: 0;
    list-style: none;
}

.mobile-menu li a,
.navbar-content a {
    color: var(--white);
    text-decoration: none;
}

.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;
        }
    }

/* Main Links — wrapper */
#main-links .image-rounded {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    overflow: hidden;
    background: var(--brand-light);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Icon inside the circle */
#main-links .image-rounded img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

/* Hover glow and zoom */
#main-links .image-rounded:hover,
#main-links .image-rounded:focus-within {
    transform: scale(1.05);
    box-shadow: 0 0 0 4px rgba(207, 171, 63, 0.35);
}

/* Titles under icons */
#main-links .main-link-title {
    font-size: 2rem;
    color: var(--brand-dark);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: .35rem;
}

/* Descriptions under titles */
#main-links .main-link-desc {
    font-size: 1.5rem;
    color: var(--brand-dark);
    line-height: 1.4;
    margin: 0 auto;
    max-width: 220px;
}

/* Optional: focus ring on the link itself for keyboard users */
#main-links .home-boxes:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px rgba(255, 184, 0, 0.6);
    border-radius: 50%;
}


/* Florist Highlight
-------------------------------------------------------------------*/
.florist-section {
    position: relative;
    overflow: hidden;
}

/* IMAGE + CIRCLE WRAP */
.florist-visual {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

/* Soft green circle behind bouquet */
.florist-circle {
    position: absolute;
    top: 38%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 380px;
    height: 380px;
    background: #d4e5d0;
    border-radius: 50%;
    z-index: 0;
}

/* Bouquet image */
.florist-image-wrap {
    position: relative;
    z-index: 1;
}

.florist-main-image {
    position: relative;
    width: 100%;
    height: auto;
    display: block;
}

/* TEXT STYLING */
.florist-copy {
    max-width: 540px;
}
.florist-heading {
    font-size: 6rem;
}
.florist-intro {
    font-size: 2.2rem;
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 991px) {
    .florist-visual {
        margin-bottom: 2rem;
        max-width: 400px;
    }
    
    .florist-circle {
        width: 320px;
        height: 320px;
    }
    
    .florist-heading {
        font-size: 2.5rem;
    }
    
    .florist-copy {
        text-align: center;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .florist-circle {
        width: 280px;
        height: 280px;
    }
}

@media (max-width: 575px) {
    .florist-visual {
        max-width: 320px;
    }
    
    .florist-circle {
        width: 240px;
        height: 240px;
    }
}

/* Featured Products
-------------------------------------------------------------------*/

/* Each tile follows the Bootstrap column width */
.featured-product-tile {
    text-align: center;
}

/* Big circle, sized by the column, not a tiny fixed pixel value */
.featured-product-circle {
    margin: 0 auto 0.75rem;
    width: 100%;           /* fill the column */
    max-width: 260px;      /* similar size to your main-links circles */
    aspect-ratio: 1 / 1;   /* keep it perfectly round */
    border-radius: 50%;
    overflow: hidden;
    background: #f6efe6;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Product image */
.featured-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Label pill under the circle */
.featured-product-label {
    display: inline-block;
    margin-top: 0.35rem;
    padding: 0.45rem 1.2rem;
    font-size: 1.5rem;
    line-height: 1.3;
    border-radius: 999px;
    background: var(--brand-dark);
    color: #fff;
    white-space: nowrap;
    max-width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
}

/* Hover glow and zoom */
.featured-product-link:hover .featured-product-circle,
.featured-product-link:focus-visible .featured-product-circle {
    transform: scale(1.05);
    box-shadow: 0 0 0 4px rgba(207, 171, 63, 0.35);
}

/* Focus ring on label */
.featured-product-link:focus-visible .featured-product-label {
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px rgba(255, 184, 0, 0.6);
}

/* Events Section
-------------------------------------------------------------------*/

/* Card container */
.event-card {
    position: relative;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.event-card-link {
    color: inherit;
    text-decoration: none;
    display: block;
    height: 100%;
}

/* Inner layout */
.event-card-inner {
    height: 100%;
}

/* Image */
.event-card-image {
    width: 100%;
    height: 220px !important;
    object-fit: cover;
    display: block;
}

/* Body copy */
.event-card-body {
    padding: 40px;
}

.event-card-title {
    font-weight: 600;
}

.event-card-meta {
    color: var(--black);
    opacity:.75;
}

/* Date circle accent at top-left */
.event-date-circle {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--brand-medium); /* yellow brand color fallback */
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.event-date-day {
    font-size: 2rem;
    line-height: 1;
}

.event-date-month {
    font-size: 1.25rem;
    line-height: 1;
}

/* Hover effect on card */
.event-card-link:hover .event-card,
.event-card-link:focus-visible .event-card {
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.event-card-link:hover .event-card-image,
.event-card-link:focus-visible .event-card-image {
    transform: scale(1.03);
    transition: transform 0.25s ease;
}

/* Weddings section
   ------------------------------------------------------------------- */

.weddings-photo-wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
    background: #f2f2f2;
}

.weddings-photo {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    display: block;
}

.weddings-copy {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    align-items: flex-start;
}

/* Weddings testimonial card
   ------------------------------------------------------------------- */
.weddings-testimonial-card {
    position: relative;
    max-width: 420px;  
    background: #ffffff;
    padding: 1.5rem 1.75rem;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
    margin-top: 2.5rem;
}

/* tiny elegant circle */
.weddings-testimonial-seal {
    position: absolute;
    top: -16px;
    left: 1.25rem;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid var(--brand-medium);
    background: #f8f4e6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.weddings-seal-mark {
    font-size: 4rem;
    margin-top: 18px;
    color: var(--brand-medium);
}

/* readable body */
.weddings-testimonial-text {
    font-size: 1.5rem;
    line-height: 1.65 !important;
    color: var(--black);
    opacity:.75;
    margin: 0;
    padding-top: 0.5rem;
    font-style:italic;
}

/* signature */
.weddings-testimonial-name {
    margin-top: 0.85rem;
    font-size: 1.25rem;
    color: var(--black);
    opacity:.85;
}

/* On mobile, center the card in the column */
@media (max-width: 767.98px) {
    .weddings-photo-wrap {
        height:300px !important;
    }
    .weddings-testimonial-card {
        margin-left: auto;
        margin-right: auto;
    }
}

/* Garden Center Overview
   ------------------------------------------------------- */
.garden-circle-wrap {
    text-align: center;
}

/* CIRCLE SHAPE */
.garden-circle {
    position: relative;
    width: 100%;
    max-width: 260px;
    aspect-ratio: 1 / 1;
    margin: 0 auto 0.75rem;
    border-radius: 50%;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* BACKGROUND IMAGE (fills the circle) */
.garden-circle-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Overlay tint (soft green tone layered on top of the photo) */
.garden-circle-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.25;           /* low opacity since the text is OUTSIDE */
    pointer-events: none;
}

/* Tone variations from your ACF 'tone-light', 'tone-mid', 'tone-dark' */
.garden-circle-wrap.tone-light .garden-circle-overlay {
    background: var(--brand-light);
}

.garden-circle-wrap.tone-mid .garden-circle-overlay {
    background: var(--brand-medium);
}

.garden-circle-wrap.tone-dark .garden-circle-overlay {
    background: var(--brand-dark);
}

/* Category label BELOW the circle */
.garden-label {
display: inline-block;
    margin-top: 0.35rem;
    padding: 0.45rem 1.2rem;
    font-size: 1.5rem;
    line-height: 1.3;
    border-radius: 999px;
    background: var(--brand-dark);
    color: #fff;
    text-transform:uppercase;
    white-space: nowrap;
    max-width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
}

/* Subtext line (smaller but NOT tiny) */
.garden-subtext {
    font-size: 1.5rem !important;
    color: var(--black);
    opacity:.75;
    margin-bottom: 0.25rem !important;
    line-height: 1.4;
}

/* "Learn more" link */
.garden-sub-link {
    font-size: 1.1rem !important;
    color: var(--brand-dark);
    text-decoration: underline;
}

.garden-sub-link:hover {
    color: var(--brand-medium);
}

/* Hover glow + zoom for Garden Center circles */
.garden-circle-wrap:hover .garden-circle,
.garden-circle-wrap:focus-within .garden-circle {
    transform: scale(1.05) !important;
    box-shadow: 0 0 0 4px rgba(207, 171, 63, 0.35) !important; /* warm gold glow */
}

/* Stronger gold focus ring when tabbing onto the link */
.garden-circle-link:focus-visible .garden-circle {
    box-shadow: 0 0 0 2px #fff,
                0 0 0 4px rgba(255, 184, 0, 0.6) !important;
}

/* 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;
}

#main-links{
    margin-top:-135px;
}

 @media screen and (max-width: 991px) {
        #main-links{
            margin-top:50px;
        }
    }

/* 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
-------------------------------------------------------------------*/
.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: 9em;
    padding-bottom: 9em;
}

.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(--black);
    font-size: 6rem;
    padding: .25em .65em;
    font-family: var(--ff-accent);
    background: rgba(255, 255, 255, .8);
    display: inline;
    margin: 0;
    font-weight: 600;
}

.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;
        }
    }

/* FLORIST OCCASION CARDS
   -------------------------------------------------- */

/* The whole card */
.florist-occasion-card {
    background: #fff;
    border-radius: 0 0 18px 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
    overflow: hidden; 
    transition: all .25s ease;
    padding: 0; 
    display: block;
}

/* Hover lift */
.florist-occasion-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
}


/* Image wrapper: full width, fixed height, no margin */
.florist-occasion-image-wrap {
    width: 100%;
    height: 220px;
    overflow: hidden;
    margin: 0; 
    padding: 0;
}

/* The image itself – full bleed, cropped */
.florist-occasion-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0;
    border-radius: 0;
}

.florist-occasion-body{
    padding: 30px;
}

/* CONTENT SPACING – only text gets padding */
.florist-occasion-card h3,
.florist-occasion-card p {
    padding: 0 1.75rem; 
}

.florist-occasion-card h3 {
    margin-top: 1.5rem;
    margin-bottom: .25rem;
}

.florist-occasion-card p {
    margin-bottom: 1.5rem;
}

.florist-why-card{
    position: relative;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
    transition: transform .25s ease, box-shadow .25s ease;
}


.florist-why-card {
    padding: 30px;
}

.florist-cta-card {
    padding: 2rem 2.25rem;
}

/* Hover lift + glow */
.florist-occasion-card:hover,
.florist-why-card:hover{
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0,0,0,.12);
}

.florist-occasion-card:hover::before,
.florist-why-card:hover::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    box-shadow: 0 0 20px rgba(76,108,46,0.25); /* brand green glow */
    pointer-events: none;
}

/* Icon circle */
.florist-why-icon span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    border: 2px solid var(--brand-medium);
}

/* Font Awesome icon inside the circle */
.florist-why-icon span svg {
    font-size: 3rem;
    color:var(--brand-dark);  
}

/* Make headings a bit bigger in these cards if needed */
.florist-occasion-card h3,
.florist-why-card h3,
.florist-cta-card h2 {
 color:var(--brand-dark);   
}

.page-template-page-florist, #featured-arrangements{
    background: var(--white) !important;
}

@media (max-width: 767.98px) {
    #florist-bottom-cta .florist-cta-card {
        text-align: center;
    }
}

    
/* Wedding Page */
.wedding-promo a{
 color: var(--white);   
}
#wedding-reviews .carousel-item {
    min-height: 300px;
    margin-bottom: 2rem;
}

.weddings-testimonial-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 2.5rem 2rem;
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
    position: relative;
    max-width: 650px;
}

.weddings-testimonial-seal {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid var(--brand-medium);
    background: #f8f4e6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.weddings-seal-mark {
font-size: 4rem;
    margin-top: 18px;
    color: var(--brand-medium);
}

.weddings-testimonial-text {
    font-size: 1.25rem;
    line-height: 1.65;
    opacity: 0.8;
    font-style: italic;
    text-align: center;
}

.weddings-testimonial-name {
    font-size: 1.1rem;
    opacity: 0.8;
}

#weddingReviewsCarousel .carousel-inner {
    overflow-x: hidden; 
    overflow-y: visible; 
}

.carousel-indicators [data-bs-target]{
    background-color: var(--brand-accent) ;
}

/* Event Inner page*/
/* Sidebar white card */
.event-sidebar-box {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}
/* Wrapper positions the title over the image */
.event-hero-image-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
}

/* Shorter image height without stretching */
.event-hero-image {
    width: 100%;
    height: 300px; /* ADJUST THIS if you want shorter or taller */
    object-fit: cover;
    border-radius: 12px;
}

/* Title overlay */
.event-hero-title {
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 0;
    padding: 20px;
    color: var(--white);
    font-weight: 600;
    background: var(--brand-medium);
}


/* Sidebar heading */
.event-sidebar-title {
    margin-bottom: 1.5rem;
    color: var(--brand-dark);
}

/* Rows inside sidebar */
.event-info-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--brand-dark);
    padding: 1rem;
}

.event-info-row i {
    font-size: 1.5rem;
    color: var(--brand-dark);
}

.event-info-row {
    align-items: flex-start;
}

.event-info-row svg {
    margin-top: 5px;
}


/* Left content text */
.event-body-copy p {
    margin-bottom: 1.25rem;
}


/* 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;
}


/* Garden Tips
   -------------------------------------------------- */

.garden-tips {
    position: relative;
}

.garden-tips-heading {
    position: relative;
    z-index: 1;
    margin: 0;
}

/* Cards */
.garden-tip-card {
    background: #ffffff;
    border-radius: 0 0 18px 18px;
    box-shadow: 0 18px 415px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.garden-tip-figure {
    margin: 0;
    overflow: hidden;
}

.garden-tip-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.25s ease;
}

.garden-tip-image-link:hover .garden-tip-image,
.garden-tip-image-link:focus-visible .garden-tip-image {
    transform: scale(1.05);
}

.garden-tip-body {
    padding: 1.5rem 1.5rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.garden-tip-title a {
    text-decoration: none;
    color: var(--bs-body-color);
}

.garden-tip-title a:hover {
    color: var(--brand-dark);
}

.garden-tip-card .btn-learnmore {
    align-self: flex-start;
}

/* Section background: light on top, green on bottom */
.signup-section {
    background: linear-gradient(#f6f7e9 0 55%, var(--brand-dark) 55% 100%);
}

/* Card wrapper */
#signup-box {
    max-width: 900px;
    margin: 0 auto;
}

/* Card */
.signup-inner {
    background: #ffffff;
    border-radius: 20px;
    padding: 3rem 2.5rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    box-shadow: 0 18px 45px rgba(0,0,0,0.08);
}

/* Icon circle on the left */
.signup-graphic {
    flex: 0 0 160px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.signup-leaf-circle {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: #f3f7e9;
    display: flex;
    justify-content: center;
    align-items: center;
}

.leaf-icon {
    font-size: 2rem;
    color: var(--brand-dark);
}

/* Copy + form on the right */
.signup-content {
    flex: 1 1 auto;
}

.signup-content h2 {
    color: var(--brand-dark);
    margin-bottom: 1rem;
}

.signup-content p {
    margin-bottom: 1.5rem;
    color: #444;
}

/* Form fields */
.signup-form input {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 0.8rem;
    font-size: 1.25rem;
    border-radius: 0px;
    border: 1px solid #ccc;
    outline: none;
}

.signup-form input:focus {
    border-color: var(--brand-medium);
    box-shadow: 0 0 0 2px rgba(207, 171, 63, 0.25);
}

/* Button */
.signup-form button {
    width: 100%;
    padding: 12px 16px;
    border-radius: 0px;
    border: none;
}

/* Mobile stacking */
@media (max-width: 767.98px) {
    .signup-inner {
        flex-direction: column;
        text-align: center;
        padding: 2.25rem 1.75rem;
    }
.signup-inner img{
    width:50%;
}
    .signup-graphic {
        flex: 0 0 auto;
    }
}


.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
-------------------------------------------------------------------*/
.testimonial-box {
    background-color: var(--light-grey);
    border: 1px solid var(--brand-medium);
    padding: 1em;
    border-radius: .25em;
    font-size: 1.5rem;
    min-height: 220px;
    vertical-align: middle;
    background-image: url('images/icon-quote.png');
    background-repeat: no-repeat;
    background-position: top 10px right 10px;
    background-size: 40px 40px;
}

.testimonial-box .name {
    font-weight: bold;
}

.owl-nav {
    margin-top: 1em;
    text-align: center;
}

.owl-nav button {
    margin: 0 .5em;
}


/* 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 {
    color: var(--black);
    font-size: 1.6rem;
    line-height: 1.5;
}
.footer p {
    padding: 0;
    margin: 0;
}

footer .company-info p {
    font-size: 1.8rem;
}

    @media screen and (max-width: 991px) {
        footer .company-info p {
            font-size: 1.4rem;
        }
    }

footer a, footer a:link, footer a:active, footer a:visited {
    color: var(--black);
    text-decoration: none;
}

footer.copyright {
    line-height: 1.5;
    font-family: var(--ff-default);
    color: var(--white);
}

footer.copyright a {
    text-decoration: none;
    color: var(--white) !important;
}


/* 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;
}