/*
 * VANNE TRAVEL
 * Global Design System
 */

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

    --vt-ink: #17232B;
    --vt-body: #495660;
    --vt-muted: #74808A;
    --vt-white: #FFFFFF;
    --vt-surface: #FCFBF8;
    --vt-border: #E8ECEF;
}

/* GLOBAL HEADER */

.site-header {
    position: relative;
    z-index: 100;
}

.site-header-row-container-inner {
    background: #FFFFFF;
    border-bottom: 1px solid var(--vt-border);
}

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

.header-navigation .header-menu-container ul.menu > li > a {
    color: var(--vt-body);
    font-weight: 600;
    transition: color 0.2s ease;
}

.header-navigation .header-menu-container ul.menu > li > a:hover,
.header-navigation .header-menu-container ul.menu > li.current-menu-item > a {
    color: #365F7D;
}

/* GLOBAL BUTTONS */

.vt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    text-align: center;
}

/* GLOBAL FOOTER */

.site-footer {
    display: none !important;
}

.vt-global-footer {
    background: #17232B;
    color: #D7E1E8;
    padding: 76px 0 0;
}

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

.vt-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 48px;
}

.vt-footer-brand {
    color: #FFFFFF;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.04em;
    text-decoration: none;
}

.vt-footer-brand:hover {
    color: #FFFFFF;
}

.vt-footer-description {
    max-width: 320px;
    margin: 20px 0 24px;
    color: #BFCBD3;
    font-size: 15px;
    line-height: 1.8;
}

.vt-footer-accent {
    display: flex;
    gap: 7px;
}

.vt-footer-accent span {
    width: 28px;
    height: 5px;
    border-radius: 5px;
}

.vt-footer-accent span:nth-child(1) {
    background: var(--vt-blue);
}

.vt-footer-accent span:nth-child(2) {
    background: var(--vt-green);
}

.vt-footer-accent span:nth-child(3) {
    background: var(--vt-pink);
}

.vt-footer-accent span:nth-child(4) {
    background: var(--vt-purple);
}

.vt-footer-column h3 {
    margin: 0 0 25px;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 700;
}

.vt-footer-column ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.vt-footer-column li {
    margin-bottom: 14px;
}

.vt-global-footer a {
    color: #D7E1E8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.vt-global-footer a:hover {
    color: var(--vt-blue);
}

.vt-footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 64px;
    padding: 26px 0;
    border-top: 1px solid #34434D;
    color: #BFCBD3;
    font-size: 13px;
}

.vt-footer-bottom p {
    margin: 0;
}

/* RESPONSIVE FOOTER */

@media (max-width: 900px) {
    .vt-footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 42px;
    }
}

@media (max-width: 600px) {
    .vt-global-footer {
        padding-top: 54px;
    }

    .vt-footer-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .vt-footer-bottom {
        flex-direction: column;
        gap: 10px;
        margin-top: 42px;
    }
}

/* VANNE GLOBAL HEADER REFINEMENT */

.site-header {
    position: relative;
    z-index: 100;
    background: #FFFFFF;
}

.site-header::before {
    content: "";
    display: block;
    height: 3px;
    background: linear-gradient(
        90deg,
        #DDF3FF 0%,
        #DFF5E7 33%,
        #FFE3EE 66%,
        #EDE5FF 100%
    );
}

.site-header .site-header-row-container-inner {
    background: #FFFFFF;
    border-bottom: 1px solid #E8ECEF;
}

.site-header .site-branding .site-title {
    color: #17232B;
    font-size: 25px;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.site-header .header-navigation
.header-menu-container ul.menu > li > a {
    color: #495660;
    font-size: 14px;
    font-weight: 600;
    padding-left: 11px;
    padding-right: 11px;
    transition: color 0.2s ease;
}

.site-header .header-navigation
.header-menu-container ul.menu > li > a:hover,
.site-header .header-navigation
.header-menu-container ul.menu > li.current-menu-item > a {
    color: #315D77;
}

.site-header a:focus-visible,
.site-header button:focus-visible {
    outline: 2px solid #315D77;
    outline-offset: 4px;
}

/* MOBILE HEADER */

@media (max-width: 767px) {

    .site-header .site-branding .site-title {
        font-size: 22px;
    }

    .site-header .mobile-navigation ul li a {
        font-size: 15px;
        font-weight: 600;
    }

}

/* VANNE MOBILE HERO - FINAL RESPONSIVE LAYOUT */

@media screen and (max-width: 767px) {

    .home .vt-hero {
        padding: 28px 0 50px !important;
        overflow: hidden;
    }

    .home .vt-hero .vt-container {
        width: calc(100% - 36px) !important;
        max-width: 100% !important;
    }

    .home .vt-hero .vt-hero-grid {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 30px !important;
    }

    .home .vt-hero-grid > * {
        min-width: 0 !important;
        width: 100% !important;
    }

    .home .vt-hero-copy {
        padding: 10px 0 0 !important;
    }

    .home .vt-hero-copy h1 {
        max-width: 100% !important;
        font-size: clamp(36px, 9vw, 46px) !important;
        line-height: 1.1 !important;
        letter-spacing: -0.04em !important;
        overflow-wrap: normal !important;
        word-break: normal !important;
    }

    .home .vt-hero-copy > p {
        font-size: 16px !important;
        line-height: 1.65 !important;
    }

    .home .vt-hero-media {
        position: relative !important;
        width: 100% !important;
        min-height: 340px !important;
    }

    .home .vt-media-placeholder {
        inset: 0 !important;
        padding: 26px !important;
        border-radius: 22px !important;
    }

    .home .vt-media-placeholder strong {
        font-size: 25px !important;
        line-height: 1.2 !important;
        overflow-wrap: normal !important;
        word-break: normal !important;
    }

    .home .vt-floating-card {
        display: none !important;
    }
}
