/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 1.0.1
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/*
    Add your custom styles here
*/
.mobile-menu-sec .elementor-nav-menu--dropdown.elementor-nav-menu__container {
    position: absolute;
    width: 300px;
    right: 0;
    top: 17px;
}
.header-main-sec.is-sticky {
    background-color: #F8F2F2 !important;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}
.freature-areas-sec-col .freature-areas-title-sec{opacity: 0; transform: translateY(15px);transition: all 0.4s ease;}
.freature-areas-sec-col:hover .freature-areas-title-sec{opacity: 1;  transform: translateY(0);}
.featured-category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.featured-category-card {
    text-decoration: none;
    position: relative;
    display: block;
}

.featured-category-image {
    width: 100%;
    overflow: hidden; border-radius: 70px 70px 0 0;
}

.featured-category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;transition: transform 0.4s ease;
}
.featured-category-card:hover .featured-category-image img {
    transform: scale(1.1);
}
.featured-category-title {
    display: inline-block;
    margin: -28px auto 0;
    padding: 12px 28px;
    background: #fff;
    border: 1px solid #450455;
    color: #450455;
    font-family: 'Lato', sans-serif;
    font-size: 25px;
    font-weight: 700;
    text-align: center;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    transition: background-color 0.9s ease, color 0.3s ease; 
}
.featured-category-description{text-align:center !important;}
/* Hover effect */
.featured-category-card:hover .featured-category-title {
    background-color: #450455;
    color: #ffffff;
}

/* GRID */
.featured-location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    justify-content: center;
}

/* Center alignment if only 1 or 2 items */
.featured-location-grid.count-1,
.featured-location-grid.count-2 {
    grid-template-columns: repeat(auto-fit, minmax(320px, 420px));
    justify-content: center;
}

/* CARD */
.featured-location-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 16px;
    height: 408px;
    text-decoration: none;
}

/* IMAGE */
.featured-location-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;transition: transform 0.6s ease;
}


/* OVERLAY (initial) */
.featured-location-overlay {
    position: absolute;
    inset: 0;
    background: rgba(147, 136, 141, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
/* TITLE (initial) */
.featured-location-title {
    color: #ffffff;
    font-family: 'Lato', sans-serif;
    font-size: 32px;
    font-weight: 600;
    text-align: center;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

/* HOVER EFFECTS */
.featured-location-card:hover img {
    transform: scale(1.08);
}

.featured-location-card:hover .featured-location-overlay {
    opacity: 1;
    transform: scale(1);
}

.featured-location-card:hover .featured-location-title {
    opacity: 1;
    transform: translateY(0);
}
.listing-grid {
    display: grid;
   grid-template-columns: repeat(3, 1fr);
    gap: 38px;
}

/* Card */
.listing-card {
    position: relative;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
    transition: transform .4s ease, box-shadow .4s ease;
}

/* Hover lift */
.listing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 55px rgba(0,0,0,.14);
}

/* Image */
.listing-image {
    display: block;
    overflow: hidden;
}

.listing-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform .6s ease;
}
/* CATEGORY TAG */
.listing-category-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #450455c7;
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 10px;
    letter-spacing: .3px;
    z-index: 1;
    box-shadow: 0 6px 14px rgba(69, 4, 85, .35);
    transition: all .3s ease;
}
.listing-location-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #e0d0d7;
    color: #000;
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 10px;
    z-index: 2;
    box-shadow: 0 6px 14px rgba(69, 4, 85, .35);
    transition: all .3s ease;
}
/* Hover polish */
.listing-card:hover .listing-category-tag {
    background: #5d0671;
    transform: scale(1.05);
}
/* Image zoom */
.listing-card:hover .listing-image img {
    transform: scale(1.08);
}

/* Content */
.listing-content {
    padding: 22px 22px 26px;
}

.listing-title {
    font-size: 22px !important; line-height: 26px !important;
    font-weight: 600 ;
    margin-bottom: 10px;
    color: #000000; margin-top: 0;
}

.listing-address {
    font-size: 15px;
    color: #777;
    margin-bottom: 10px;
    line-height: 18px;
}
.listing-address.listing-deal{font-weight: 900;color: #333;}
/* View More */
.listing-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 17px;
    font-weight: 600;
    color: #450455;
    text-decoration: none;
    transition: color .3s ease;
}
.listing-link:hover {
    color: #000 !important;
}
.listing-link span {
    transition: transform .3s ease;
}

/* Arrow animation */
.listing-card:hover .listing-link span {
    transform: translateX(6px);
}
.listing-detail-wrapper {
    max-width: 1280px;
    margin: auto;
    padding: 0px;
    font-family: 'Lato', sans-serif;
}

/* GALLERY */
/* WRAPPER */
.listing-gallery-wrapper {
    margin-bottom: 45px;
}

/* MAIN SLIDER */
.listing-main-slider {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 15px;
}

.listing-main-slider img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}

/* ARROWS */
.listing-main-slider .swiper-button-next,
.listing-main-slider .swiper-button-prev {
    color: #450455;
    background: rgba(255,255,255,0.85);
    width: 46px;
    height: 46px;
    border-radius: 50%;
}

.listing-main-slider .swiper-button-next:after,
.listing-main-slider .swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
}

/* THUMB SLIDER */
.listing-thumb-slider {
    padding-top: 10px;
}

.listing-thumb-slider .swiper-slide {
    cursor: pointer;
    opacity: 0.6;
    overflow: hidden;
    transition: all .3s ease;
}

.listing-thumb-slider .swiper-slide-thumb-active {
    opacity: 1;
   
}

.listing-thumb-slider img {
    width: 100%;
    height: 90px;
    object-fit: cover;border-radius: 12px;
}
.listing-thumb-slider .swiper-slide-thumb-active img {
    border: 2px solid #450455;
    border-radius: 10px;
    padding: 2px;
}



/* CONTENT */
.listing-title {
    font-size: 36px;
    font-weight: 600;
    color: #450455;
    margin-bottom: 16px;
}

.listing-description p {
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 20px;
    font-weight: 600;
}

/* INFO BOX */
.listing-info-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    background: #f6f2f4;
    padding: 25px;
    border-radius: 18px;
    margin-bottom: 0px;
}

.info-item strong {
    display: block;
    font-size: 14px;
    color: #450455;
}

.info-item span,
.info-item a {
    font-size: 15px;
    color: #333;
}
/* WRAPPER */
.listing-key-features {
    margin-top: 30px;
    margin-bottom: 40px;
}

/* TITLE */
.features-title {
    font-size: 25px !important;
    font-weight: 700;
    color: #450455;
    margin-bottom: 18px;
    position: relative;
}



/* LIST RESET */
.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* ITEM */
.features-list li {
    position: relative;
    padding-left: 36px;
    margin-bottom: 14px;
    font-size: 18px;
    line-height:30px;
    color: #444;
    font-weight: 500;
}

/* CUSTOM BULLET ICON */
.features-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #450455;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* CHECK ICON */
.features-list li::after {
    content: "✓";
    position: absolute;
    left: 5px;
    top: 0;
    font-size: 14px;
    color: #fff;
    font-weight: bold;
}

/* HOVER EFFECT */
.features-list li:hover {
    color: #450455;
    transform: translateX(4px);
    transition: all 0.3s ease;
}

/* MAP */
.listing-hours-map {
    display: grid;
    grid-template-columns: 38% 1fr; /* change to 35% if you want */
    gap: 32px;
    margin-top: 40px;
    align-items: stretch;
}

.listing-map {
    margin-top: 0px;
    overflow: hidden;
}

.listing-map iframe {
    width: 100%;
    height: 310px;
    border: 0;
    display: block;
}
.listing-hours {
    margin-top: 0px;
    max-width: 420px;
}

/* TITLE */
.hours-title {
    font-size: 22px;
    font-weight: 700;
    color: #450455;
    margin-bottom: 18px;
}

/* LIST RESET */
.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* ITEM */
.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 16px;
    border-bottom: 1px dashed #450455;
}

/* DAY */
.hours-item .day {
    font-weight: 600;
    color: #333;
}

/* TIME */
.hours-item .time {
    font-weight: 500;
    color: #555;
}

/* ACTIVE DAY (OPTIONAL) */
.hours-item.active .day,
.hours-item.active .time {
    color: #450455;
    font-weight: 700;
}

/* HOVER EFFECT */
.hours-item:hover {
    background: rgba(69, 4, 85, 0.04);
    padding-left: 8px;
    padding-right: 8px;
    border-radius: 6px;
    transition: all 0.25s ease;
}
.blog-archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.blog-card {
     display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: transform .35s ease, box-shadow .35s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(69,4,85,0.18);
}
.blog-thumb {
    position: relative;
    display: block;
    overflow: hidden;
}
.blog-thumb img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform .5s ease;
}

.blog-card:hover .blog-thumb img {
    transform: scale(1.08);
}

.blog-content {
    padding: 22px 24px 26px;
    display: flex;
    flex-direction: column;
}


.blog-meta {
    display: flex;
    gap: 14px;
    font-size: 13px;
    margin-bottom: 10px;
}

.blog-date {
    color: #777;
}
/* Category badge on image */
.blog-thumb .blog-category {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(69, 4, 85, 0.9);
    color: #fff;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    z-index: 2;
    pointer-events: none;
}
.blog-title {
    font-size: 20px;
    font-weight: 600;
    margin: 8px 0 12px;
}

.blog-title a {
    color: #222;
    text-decoration: none;
}

.blog-title a:hover {
    color: #450455;
}

/* Excerpt grows, pushing button down */
.blog-excerpt {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 18px;
}
/* Read more always bottom */
.blog-readmore {
    margin-top: auto;
    font-size: 14px;
    font-weight: 600;
    color: #450455;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap .3s ease, color .3s ease;  margin-top: auto;
}

.blog-readmore:hover {
    gap: 12px;
    color: #000;
}

.blog-pagination {
    margin-top: 50px;
    text-align: center;
}

.blog-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    margin: 0 4px;
    border-radius: 50%;
    background: #f3f3f3;
    color: #333;
    font-weight: 600;
    text-decoration: none;
    transition: all .3s ease;
}

.blog-pagination .page-numbers.current {
    background: #450455;
    color: #fff;
}

.blog-pagination .page-numbers:hover {
    background: #450455;
    color: #fff;
}
.hhh-breadcrumb {
    color: #fff;
}
.hhh-breadcrumb a span:hover {
    color: #fff !important;
}
#basic-scrolltop-button img {
    border: 1px solid #450455;
    border-radius: 50%;
}
/* Blur cards after 3rd */
.blur-card {
    filter: blur(6px);
    pointer-events: none;
    opacity: 0.6;
    transition: all 0.3s ease;
}

/* Inline gate (main box) */
.inline-gate {
    grid-column: 1 / -1; /* full width inside grid */
    background: #fff;
    padding: 30px 20px;
    margin: 20px 0;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    border: 1px solid #eee;
}

/* Heading */
.inline-gate h3 {
    font-size: 22px;
    margin: 0;
}

/* Sub text */
.inline-gate p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}
.gate-message {
    margin-top: 10px;
    font-size: 14px;
}
.gate-form-sec {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 340px;
    align-items: center;
    margin: 0 auto;
}
/* Input */
.inline-gate input {
    width: 100%;
    max-width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px !important;
    margin-right: 0px;
    outline: none;
}

/* Button */
.inline-gate button {
    width: 100%;
    padding: 12px 20px;
    background: #d9c4cd;
    color: #450455;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
    border: 1px solid #450455;
}

.inline-gate button:hover {
    background: #ffffff;
}



.category-email-strip {
    grid-column: 1 / -1;
    background: #450455;
    padding: 40px 20px;
    margin: 25px 0;
    border-radius: 10px;
    text-align: center;
}

.strip-inner h3 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 10px;
}

.strip-inner p {
    color: #e0cfe8;
    font-size: 14px;
    margin-bottom: 20px;
}

.strip-form {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 340px;
    margin: 0 auto;
}

.strip-form input {
    padding: 12px;
    width: 100%;
    max-width: 100%;
    border: none;
    border-radius: 6px !important;
    outline: none; border: 1px solid #222 !important;
}

.strip-form button {
    padding: 12px 20px;
    background: #fff;
    color: #450455;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
    width: 100%;
    border: 1px solid #fff;
}
#category-email-strip .strip-form button:hover, #category-email-strip .strip-form button:focus {
    background: #450455;
    border: 1px solid #fff;
    color: #fff;
}

.strip-message {
    margin-top: 10px;
    font-size: 14px;
    color: #fff;
}
.marquee-bar {
    background-color: #4B0082;
    color: #ffffff;
    font-size: 13px;
    overflow: hidden;
    white-space: nowrap;
    height: 35px; /* Adjust for "thin" height */
    display: flex;
    align-items: center;
    position: relative;
}
.marquee-inner {
    display: inline-block;
    animation: marquee-move 70s linear infinite;
    padding-left: 100%;
}
.marquee-inner:hover {
    animation-play-state: paused;
}
@keyframes marquee-move {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}
.term-12 .happyhour-marquee .marquee-bar {
    display: none !important;
}
/* Responsive */
@media (max-width: 1200px) {
    .featured-category-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
/* RESPONSIVE */
@media (max-width: 1024px) {
    .featured-location-grid {
        grid-template-columns: repeat(2, 1fr);
    }
     .listing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .blog-archive-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .featured-location-overlay {
        opacity: 1;
        transform: scale(1);
        background: rgba(147, 136, 141, 0.6);
    }

    .featured-location-card:hover .featured-location-overlay {
        opacity: 1;
        transform: scale(1);
    }
.featured-location-title{opacity: 1}
}

@media (max-width: 768px) {
    .featured-category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* MOBILE */
@media (max-width: 767px) {
    .listing-main-slider img {
        height: 320px;
    }

    .listing-thumb-slider img {
        height: 70px;
    }
    .listing-hours-map {
        grid-template-columns: 1fr;
    }

    
}
@media (max-width: 640px) {
    .featured-location-grid {
        grid-template-columns: 1fr;
    }

    .featured-location-card {
        height: 320px;
    }
     .listing-grid {
        grid-template-columns: 1fr;
    }
     .blog-archive-grid {
        grid-template-columns: 1fr;
    }
      .inline-gate input {
        width: 100%;
        margin: 0 0 0px 0;
    }

    .inline-gate button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .featured-category-grid {
        grid-template-columns: 1fr;
    }
    .featured-category-image img{height: 450px}
    .inline-gate{padding: 30px 10px;}
}
