/*
Theme Name: Vanne Travel
Template: kadence
Version: 1.2.0
Description: Custom Spain tourism UI built on Kadence.
*/

:root {
    --vt-blue: #DDF3FF;
    --vt-green: #DFF5E7;
    --vt-pink: #FFE3EE;
    --vt-purple: #EDE5FF;

    --vt-ink: #17232B;
    --vt-body: #495660;
    --vt-muted: #74808A;
    --vt-line: #E8ECEF;
    --vt-cream: #FCFBF8;
    --vt-white: #FFFFFF;

    --vt-radius-sm: 18px;
    --vt-radius-md: 26px;
    --vt-radius-lg: 36px;

    --vt-shadow:
        0 20px 60px rgba(23,35,43,.08);
}


/* RESET / FOUNDATION */

html {
    scroll-behavior: smooth;
}

body {
    color: var(--vt-ink);
    background: var(--vt-cream);
}

.home .entry-header,
.home .entry-title {
    display: none;
}

.home .site-content,
.home .content-area,
.home .site-main,
.home article,
.home .entry-content-wrap,
.home .entry-content {
    width: 100%;
    max-width: none;
    margin: 0 !important;
    padding: 0 !important;
}

.home .site-content {
    display: block;
}

.vt-container {
    width: min(1240px, calc(100% - 64px));
    margin-inline: auto;
}

.vt-kicker {
    display: inline-block;
    margin-bottom: 16px;
    color: #68757F;
    font-size: 13px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.vt-section {
    padding: 104px 0;
}

.vt-section h2,
.vt-family-copy h2,
.vt-final-cta h2 {
    margin: 0;
    color: var(--vt-ink);
    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.04;
    letter-spacing: -.045em;
}


/* HEADER */

.site-header-row-container-inner {
    background: rgba(255,255,255,.96);
    border-bottom: 1px solid var(--vt-line);
}

.site-header-main-section-left,
.site-header-main-section-center,
.site-header-main-section-right {
    min-height: 82px;
}

.site-branding .site-title {
    color: var(--vt-ink);
    font-weight: 800;
    letter-spacing: -.035em;
}

.header-navigation .header-menu-container ul.menu > li > a {
    color: #44505A;
    font-size: 15px;
    font-weight: 600;
}

.header-navigation .header-menu-container ul.menu > li > a:hover {
    color: var(--vt-ink);
}


/* HERO */

.vt-hero {
    padding: 58px 0 86px;
    overflow: hidden;
    background:
        linear-gradient(135deg,#FFFFFF 0%,#FCF8FA 48%,#F6FAFC 100%);
}

.vt-hero-grid {
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    gap: 78px;
    align-items: center;
}

.vt-hero-copy {
    padding: 60px 0;
}

.vt-hero-copy h1 {
    max-width: 720px;
    margin: 0 0 26px;
    color: var(--vt-ink);
    font-size: clamp(54px, 6vw, 82px);
    line-height: .98;
    letter-spacing: -.055em;
}

.vt-hero-copy > p {
    max-width: 650px;
    margin: 0;
    color: var(--vt-body);
    font-size: 19px;
    line-height: 1.75;
}

.vt-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.vt-btn {
    display: inline-flex;
    min-height: 52px;
    padding: 0 24px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.vt-btn:hover {
    transform: translateY(-2px);
}

.vt-btn-dark {
    color: #fff;
    background: var(--vt-ink);
    box-shadow: 0 12px 28px rgba(23,35,43,.15);
}

.vt-btn-dark:hover {
    color: #fff;
}

.vt-btn-light {
    color: var(--vt-ink);
    background: #fff;
    border: 1px solid var(--vt-line);
}

.vt-hero-notes {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 34px;
    color: var(--vt-muted);
    font-size: 13px;
    font-weight: 600;
}

.vt-hero-media {
    position: relative;
    min-height: 620px;
}

.vt-media-placeholder {
    position: absolute;
    inset: 30px 20px 30px 20px;
    display: flex;
    padding: 48px;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: var(--vt-radius-lg);
    background:
        linear-gradient(
            145deg,
            var(--vt-blue),
            var(--vt-pink) 52%,
            var(--vt-purple)
        );
    box-shadow: var(--vt-shadow);
}

.vt-media-placeholder span {
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
}

.vt-media-placeholder strong {
    max-width: 360px;
    font-size: 34px;
    line-height: 1.05;
}

.vt-media-placeholder small {
    margin-top: 12px;
    color: var(--vt-body);
}

.vt-floating-card {
    position: absolute;
    z-index: 3;
    display: flex;
    padding: 18px 22px;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255,255,255,.9);
    border-radius: 18px;
    background: rgba(255,255,255,.92);
    box-shadow: 0 14px 38px rgba(23,35,43,.12);
    backdrop-filter: blur(10px);
}

.vt-floating-one {
    top: 5px;
    right: -8px;
}

.vt-floating-two {
    bottom: 10px;
    left: -12px;
}


/* DISCOVER STRIP */

.vt-discover-strip {
    position: relative;
    z-index: 5;
    margin-top: -34px;
}

.vt-discover-grid {
    display: grid;
    grid-template-columns: 1.25fr repeat(3,.75fr);
    gap: 14px;
    padding: 24px;
    border: 1px solid var(--vt-line);
    border-radius: 26px;
    background: #fff;
    box-shadow: var(--vt-shadow);
}

.vt-discover-grid > div {
    padding: 12px 18px;
}

.vt-discover-grid h2 {
    margin: 0;
    font-size: 26px;
    letter-spacing: -.03em;
}

.vt-small-card {
    display: flex;
    min-height: 94px;
    padding: 18px;
    align-items: center;
    gap: 13px;
    border-radius: 20px;
    color: var(--vt-ink);
    font-weight: 700;
    text-decoration: none;
    transition: transform .2s ease;
}

.vt-small-card:hover {
    color: var(--vt-ink);
    transform: translateY(-3px);
}

.vt-blue { background: var(--vt-blue); }
.vt-green { background: var(--vt-green); }
.vt-pink { background: var(--vt-pink); }
.vt-purple { background: var(--vt-purple); }


/* SECTION HEADERS */

.vt-heading-row {
    display: flex;
    margin-bottom: 40px;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
}

.vt-heading-row h2,
.vt-heading-center h2 {
    margin: 0;
    font-size: clamp(38px,4vw,56px);
    line-height: 1.03;
    letter-spacing: -.045em;
}

.vt-text-link {
    color: var(--vt-ink);
    font-weight: 700;
    text-decoration: none;
}

.vt-heading-center {
    max-width: 730px;
    margin: 0 auto 48px;
    text-align: center;
}

.vt-heading-center p {
    color: var(--vt-body);
    font-size: 18px;
    line-height: 1.7;
}


/* DESTINATIONS */

.vt-destination-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 22px;
}

.vt-destination-card {
    overflow: hidden;
    border: 1px solid var(--vt-line);
    border-radius: var(--vt-radius-md);
    background: #fff;
    color: var(--vt-ink);
    text-decoration: none;
    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.vt-destination-card:hover {
    color: var(--vt-ink);
    transform: translateY(-7px);
    box-shadow: var(--vt-shadow);
}

.vt-card-media {
    display: flex;
    aspect-ratio: 4 / 3.3;
    align-items: flex-end;
    padding: 20px;
    color: rgba(23,35,43,.65);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.vt-media-blue {
    background: linear-gradient(145deg,#CDEFFF,#EAF8FF);
}

.vt-media-pink {
    background: linear-gradient(145deg,#FFDCE9,#FFF1F6);
}

.vt-media-green {
    background: linear-gradient(145deg,#D2F2DD,#F0FAF3);
}

.vt-media-purple {
    background: linear-gradient(145deg,#E4DBFF,#F5F0FF);
}

.vt-card-content {
    padding: 24px;
}

.vt-card-label {
    color: var(--vt-muted);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.vt-card-content h3 {
    margin: 8px 0 9px;
    font-size: 25px;
    letter-spacing: -.03em;
}

.vt-card-content p {
    margin: 0;
    color: var(--vt-body);
    line-height: 1.6;
}


/* FAMILY */

.vt-family-section {
    padding: 112px 0;
    background:
        linear-gradient(
            90deg,
            #F5FBF7 0%,
            #FFFFFF 48%,
            #F4FAFD 100%
        );
}

.vt-family-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 84px;
    align-items: center;
}

.vt-family-placeholder {
    display: flex;
    min-height: 540px;
    padding: 40px;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: var(--vt-radius-lg);
    background:
        linear-gradient(
            145deg,
            var(--vt-green),
            var(--vt-blue)
        );
}

.vt-family-placeholder span {
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
}

.vt-family-placeholder strong {
    font-size: 34px;
}

.vt-family-placeholder small {
    margin-top: 8px;
}

.vt-family-copy p {
    max-width: 580px;
    margin: 26px 0;
    color: var(--vt-body);
    font-size: 18px;
    line-height: 1.75;
}

.vt-family-features {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 12px;
    margin-bottom: 30px;
}

.vt-family-features span {
    padding: 14px 16px;
    border: 1px solid var(--vt-line);
    border-radius: 14px;
    background: #fff;
    font-size: 14px;
    font-weight: 600;
}


/* EXPERIENCES */

.vt-experience-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 18px;
}

.vt-experience {
    min-height: 270px;
    padding: 28px;
    border-radius: var(--vt-radius-md);
    color: var(--vt-ink);
    text-decoration: none;
    transition: transform .2s ease;
}

.vt-experience:hover {
    color: var(--vt-ink);
    transform: translateY(-5px);
}

.vt-exp-icon {
    display: flex;
    width: 50px;
    height: 50px;
    margin-bottom: 62px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,.75);
    font-size: 21px;
}

.vt-experience h3 {
    margin: 0 0 9px;
    font-size: 23px;
}

.vt-experience p {
    margin: 0;
    color: var(--vt-body);
    line-height: 1.6;
}


/* EDITORIAL */

.vt-editorial-section {
    padding: 105px 0;
    background: #fff;
}

.vt-editorial-grid {
    display: grid;
    grid-template-columns: 1.4fr .8fr .8fr;
    gap: 22px;
}

.vt-story {
    overflow: hidden;
    border: 1px solid var(--vt-line);
    border-radius: var(--vt-radius-md);
    background: var(--vt-cream);
}

.vt-story-media {
    display: flex;
    min-height: 230px;
    padding: 24px;
    align-items: flex-end;
    background:
        linear-gradient(135deg,var(--vt-pink),var(--vt-blue));
    color: var(--vt-body);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.vt-story-large .vt-story-media {
    min-height: 340px;
}

.vt-story-content {
    padding: 25px;
}

.vt-story-content > span {
    color: var(--vt-muted);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.vt-story-content h3 {
    margin: 8px 0;
    font-size: 23px;
    line-height: 1.2;
    letter-spacing: -.025em;
}

.vt-story-large .vt-story-content h3 {
    font-size: 30px;
}

.vt-story-content p {
    color: var(--vt-body);
}


/* CTA */

.vt-final-cta {
    padding: 82px 0;
    background:
        linear-gradient(
            90deg,
            var(--vt-purple),
            var(--vt-pink),
            var(--vt-blue)
        );
}

.vt-final-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}


/* OTHER PAGES */

.vanne-page-intro {
    max-width: 780px;
    margin: 55px auto 50px;
    text-align: center;
}

.vanne-page-intro h1 {
    margin: 0 0 14px;
    font-size: clamp(42px,5vw,64px);
    letter-spacing: -.045em;
}

.vanne-page-intro p {
    color: var(--vt-body);
    font-size: 18px;
}

.vanne-dynamic-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 22px;
    margin-bottom: 70px;
}

.vanne-dynamic-card {
    display: block;
    padding: 26px;
    border: 1px solid var(--vt-line);
    border-radius: var(--vt-radius-md);
    background: #fff;
    color: var(--vt-ink);
    text-decoration: none;
}

.vanne-dynamic-card:hover {
    color: var(--vt-ink);
    box-shadow: var(--vt-shadow);
}

.vanne-card-icon {
    display: block;
    margin-bottom: 20px;
    font-size: 32px;
}

.vanne-dynamic-card h3 {
    margin: 0 0 8px;
    font-size: 23px;
}

.vanne-dynamic-card p {
    margin: 0;
    color: var(--vt-body);
}


/* FOOTER */

.site-footer {
    border-top: 1px solid var(--vt-line);
}

.site-footer-row-container-inner {
    background: #fff;
}


/* TABLET */

@media (max-width: 1024px) {

    .vt-container {
        width: min(100% - 40px,1240px);
    }

    .vt-hero-grid,
    .vt-family-grid {
        gap: 45px;
    }

    .vt-destination-grid,
    .vt-experience-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .vt-discover-grid {
        grid-template-columns: repeat(3,1fr);
    }

    .vt-discover-grid > div {
        grid-column: 1 / -1;
    }

    .vt-editorial-grid {
        grid-template-columns: 1fr 1fr;
    }

    .vt-story-large {
        grid-column: 1 / -1;
    }
}


/* MOBILE */

@media (max-width: 767px) {

    .vt-container {
        width: min(100% - 28px,1240px);
    }

    .vt-section,
    .vt-family-section,
    .vt-editorial-section {
        padding: 72px 0;
    }

    .vt-hero {
        padding: 25px 0 60px;
    }

    .vt-hero-grid,
    .vt-family-grid {
        grid-template-columns: 1fr;
    }

    .vt-hero-copy {
        padding: 30px 0 10px;
    }

    .vt-hero-copy h1 {
        font-size: clamp(45px,13vw,64px);
    }

    .vt-hero-media {
        min-height: 440px;
    }

    .vt-media-placeholder {
        inset: 15px 0;
    }

    .vt-floating-one {
        right: 5px;
    }

    .vt-floating-two {
        left: 5px;
    }

    .vt-discover-strip {
        margin-top: 0;
        padding-top: 20px;
    }

    .vt-discover-grid {
        grid-template-columns: 1fr;
    }

    .vt-destination-grid,
    .vt-experience-grid,
    .vt-editorial-grid,
    .vanne-dynamic-grid {
        grid-template-columns: 1fr;
    }

    .vt-family-features {
        grid-template-columns: 1fr;
    }

    .vt-family-placeholder {
        min-height: 420px;
    }

    .vt-heading-row,
    .vt-final-grid {
        align-items: flex-start;
        flex-direction: column;
    }

    .vt-story-large {
        grid-column: auto;
    }
}


/* =====================================================
   VANNE UI POLISH V1.2
   ===================================================== */


/* ----- BUTTON SYSTEM ----- */

.vt-btn,
.wp-element-button,
.wp-block-button__link,
button,
input[type="submit"],
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
    min-height: 46px !important;
    padding: 0 20px !important;

    border: 1px solid transparent !important;
    border-radius: 12px !important;

    font-size: 14px !important;
    line-height: 1 !important;
    font-weight: 700 !important;
    letter-spacing: -.01em !important;

    box-shadow: none !important;

    transition:
        background-color .18s ease,
        border-color .18s ease,
        color .18s ease,
        transform .18s ease,
        box-shadow .18s ease !important;
}


.vt-btn-dark {
    background: #17232B !important;
    color: #fff !important;
    border-color: #17232B !important;

    box-shadow:
        0 5px 14px rgba(23,35,43,.12) !important;
}


.vt-btn-dark:hover {
    background: #24343E !important;
    border-color: #24343E !important;
    color: #fff !important;

    transform: translateY(-1px);
    box-shadow:
        0 7px 18px rgba(23,35,43,.15) !important;
}


.vt-btn-light {
    background: #fff !important;
    color: #17232B !important;
    border-color: #DDE3E7 !important;
}


.vt-btn-light:hover {
    background: #F7F9FA !important;
    color: #17232B !important;
    border-color: #CAD2D8 !important;

    transform: translateY(-1px);
}


/* WooCommerce buttons */

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
    background: #17232B !important;
    color: #fff !important;
}


/* ----- GLOBAL PAGE FEEL ----- */

body {
    background: #FBFBF9;
}


.vt-section {
    padding: 88px 0;
}


.vt-container {
    width: min(1280px, calc(100% - 72px));
}


/* ----- HEADER ----- */

.site-header-row-container-inner {
    background: rgba(255,255,255,.98);
    border-bottom: 1px solid #E9EDF0;

    box-shadow:
        0 1px 0 rgba(23,35,43,.02);
}


.site-header-main-section-left,
.site-header-main-section-center,
.site-header-main-section-right {
    min-height: 76px;
}


.header-navigation .header-menu-container ul.menu > li > a {
    padding-left: 14px;
    padding-right: 14px;

    font-size: 14px;
    font-weight: 600;
}


/* ----- HERO ----- */

.vt-hero {
    padding: 42px 0 72px;

    background:
        radial-gradient(
            circle at 88% 15%,
            rgba(221,243,255,.7),
            transparent 27%
        ),
        radial-gradient(
            circle at 74% 82%,
            rgba(255,227,238,.55),
            transparent 30%
        ),
        #FBFBF9;
}


.vt-hero-grid {
    grid-template-columns: 1.04fr .96fr;
    gap: 64px;
}


.vt-hero-copy {
    padding: 54px 0;
}


.vt-hero-copy h1 {
    max-width: 760px;

    font-size: clamp(52px,5.4vw,74px);
    line-height: .99;

    letter-spacing: -.052em;
}


.vt-hero-copy > p {
    max-width: 610px;

    font-size: 18px;
    line-height: 1.72;
}


.vt-actions {
    gap: 10px;
    margin-top: 30px;
}


.vt-hero-notes {
    margin-top: 28px;
    gap: 10px;
}


.vt-hero-notes span {
    padding: 7px 11px;

    border: 1px solid #E4E9EC;
    border-radius: 8px;

    background: rgba(255,255,255,.72);

    font-size: 12px;
}


/* ----- HERO MEDIA ----- */

.vt-hero-media {
    min-height: 560px;
}


.vt-media-placeholder {
    inset: 20px;

    padding: 38px;

    border: 1px solid rgba(23,35,43,.05);
    border-radius: 28px;

    background:
        linear-gradient(
            145deg,
            #DDF3FF 0%,
            #F7FAFC 37%,
            #FFE3EE 70%,
            #EDE5FF 100%
        );

    box-shadow:
        0 28px 70px rgba(23,35,43,.08);
}


.vt-floating-card {
    padding: 14px 17px;

    border-radius: 12px;

    font-size: 13px;

    box-shadow:
        0 10px 30px rgba(23,35,43,.10);
}


/* ----- DISCOVERY BAR ----- */

.vt-discover-strip {
    margin-top: -25px;
}


.vt-discover-grid {
    padding: 18px;

    gap: 10px;

    border-radius: 18px;

    box-shadow:
        0 14px 42px rgba(23,35,43,.07);
}


.vt-small-card {
    min-height: 82px;

    padding: 16px 18px;

    border-radius: 13px;
}


/* ----- SECTION HEADINGS ----- */

.vt-heading-row {
    margin-bottom: 34px;
}


.vt-heading-row h2,
.vt-heading-center h2 {
    font-size: clamp(36px,3.8vw,52px);
}


.vt-heading-center {
    margin-bottom: 40px;
}


/* ----- DESTINATIONS ----- */

.vt-destination-grid {
    gap: 18px;
}


.vt-destination-card {
    border-radius: 18px;

    box-shadow:
        0 2px 8px rgba(23,35,43,.025);
}


.vt-destination-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 15px 38px rgba(23,35,43,.09);
}


.vt-card-media {
    aspect-ratio: 16 / 11;

    padding: 18px;
}


.vt-card-content {
    padding: 21px;
}


.vt-card-content h3 {
    font-size: 23px;
}


/* ----- FAMILY SECTION ----- */

.vt-family-section {
    padding: 96px 0;

    background:
        linear-gradient(
            115deg,
            rgba(223,245,231,.70),
            #FFFFFF 46%,
            rgba(221,243,255,.66)
        );
}


.vt-family-grid {
    gap: 70px;
}


.vt-family-placeholder {
    min-height: 500px;

    border-radius: 26px;

    background:
        linear-gradient(
            145deg,
            #DFF5E7,
            #F8FCFA 45%,
            #DDF3FF
        );

    box-shadow:
        0 25px 60px rgba(23,35,43,.07);
}


.vt-family-features {
    gap: 8px;
}


.vt-family-features span {
    padding: 11px 13px;

    border-radius: 9px;

    font-size: 13px;
}


/* ----- EXPERIENCE CARDS ----- */

.vt-experience-grid {
    gap: 16px;
}


.vt-experience {
    min-height: 245px;

    padding: 25px;

    border-radius: 18px;

    border: 1px solid rgba(23,35,43,.035);
}


.vt-exp-icon {
    width: 44px;
    height: 44px;

    margin-bottom: 48px;
}


.vt-experience h3 {
    font-size: 21px;
}


/* ----- EDITORIAL AREA ----- */

.vt-editorial-section {
    padding: 92px 0;

    background: #F5F6F4;
}


.vt-editorial-grid {
    gap: 18px;
}


.vt-story {
    border-radius: 18px;

    background: #fff;
}


.vt-story-media {
    min-height: 220px;
}


.vt-story-large .vt-story-media {
    min-height: 330px;
}


/* ----- FINAL CTA ----- */

.vt-final-cta {
    padding: 68px 0;

    background:
        linear-gradient(
            105deg,
            #EDE5FF,
            #FFE8F1 48%,
            #E1F4FF
        );
}


/* ----- LINK DETAILS ----- */

.vt-text-link {
    padding-bottom: 3px;

    border-bottom: 1px solid #BFC8CE;

    font-size: 14px;
}


.vt-text-link:hover {
    border-color: #17232B;
}


/* ----- MOBILE ----- */

@media (max-width:767px) {

    .vt-container {
        width: min(100% - 30px,1280px);
    }


    .vt-section,
    .vt-family-section,
    .vt-editorial-section {
        padding: 65px 0;
    }


    .vt-hero-copy h1 {
        font-size: clamp(42px,12vw,58px);
    }


    .vt-btn {
        min-height: 44px !important;
        padding: 0 17px !important;

        border-radius: 10px !important;
    }


    .vt-hero-media {
        min-height: 405px;
    }


    .vt-media-placeholder {
        inset: 10px 0;
    }

}


/* =====================================================
   UI FIX V1.3
   Remove Kadence homepage gap + restore refined pills
   ===================================================== */


/* REMOVE EMPTY SPACE BETWEEN HEADER AND HOMEPAGE */

.home .entry-hero-container,
.home .entry-hero-container-inner,
.home .page-hero-section,
.home .page-title,
.home .entry-header {
    display: none !important;
    min-height: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.home #inner-wrap,
.home #primary,
.home .site-content,
.home .content-area,
.home .content-container,
.home .content-wrap,
.home .site-main,
.home article,
.home .entry-content-wrap,
.home .entry-content {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.home .site-content {
    margin-top: 0 !important;
}

.home .vt-hero {
    margin-top: 0 !important;
}


/* BUTTONS — RESTORE ORIGINAL PILL STYLE */

.vt-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    min-height: 46px !important;
    height: 46px !important;

    padding: 0 23px !important;

    border-radius: 999px !important;

    font-size: 14px !important;
    line-height: 1 !important;
    font-weight: 700 !important;

    text-align: center !important;
    vertical-align: middle !important;

    white-space: nowrap;
}


.vt-btn-dark {
    color: #fff !important;
    background: #17232B !important;
    border: 1px solid #17232B !important;

    box-shadow:
        0 6px 16px rgba(23,35,43,.13) !important;
}


.vt-btn-dark:hover {
    color: #fff !important;
    background: #24343E !important;

    transform: translateY(-1px);
}


.vt-btn-light {
    color: #17232B !important;
    background: #fff !important;

    border: 1px solid #DCE2E6 !important;
}


.vt-btn-light:hover {
    color: #17232B !important;
    background: #F8F9FA !important;
}


/* Keep button contents mathematically centered */

.vt-btn *,
.vt-btn span {
    line-height: 1 !important;
    margin: 0 !important;
}


/* MOBILE */

@media (max-width:767px) {

    .vt-btn {
        min-height: 44px !important;
        height: 44px !important;

        padding: 0 20px !important;

        border-radius: 999px !important;
    }

}


/* CLEAN BUTTON ALIGNMENT FIX */

a.vt-btn,
.home a.vt-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: auto !important;
    height: auto !important;
    min-height: 46px !important;

    padding: 12px 24px 11px !important;

    border-radius: 999px !important;

    font-size: 14px !important;
    line-height: 1.15 !important;
    font-weight: 700 !important;

    text-align: center !important;
    white-space: nowrap !important;

    box-sizing: border-box !important;
}

a.vt-btn-dark {
    background: #17232B !important;
    color: #FFFFFF !important;
    border: 1px solid #17232B !important;
}

a.vt-btn-light {
    background: #FFFFFF !important;
    color: #17232B !important;
    border: 1px solid #DCE2E6 !important;
}

@media (max-width: 767px) {
    a.vt-btn,
    .home a.vt-btn {
        min-height: 44px !important;
        padding: 11px 20px 10px !important;
    }
}

/* VANNE: WordPress Media Library photography */
.vt-hero-media .vt-media-placeholder.vt-has-photo,
.vt-family-media .vt-family-placeholder.vt-has-photo,
.vt-destination-card .vt-card-media.vt-has-photo,
.vt-story .vt-story-media.vt-has-photo {
    padding: 0;
    overflow: hidden;
}

.vt-hero-media .vt-media-placeholder.vt-has-photo,
.vt-family-media .vt-family-placeholder.vt-has-photo {
    position: relative;
}

.vt-hero-media .vt-has-photo .vt-installed-photo,
.vt-family-media .vt-has-photo .vt-installed-photo,
.vt-destination-card .vt-has-photo .vt-installed-photo,
.vt-story .vt-has-photo .vt-installed-photo {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vt-hero-media .vt-media-placeholder.vt-has-photo,
.vt-family-media .vt-family-placeholder.vt-has-photo {
    display: block;
    aspect-ratio: 4 / 3;
}

.vt-hero-media .vt-has-photo .vt-installed-photo,
.vt-family-media .vt-has-photo .vt-installed-photo {
    position: absolute;
    inset: 0;
}
