/*
Theme Name:     Listify Child
Template:       listify
Version:        1.0
*/


/**
Dailyvatives ROOT variables
*/
:root {
    /* =========================
     Brand Colors
     ========================= */
    --color-primary-dark-red: #c10407;
    /* Dark Red */
    --color-secondary-dark-purple: #0e223b;
    /* Dark Purple */

    --color-primary-hover: #A12424;
    --color-primary-active: #6F1717;

    /* =========================
     Text Colors
     ========================= */
    --color-text-primary: #1F1F1F;
    /* Charcoal */
    --color-text-secondary: #808893;
    /* Slate Gray */


    /* =========================
   Surface & Layout Colors
   ========================= */
    --color-bg-main: #ffffff;
    /* Body background */
    --color-bg-soft: #f7f9fc;
    /* Section backgrounds */
    --color-bg-card: #ffffff;
    /* Cards */
    --color-bg-border: #e5e7eb;
    /* Light separators */

    /* =========================
   Typography Colors
   ========================= */
    --color-heading-primary: var(--color-secondary-dark-purple);
    /* #0e223b */
    --color-heading-secondary: var(--color-primary-dark-red);
    /* #c10407 */
    --color-text-muted: #6b7280;
    --color-text-light: #9ca3af;

    /* =========================
   UI State Colors
   ========================= */
    --color-success: #16a34a;
    --color-warning: #f59e0b;
    --color-danger: #dc2626;
    --color-info: #0284c7;

    /* =========================
   Navigation (Light Theme)
   ========================= */
    --nav-bg: #ffffff;
    --nav-text: #0e223b;
    --nav-text-hover: var(--color-primary-dark-red);
    --nav-border: #e5e7eb;

    /* =========================
   Buttons
   ========================= */
    --btn-primary-bg: var(--color-primary-dark-red);
    --btn-primary-text: #ffffff;
    --btn-primary-hover: var(--color-primary-hover);
    --btn-primary-active: var(--color-primary-active);

    --btn-secondary-bg: var(--color-secondary-dark-purple);
    --btn-secondary-text: #ffffff;

    /* =========================
   Header System
   ========================= */
    --header-height: 86px;
    --header-bg: #ffffff;
    --header-border: #e5e7eb;
    --header-shadow: 0 8px 20px rgba(0, 0, 0, .04);

    --nav-link-color: var(--color-secondary-dark-purple);
    --nav-link-hover: var(--color-primary-dark-red);
    --nav-link-active: var(--color-primary-dark-red);


}


/* =========================
   GP TYPOGRAPHY SYSTEM
========================= */

body {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text-secondary);
    background: var(--color-bg-body);
    padding-top: 0px !important;
}


/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Epilogue', serif;
    color: var(--color-secondary-dark-purple);
    font-weight: 700;
    letter-spacing: 0.02em;
}


.btn-primary {
    background: var(--btn-bg-primary);
    color: var(--btn-text-primary);
    border-radius: var(--radius-md);
}

.btn-primary:hover {
    background: var(--btn-bg-primary-hover);
}



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

p {
    color: var(--color-text-secondary);
}

a:hover {
    color: var(--color-link-hover);
}

.card {
    background: var(--color-bg-surface);
    border: 1px solid var(--color-border-default);
    box-shadow: var(--shadow-sm);
}

.cta-primary {
    background: var(--btn-bg-primary);
    color: var(--btn-text-primary);
    padding: 12px 24px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
}

.cta-primary:hover {
    background: var(--btn-bg-primary-hover);
}

.cta-secondary {
    background: var(--btn-bg-secondary);
    color: var(--btn-text-secondary);
    padding: 12px 24px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
}

.cta-secondary:hover {
    background: var(--btn-bg-secondary-hover);
}

.v-spacer-40 {
    height: 40px;
}

.v-spacer-60 {
    height: 60px;
}

.v-spacer-80 {
    height: 80px;
}

.v-spacer-100 {
    height: 100px;
}

.v-spacer-120 {
    height: 120px;
}

.v-spacer-140 {
    height: 140px;
}


header.gp-custom-header.site-header {
    box-shadow: var(--header-shadow);
    background-color: var(--header-bg);
    border-bottom: 1px solid var(--header-border);
}

div.site-content.gp-side-content {
    /* margin: 160px 0; */
}

/* =========================
   GP NAVIGATION
========================= */

/* Main Navigation */
.gp-custom-header .nav-menu.primary li a:hover {}

.nav-menu li,
ul.nav-menu li {
    margin-right: 15px;
    line-height: 24px;
}

.nav-menu li.current-menu-item a {
    color: var(--color-primary-dark-red);
}

.nav-menu.primary a,
.nav-menu.primary li:before,
.nav-menu.primary li:after,
.nav-menu.primary a:before,
.nav-menu.primary a:after {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-size: 18px !important;
    line-height: 100px !important;
    font-weight: 500 !important;
    text-transform: none !important;
    letter-spacing: 0.5px !important;
}






/* =========================
   GP UTILITIES
========================= */

.gp-text-center {
    text-align: center;
}

.gp-text-right {
    text-align: right;
}

.gp-mt-20 {
    margin-top: 20px;
}

.gp-mb-40 {
    margin-bottom: 40px;
}

.gp-hidden {
    display: none;
}

.bi {
    font-size: 0.8rem;
    color: var(--gp-text-secondary);
    /* grayscale default */
}

.gp-icon-primary {
    color: var(--gp-green-primary);
}

.gp-icon-wine {
    color: var(--gp-wine-dark);
}




/* =========================
   GP – HEADER
========================= */

.gp-custom-header {}

.gp-custom-header .primary-header {
    background: var(--color-bg-body);
    box-shadow: none;
    color: var(--color-text-primary);
    border-bottom: 1px solid var(--color-border-default);
}

.gp-custom-header-image {
    max-width: 180px;
    height: 100px;
}


/* =========================
   GP – COMMON
========================= */
/* .gp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gp-cta-button {
    display: inline-block;
    padding: 12px 24px;
    background: #000;
    color: #fff;
    text-decoration: none;
} */

/* =========================
   GP – SINGLE VENUE
========================= */
/* .gp-single-venue {}

.gp-venue-banner {
    padding: 60px 0;
    background: #f5f5f5;
}

.gp-venue-banner-inner {
    display: flex;
    gap: 40px;
}

.gp-venue-banner-content {
    flex: 1;
}

.gp-venue-banner-form {
    flex: 1;
} */

/* =========================
   GP – ARCHIVE & TAXONOMY
========================= */
/* .gp-venue-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.gp-venue-card {
    padding: 20px;
    border: 1px solid #ddd;
}

.gp-archive-body,
.gp-taxonomy-body {
    padding: 60px 0;
}

.gp-archive-sidebar,
.gp-taxonomy-sidebar {
    width: 25%;
}

.gp-archive-listing,
.gp-taxonomy-listing {
    width: 75%;
}
 */





/* =========================
   GP – LANDING PAGE
========================= */
.gp-landing-page {}

/* =========================
   HERO SECTION
========================= */
/* .gp-landing-hero {
    position: relative;
    min-height: 100vh;
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
}

.gp-landing-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

.gp-landing-hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 60px;
    align-items: center;
}

.gp-landing-hero-content {
    flex: 1;
}

.gp-landing-hero-form {
    flex: 1;
    background: #fff;
    padding: 30px;
    border-radius: 4px;
}

.gp-landing-hero-title {
    font-size: 48px;
    margin-bottom: 20px;
}

.gp-landing-hero-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
} */

/* =========================
   SECTIONS
========================= */
.gp-section-header {
    margin-bottom: 40px;
}

.gp-section-title {
    font-size: 32px;
}

/* =========================
   FEATURED WEEKLY COLLECTION
========================= */
.gp-featured-weekly-section {
    padding: 80px 0;
}

.gp-featured-weekly-collection {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.gp-featured-card {
    height: 300px;
    background: #f2f2f2;
    border-radius: 6px;
}

/* =========================
   FULL WIDTH IMAGE ROW
========================= */
.gp-fullwidth-image-row {
    position: relative;
    min-height: 400px;
    background: #ccc;
    display: flex;
    align-items: center;
}

.gp-fullwidth-image-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
}

.gp-fullwidth-image-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.gp-fullwidth-image-title {
    font-size: 36px;
}

/* =========================
   CURATED COLLECTION
========================= */
.gp-curated-collection-section {
    padding: 80px 0;
}

.gp-curated-collection {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}



/* =========================
   GP LANDING PAGE STARTS HERE
========================= */


/* =========================
   GP HERO BANNER
========================= */

.gp-hero-banner {
    position: relative;
    min-height: 90vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.gp-hero-overlay {
    display: none;
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.gp-hero-content {
    position: relative;
    z-index: 2;
    color: var(--gp-text-light);
    padding: 60px 20px;
}

/* Headings */
.gp-hero-title {
    font-size: 3.2rem;
    color: var(--gp-text-light);
    margin-bottom: 20px;
}

.gp-hero-subtitle {
    visibility: hidden;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
}

/* =========================
   HERO FORM
========================= */

.gp-hero-banner-form {
    display: flex;
    justify-content: center;
}

.gp-hero-search-form {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Individual Fields */
.gp-hero-form-field {
    padding: 5px 30px;
    position: relative;
}

.gp-hero-form-field:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: var(--gp-border-light);
}

.gp-hero-form-field .select::after {
    color: var(--gp-text-primary);
    position: absolute;
    top: 10px;
}

/* Inputs */
.gp-hero-form-field select,
.gp-hero-form-field input {
    border: none;
    outline: none;
    height: 60px;
    font-family: 'Jost', sans-serif;
    font-size: 1.2rem;
    color: var(--gp-text-primary);
    background: transparent;
}

/* Submit Button */
.gp-hero-form-submit button {
    height: 75px;
    width: 170px;
    border: none;
    background: var(--gp-wine-dark);
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.gp-hero-form-submit button:hover {
    background: var(--gp-green-primary);
}

/* =========================
   GP HERO OVERLAY
========================= */

.gp-hero-overlay {
    position: absolute;
    inset: 0;
    /* background: rgba(0, 0, 0, 0.75); */
    /* Adjustable */
    z-index: 1;
}


.gp-hero-title {
    font-size: 2.5rem;
    color: var(--gp-text-light);
    margin-bottom: 20px;
    font-family: 'Merriweather', serif;
}

.gp-hero-title span {
    display: block;
    color: var(--gp-text-light);
    font-size: 2.5rem;
    font-weight: 400;
    margin-top: 10px;
    /* color: rgba(255, 255, 255, 0.85); */
}

.gp-hero-form-submit i {
    font-size: 1.2rem;
    color: #ffffff;
}


/* =========================
   FEATURED VENUES SECTION
========================= */

.gp-featured-eyebrow {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gp-text-secondary);
    padding-bottom: 20px;
}

.gp-featured-main-title {
    margin: 20px 0 20px;
    color: var(--gp-wine-dark);
}

/* Toggle Buttons */
.gp-featured-toggle-buttons {
    display: inline-flex;
    gap: 10px;
}

.gp-toggle-btn {
    padding: 10px 22px;
    border: 2px solid var(--gp-wine-dark);
    background: transparent;
    color: var(--gp-wine-dark);
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    cursor: pointer;
}

.gp-toggle-active {
    background: var(--gp-wine-dark);
    color: #fff;
}

/* =========================
   CARD – HOMEPAGE
========================= */

.gp-card-container-homepage {
    background: #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

/* Image */
.gp-card-image {
    position: relative;
}

.gp-card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Badges */
.gp-card-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    gap: 10px;
}

.gp-badge {
    background: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gp-wine-dark);
}

/* Title */
.gp-card-title {
    padding: 10px 18px;
    height: 88px;
}

.gp-card-title h3,
.gp-card-title h3 a {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--gp-wine-dark);
    text-decoration: none;
}

p.gp-card-subtitle {
    padding: 0px 18px;
    font-size: 14px;
    min-height: 80px;
}

/* Meta Rows */
.gp-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 18px;
    font-size: 0.85rem;
}

.gp-card-divider {
    width: 1px;
    height: 18px;
    background: #ddd;
    margin: 0 12px;
}

.gp-card-meta-top,
.gp-card-meta-bottom {
    border-bottom: 1px solid #eee;
    height: 45px;
    overflow: hidden;
}

/* CTA */
.gp-card-cta {
    display: none;
    padding: 15px 18px;
}

.gp-card-btn {
    display: block;
    width: 100%;
    padding: 12px;
    text-align: center;
    border: 2px solid var(--gp-wine-dark);
    color: var(--gp-wine-dark);
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
}

.gp-card-btn:hover {
    background: var(--gp-wine-dark);
    color: #fff;
}

/* Response */
.gp-card-response {
    padding: 10px 18px 18px;
    font-size: 1rem;
    text-align: center;
    color: var(--gp-text-secondary);
}

/* =========================
   GP SPLIT SECTION
========================= */

.gp-split-section {
    position: relative;
}

/* Top Image Half */
.gp-split-image {
    height: 65vh;
    background-size: cover;
    background-position: center;
}

/* Bottom Blank Half */
.gp-split-blank {
    height: 20vh;
    background: #ffffff;
}

/* Content Wrapper (Overlap) */
.gp-split-content-wrapper {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 2;
}

/* Content Box */
.gp-split-content {
    background: var(--gp-bg-grey);
    padding: 60px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

/* =========================
   SPLIT SECTION CONTENT
========================= */

.gp-split-title {
    color: var(--gp-green-heading);
    margin-bottom: 10px;
}

.gp-split-subtitle {
    color: var(--gp-wine-dark);
    margin-bottom: 20px;
}

.gp-split-description {
    color: var(--gp-text-secondary);
    margin-bottom: 30px;
}

/* Actions Row */
.gp-split-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Button */
.gp-split-btn {
    padding: 12px 28px;
    background: var(--gp-wine-dark);
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
}

/* Phone Icon */
.gp-split-phone {
    width: 48px;
    height: 48px;
    background: var(--gp-wine-dark);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gp-split-phone .bi-telephone-fill {
    font-size: 1.2rem;
    color: #ffffff;
}

/* Phone Text */
.gp-split-phone-text {
    font-weight: 600;
    color: var(--gp-wine-dark);
}

/* Right Image */
.gp-split-side-image {
    max-width: 100%;
    height: auto;
}


/* =========================
   GP INSPIRATION LABELS
========================= */

.gp-landing-listing-labels-containers {
    background: #ffffff;
    margin-top: 80px;
}

.gp-inspiration-title {
    color: var(--gp-wine-dark);
}

.gp-inspiration-card {
    position: relative;
    height: 380px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gp-inspiration-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

.gp-inspiration-heading {
    position: relative;
    color: #ffffff;
    font-size: 32px;
    text-align: center;
    letter-spacing: 1px;
}


/* =========================
   GP BLOG SECTION
========================= */

.gp-landing-blog-section {
    background: var(--gp-bg-grey);
}

.gp-blog-title {
    color: var(--gp-wine-dark);
}

.gp-blog-subtitle {
    color: var(--gp-text-secondary);
}

.gp-blog-card {
    background: #ffffff;
    padding: 20px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.gp-blog-image img {
    width: 100%;
    height: 300px;
}

.gp-blog-meta,
.gp-blog-meta span,
.gp-blog-meta a {
    font-size: 13px;
    color: var(--gp-text-muted);
    margin: 10px 0;
}

.gp-blog-card-title,
.gp-blog-card-title a {
    font-size: 18px;
    margin-bottom: 10px;
    text-decoration: none;
    color: var(--gp-wine-dark);
}

.gp-blog-excerpt {
    font-size: 14px;
    margin-bottom: 15px;
}

.gp-blog-readmore {
    color: var(--gp-wine-dark);
    font-weight: 600;
    text-decoration: none;
}

.gp-blog-view-more {
    padding: 12px 30px;
    border: 2px solid var(--gp-wine-dark);
    color: var(--gp-wine-dark);
    text-decoration: none;
    font-weight: 600;
}



/**
Blog
*/


.blog-cards-landing-page {
    margin-top: 40px;
}


.gp-landing-idoabroad-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

/* ========================
   GP LANDING PAGE ENDS HERE
========================= */


/* ========================
   GP BLOG PAGE STARTS HERE
========================= */

.gp-side-content .page-title,
.gp-side-content .job_listing-title {
    font-family: 'Merriweather', serif;
    /* color: var(--gp-wine-dark); */
    font-weight: 700;
    letter-spacing: 0.02em;
}

.gp-post-container,
.gp-single-job-listing-container {
    margin-top: 40px;
}


.gp-side-content .gp-single-job-listing-container h1,
.gp-side-content .gp-single-job-listing-container h2,
.gp-side-content .gp-single-job-listing-container h3,
.gp-side-content .gp-single-job-listing-container h4,
.gp-side-content .gp-single-job-listing-container h5,
.gp-side-content .gp-single-job-listing-container h6,
.gp-side-content .gp-post-container h1,
.gp-side-content .gp-post-container h2,
.gp-side-content .gp-post-container h3,
.gp-side-content .gp-post-container h4,
.gp-side-content .gp-post-container h5,
.gp-side-content .gp-post-container h6 {
    font-family: 'Merriweather', serif;
    color: var(--gp-wine-dark);
}

.gp-side-content .gp-post-container a,
.gp-side-content .gp-single-job-listing-container a,
.single-job_listing .widget a:not(.button) {
    /* text-decoration: none; */
    color: var(--gp-text-primary)
}


/* SIDEBAR */

.gp-custom-sidebar {}

.gp-custom-sidebar form {}

.gp-custom-sidebar form button {
    padding: 12px 28px;
    background: var(--color-primary);
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
}

.gp-custom-sidebar form label {
    display: none;
}

/* ========================
   GP BLOG PAGE ENDS HERE
========================= */






/* =========================
   GP FOOTER
========================= */

.gp-footer {
    background: #ffffff;
    padding-top: 20px;
    border-top: 3px solid #efefef;
    margin-top: 60px;
}

.gp-footer-social-row {
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.gp-footer-social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.gp-footer-social-links span.gp-footer-separator:last-child {
    display: none;
}

.gp-footer-social {
    color: var(--gp-text-primary);
    text-decoration: none;
    font-weight: 500;
}

.gp-footer-separator {
    width: 1px;
    height: 16px;
    background: rgba(0, 0, 0, 0.2);
}

.gp-footer-heading {
    /* color: var(--gp-text-primary); */
    color: var(--gp-wine-dark);
    margin-bottom: 25px;
}

.gp-footer-heading span {
    color: var(--gp-wine-dark);
}

.gp-footer-cta-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.gp-btn-outline-wine {
    border: 2px solid var(--gp-wine-dark);
    color: var(--gp-wine-dark);
    padding: 12px 22px;
    text-decoration: none;
    font-weight: 600;
}

.gp-btn-wine {
    background: var(--gp-wine-dark);
    color: #ffffff;
    padding: 12px 22px;
    text-decoration: none;
    font-weight: 600;
}

.gp-footer-secondary-links {
    display: flex;
    gap: 20px;
}

.gp-footer-secondary-links a {
    color: var(--gp-text-primary);
    text-decoration: none;
}

.gp-footer-menu-title {
    /* color: var(--gp-wine-dark); */
    margin-bottom: 15px;
}

.gp-footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-top: 20px;
}

.gp-footer-menu li,
.gp-footer li {
    margin-bottom: 10px;
    list-style: none;
}

.gp-footer-menu a {
    color: var(--gp-text-primary);
    text-decoration: none;
}

.gp-footer-copyright {
    padding: 20px 0;
    font-size: 14px;
    background-color: #ebe7e7
}

.footer-site-branding img {
    max-width: 50px;
    height: auto;
}

/**GP FOOTER ENDS HERE
*/


/* =========================
   GP CONTACT PAGE
========================= */

.gp-contact-hero {
    position: relative;
    height: 70vh;
    background-size: cover;
    background-position: center;
}


.gp-contact-hero .gp-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.gp-hero-title {
    margin-top: 200px;
    color: var(--gp-wine-dark);
    z-index: 2;
    position: relative;
}

.gp-hero-subtitle {
    color: #fff;
    z-index: 2;
    position: relative;
    max-width: 700px;
    margin: 15px auto 0;
}

.gp-contact-section {
    /* padding: 80px 0; */
}

.gp-contact-form-box {
    background: #fff;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.gp-contact-form-box h1,
.gp-contact-form-box h2,
.gp-contact-form-box h3,
.gp-contact-form-box h4,
.gp-contact-form-box h5,
.gp-contact-form-box h6,
.gp-contact-info-box h1,
.gp-contact-info-box h2,
.gp-contact-info-box h3,
.gp-contact-info-box h4,
.gp-contact-info-box h5,
.gp-contact-info-box h6 {
    margin-bottom: 20px;
    color: var(--color-secondary-dark-purple);
    font-family: 'Epilogue', serif;
}

.gp-contact-info-box {
    /* background: var(--gp-green-light); */
    background: #ffffff;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;

}

.gp-contact-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gp-contact-points li {
    margin-bottom: 12px;
    font-weight: 500;
}

.gp-contact-direct p {
    margin-top: 15px;
    font-weight: 600;
}


/* =========================
   CONTACT PAGE – SOCIAL LINKS
========================= */

.gp-contact-social-wrapper {
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.gp-contact-social-title {
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--gp-text-primary);
}

.gp-contact-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.gp-contact-social {
    width: 42px;
    height: 42px;
    border: 1px solid var(--color-secondary-dark-purple);
    color: var(--color-secondary-dark-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.gp-contact-social:hover {
    background: var(--gp-wine-dark);
    color: #ffffff;
}


/* =========================
   GP CALL TO ACTION SECTION
========================= */

.gp-calltoaction-section {
    background: var(--gp-green-light);
    padding: 30px 0;
    margin-top: 60px;
}

.gp-cta-text {
    font-size: 24px;
    font-weight: 500;
    color: var(--gp-text-primary);
    max-width: 750px;
}

.gp-cta-button {
    padding: 14px 34px;
    font-size: 16px;
}

.gp-calltoaction-section .gp-cta-button:hover {
    background: transparent;
    color: var(--gp-text-primary);
    border: 1px solid var(--gp-wine-dark);
}


.gp-venue-hero,
.gp-venue-body {
    position: relative;
    width: 100%;
}

.gp-venue-hero {
    min-height: 70vh;
    display: flex;
    align-items: flex-end;
    color: #ffffff;
}

.gp-venue-hero-media {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.gp-venue-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gp-venue-hero .gp-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.gp-venue-hero-content {
    position: relative;
    padding-bottom: 60px;
    z-index: 2;
}

.gp-venue-title {
    font-family: 'Merriweather', serif;
    font-size: 3rem;
    font-weight: 700;
    margin: 15px 0;
    line-height: 1.2;
}

.gp-venue-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.95rem;
}

.gp-venue-meta i {
    margin-right: 6px;
    color: var(--gp-secondary-light);
}

.gp-venue-rating strong {
    font-weight: 600;
}

.gp-venue-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.gp-badge {
    background: #ffffff;
    color: #222;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.gp-badge i {
    color: var(--gp-secondary-dark);
}

.gp-venue-body {
    /* padding: 80px 0; */
    background: #ffffff;
}

.gp-venue-main {
    padding-right: 30px;
}

.gp-venue-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #222;
    margin-bottom: 50px;
}

.gp-venue-description p:last-child {
    margin-bottom: 0;
}

.gp-venue-taxonomies {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.gp-tax-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.gp-tax-pill {
    background: rgba(8, 96, 25, 0.08);
    color: #086019;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 500;
}

.gp-venue-sidebar {
    position: sticky;
    top: 120px;
}

.gp-sidebar-card {
    background: #ffffff;
    border: 1px solid #eee;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.gp-sidebar-card h4 {
    font-family: 'Merriweather', serif;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.gp-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
}

.gp-btn-primary {
    background: var(--gp-secondary-dark);
    color: #ffffff;
    border: none;
}

.gp-btn-primary:hover {
    background: rgb(92, 38, 63);
    color: #ffffff;
}

.gp-venue-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 8px 0;
    font-size: 0.9rem;
}

.gp-venue-contact i {
    color: var(--gp-secondary-dark);
}

.gp-venue-socials {
    display: flex;
    gap: 12px;
}

.gp-venue-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(247, 191, 180, 0.25);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: var(--gp-secondary-dark);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.gp-venue-socials a:hover {
    background: var(--gp-secondary-dark);
    color: #ffffff;
}

.gp-venue-sidebar #secondary,
.gp-venue-sidebar .widget-area {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    /* background: #ffffff; */
    /* border: 1px solid #eee; */
    /* padding: 25px; */
    /* margin-bottom: 30px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
    */
}

.gp-venue-sidebar #secondary aside {
    padding: 25px;
    background: #ffffff;
    border: 1px solid #eee;
    border-radius: 0;
    margin-bottom: 30px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.gp-venue-sidebar #secondary aside .map-widget-section {
    padding: 0;
    border: none;
    box-shadow: none;
}

.gp-venue-sidebar #secondary aside h2,
.gp-venue-sidebar #secondary aside h2 a {
    /* font-family: 'Merriweather', serif;
    font-size: 1.2rem; */
    margin-bottom: 15px;
    color: var(--gp-wine-dark);
    text-decoration: none;
    font-weight: 700;
}


.gp-venue-sidebar #secondary aside .listify-gallery-images {
    padding: 0;
}

.gp-tax-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.gp-tax-pill i {
    font-size: 0.85rem;
    color: var(--gp-secondary-dark);
}

.gp-tax-title {
    margin-bottom: 12px;
}

.gp-tax-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.gp-tax-group {
    display: block !important;
}

.gp-tax-group h5 {
    display: block !important;
    width: 100%;
}

.gp-tax-group .pills-container {
    display: flex !important;
    width: 100%;
    margin-top: 10px;
}


.gp-cta-offer-badge {
    /* background: #f4f6f4; */
    padding: 20px;
    border-radius: 6px;
}

.gp-cta-star {
    font-size: 28px;
    color: silver;
}

.gp-cta-offer-text del {
    opacity: 0.6;
}

.gp-cta-price {
    color: var(--gp-wine-color);
    font-size: 22px;
    font-weight: bold;
}

.gp-cta-offer-badge {
    background-image: url('../listify-child/assets/images/silver-star.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;

    min-height: 160px;
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
    padding: 20px;
}

.gp-cta-offer-text {
    font-weight: 600;
    color: #222;
    line-height: 1.3;
}

.gp-cta-offer-text del {
    opacity: 0.6;
}

.gp-cta-price {
    color: var(--gp-wine-dark);
    font-size: 22px;
    font-weight: 700;
}

.gp-nav-icons {
    gap: 8px;
}

.gp-nav-icon {
    font-size: 20px;
    color: var(--gp-text-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    position: relative;
}

.gp-nav-icons .bi {
    font-size: 20px;
}

.gp-nav-icon:hover {
    color: var(--gp-wine-color);
    transform: translateY(-1px);
}


.gp-nav-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #fff;
}

.gp-nav-icon:hover {
    background: var(--gp-wine-color);
    color: #fff;
    border-color: var(--gp-wine-color);
}

.primary-header .nav-menu.primary {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-menu-container {
    flex: 1 1 auto;
}

.gp-nav-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #fff;
    color: var(--gp-text-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.25s ease;
}

.gp-nav-icon:hover {
    background: var(--gp-wine-color);
    color: #fff;
    border-color: var(--gp-wine-color);
    transform: translateY(-1px);
}

.primary-header .container {
    padding: 0;
}


.gp-contact-header-box {
    /* background: var(--gp-green-light); */
    /* padding: 20px; */
    margin-bottom: 40px;
    text-align: center;
}

/**
GP MORE GLOBALS STYLES
*/

.gp-page-title {
    margin-top: 80px
}

.page-subtitle-animated-red {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary-dark-red);
    margin-bottom: 10px;
    font-family: 'Mansalva', sans-serif;
}

.page-title-animated-purple {
    /* font-size: 2.5rem; */
    /* font-weight: 800; */
    color: var(--color-secondary-dark-purple);
    margin-bottom: 20px;
    font-family: 'Epilogue', serif;
    line-height: 1.2;
    font-size: 60px !important;
    /* line-height: 1.1 !important; */
    font-weight: 800 !important;
    letter-spacing: -2px !important;
    position: relative;
    display: inline-block;
    color: var(--color-secondary-dark-purple);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    z-index: 1;
}

/* Decorative underline */
.page-title-animated-purple::after {
    content: '';
    position: absolute;
    left: 15%;
    bottom: 12px;
    width: 70%;
    height: 16px;
    background: #c10407a6;
    z-index: -1;

}

/**
Dailyvatives styles
*/

#masthead {
    background: var(--header-bg);
    border-bottom: 1px solid var(--header-border);
    position: sticky;
    top: 0;
    z-index: 999;
}

.primary-header {
    height: var(--header-height);
    display: flex;
    align-items: center;
}

.primary-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-branding img {
    height: 52px;
}

.main-navigation {
    background: #fff;
}

.main-navigation ul li a {
    color: var(--nav-link-color);
    font-weight: 600;
    padding: 12px 18px;
    position: relative;
    transition: all .25s ease;
}

/* .main-navigation ul li a::after {
    content: '';
    position: absolute;
    left: 18px;
    bottom: 4px;
    width: 0%;
    height: 3px;
    background: var(--color-primary-dark-red);
    transition: width .3s ease;
}

.main-navigation ul li a:hover::after,
.main-navigation ul li.current-menu-item a::after {
    width: calc(100% - 36px);
}

body.scrolled #masthead {
    box-shadow: var(--header-shadow);
} */


/** Dailyvative Landing Page Styles
*/


.gp-landing-page {
    background-color: var(--gp-bg-color);
}

/* Images */
.gp-blog-image,
.gp-category-image,
.gp-category-image img,
.gp-casestudy-image {
    width: 100%;
    /* aspect-ratio: 1 / 1; */
    /* background-color: var(--gp-muted-bg); */
}

.gp-category-popular .gp-category-image img {
    aspect-ratio: 1.2/1;
}

/* Titles */
.gp-blog-title,
.gp-category-title,
.gp-popular-heading,
.gp-casestudy-title {
    color: var(--color-heading-primary);
    text-decoration: none;
}

/* Latest Blogs */
.gp-latest-blogs {
    padding-bottom: 60px;
}

.gp-latest-blog-item {
    text-align: left;
}

.gp-latest-blog-item .gp-blog-title {
    font-size: 30px;
    margin-top: 15px;
    box-shadow: inset 0 0 0 0 #000;
    margin-bottom: 10px;
    text-decoration: none;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -1px;
}

.gp-category-item {
    margin-bottom: 30px;
}

/* Popular Articles */
.gp-popular-divider {
    height: 3px;
    width: 100%;
    background-color: var(--color-bg-border);
    margin: 20px 0;
}

.gp-popular-item {
    padding: 10px 0;
    border-bottom: 1px solid var(--gp-border-color);
}

.gp-popular-date {
    font-size: 1rem;
    color: var(--gp-muted-text);
    font-weight: 500;
}

/* Pagination */
.gp-pagination {
    margin-top: 20px;
}

.gp-pagination a {
    margin-right: 10px;
    color: var(--gp-text-color);
    text-decoration: none;
}

/* Case Studies */
.gp-casestudies {
    padding: 60px 0;
}

.gp-casestudy-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary-dark-red);
    font-family: 'Mansalva', sans-serif;
    margin-bottom: 8px;
}

.gp-casestudy-title {
    font-size: 30px;
    font-weight: 800;
    color: var(--color-heading-primary);
    text-decoration: none;
    margin-top: 15px;
    margin-bottom: 10px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.gp-casestudy-title a {
    text-decoration: none;
}

/* Footer */
/* .gp-footer {
    padding: 60px 0 20px;
    background-color: var(--gp-footer-bg);
}

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

.gp-footer ul {
    list-style: none;
    padding: 0;
}

.gp-footer li {
    margin-bottom: 8px;
}

.gp-footer-copyright {
    text-align: center;
    padding-top: 20px;
    font-size: 0.85rem;
    border-top: 1px solid var(--gp-border-color);
} */


.gp-latest-blogs .gp-blog-image {
    margin-bottom: 15px;
    height: 320px;
}


.gp-category-popular .gp-category-item .col-md-8 {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gp-category-popular .gp-category-title {
    margin-bottom: 10px;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 800;
    text-decoration: none;
}

.gp-category-popular .gp-category-excerpt {
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.gp-category-popular .gp-category-excerpt .gp-read-more {

    color: var(--color-primary-dark-red);
}


.gp-popular-articles .gp-popular-heading {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -1px
}

.gp-popular-articles h3.gp-popular-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 10px;
    letter-spacing: -1px;
}

.gp-popular-articles h3.gp-popular-title a {
    /* font-size: 20px;
    font-weight: 600;
    margin-top: 8px; */
    text-decoration: none;
}


/**
GP ABOUT US PAGE
*/

.gp-about-us-content-box,
.gp-our-services-content-box,
.gp-how-we-work-content-box,
.gp-faq-content-box,
.gp-career-collaborate-content-box,
.gp-privacy-policy-content-box,
.gp-terms-conditions-content-box {
    background: #ffffff;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.gp-about-us-content-box h1,
.gp-about-us-content-box h2,
.gp-about-us-content-box h3,
.gp-about-us-content-box h4,
.gp-about-us-content-box h5,
.gp-about-us-content-box h6 {
    margin-bottom: 20px;
    color: var(--color-secondary-dark-purple);
    font-family: 'Epilogue', serif;
}


.center-glow-shadow {
    position: relative;
    background: #fff;
}

.center-glow-shadow::after {
    content: '';
    position: absolute;
    left: 10%;
    right: 10%;
    bottom: -18px;
    height: 30px;
    background: radial-gradient(ellipse at center,
            rgba(0, 0, 0, 0.25) 0%,
            rgba(0, 0, 0, 0.15) 35%,
            rgba(0, 0, 0, 0.08) 55%,
            rgba(0, 0, 0, 0.02) 75%,
            rgba(0, 0, 0, 0.0) 100%);
    filter: blur(12px);
    z-index: -1;
}





.gp-contact-page input[type=submit] {
    /* margin-bottom: 20px; */
    background-color: var(--color-primary-dark-red);
    color: #ffffff
}

.gp-casestudies-section .gp-casestudy-image {
    /* margin-bottom: 15px; */
    /* height: 280px; */
}

.gp-casestudies-section .gp-casestudy-image a.gp-latest-blog-link {
    /* margin-bottom: 15px;
    height: 280px; */
}

.gp-casestudies-section .gp-casestudy-image a.gp-latest-blog-link img {
    margin-bottom: 15px;
    height: 280px;
    width: 100%;
}


/* =========================
   GP RESPONSIVE
========================= */

/* @media (min-width: 992px) {
    .nav-menu.primary {
        text-align: right;
        padding-left: 2em;
    }
}

@media (max-width: 991px) {

    .gp-venue-title {
        font-size: 2.2rem;
    }

    .gp-venue-main {
        padding-right: 0;
    }

    .gp-venue-sidebar {
        position: static;
        margin-top: 40px;
    }
}


@media (min-width: 768px) {


    .gp-venue-sidebar #secondary .gp-venue-sidebar .widget-area {
        width: 100%;
        max-width: 100%;
    }
} */


/* OFFICIAL BOOTSTRAP BREAKPOINTS */

/* // X-Small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    .primary-header .nav-menu.primary {
        display: none;
    }

    .navigation-bar-wrapper.active {
        display: block;
        height: 60vh;
        overflow-y: auto;
    }

    .nav-menu.primary a {
        line-height: 25px !important;
    }

    .search-form {
        position: relative;
        margin-top: 6px;
    }

    /*
    .gp-calltoaction-section {
        padding: 10px 0;
    }

    .gp-featured-toggle-buttons {
        display: none;
    }

    .gp-split-content {
        padding: 20px;
    }
    .gp-btn-outline-wine{
        padding: 12px 6px;
    } */
}

/* // Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {}

/* // Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {}

/* // Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {}

/* // X-Large devices (large desktops, less than 1400px) */
@media (max-width: 1399.98px) {}