/* ============================================
   GLOBAL CSS — Header + Footer
   Used on all pages
   ============================================ */

@font-face {
    font-family: "IvyJournal";
    src: url(https://vela.testview.io/wp-content/uploads/2026/04/IvyJournal-Bold.woff2);
    font-weight: 700;
}
@font-face {
    font-family: "IvyJournal";
    src: url(https://vela.testview.io/wp-content/uploads/2026/04/IvyJournal-Regular.woff2);
    font-weight: 400;
}
@font-face {
    font-family: "IvyJournal";
    src: url(https://vela.testview.io/wp-content/uploads/2026/04/IvyJournal-SemiBold.woff2);
    font-weight: 600;
}

body {
    margin: 0;
}

.vela {
    --font-body: 'kyrial-sans-pro', sans-serif;
    --font-display: 'IvyJournal', sans-serif;
    --font-ui: 'Josefin Sans', sans-serif;
    --bg: #dff0ee;
   // --text: #2e2e2e;
    --text: #555555;
    --nav-link: #444;
    --btn-bg: #e8724a;
    --btn-hover: #cf5a33;
    --btn-text: #fff;
}

.vela *,
.vela *::before,
.vela *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

strong {
    font-weight: 600;
}

.vela {
    font-family: var(--font-body);
}

.vela-container {
    max-width: 1760px;
    padding: 0px 20px;
    margin: 0 auto;
}

/* ── NAVBAR ── */
.vela-header {
    width: 100%;
    background: linear-gradient(180deg, #DAE9E7 0%, #e8f5f3 60%, #effffd 100%);
    backdrop-filter: blur(8px);
    position: sticky;
    top: 0;
    z-index: 13;
}

/* ── HEADER ON-LOAD ANIMATION ── */
.vela-logo {
    opacity: 0;
    transform: translateY(-18px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    max-width: 120px;
}

.vela-logo img {
    width: 100%;
}

.vela-nav-links li {
    opacity: 0;
    transform: translateY(-18px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.vela-btn-download.vela-desktop-btn {
    opacity: 0;
    transform: translateY(-18px);
    transition: opacity 0.5s ease, transform 0.5s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.vela-header.vela-in-view .vela-logo {
    opacity: 1;
    transform: none;
    transition-delay: 0.1s;
}

.vela-header.vela-in-view .vela-nav-links li:nth-child(1) {
    opacity: 1;
    transform: none;
    transition-delay: 0.2s;
}

.vela-header.vela-in-view .vela-nav-links li:nth-child(2) {
    opacity: 1;
    transform: none;
    transition-delay: 0.3s;
}

.vela-header.vela-in-view .vela-nav-links li:nth-child(3) {
    opacity: 1;
    transform: none;
    transition-delay: 0.34s;
}

.vela-header.vela-in-view .vela-nav-links li:nth-child(4) {
    opacity: 1;
    transform: none;
    transition-delay: 0.38s;
}

.vela-header.vela-in-view .vela-nav-links li:nth-child(5) {
    opacity: 1;
    transform: none;
    transition-delay: 0.42s;
}

.vela-header.vela-in-view .vela-nav-links li:nth-child(6) {
    opacity: 1;
    transform: none;
    transition-delay: 0.46s;
}

.vela-header.vela-in-view .vela-btn-download.vela-desktop-btn {
    opacity: 1;
    transform: none;
    transition-delay: 0.4s;
}

.vela-nav {
    margin: 0 auto;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

/* ── LOGO ── */
.vela-logo {
    display: flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
    flex-shrink: 0;
}

.vela-logo-text {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.55rem;
    letter-spacing: 0.08em;
    color: var(--text);
    line-height: 1;
}

.vela-logo-icon {
    display: inline-flex;
    align-items: flex-end;
    margin-left: -2px;
}

/* ── NAV LINKS ── */
.vela-nav-links {
    display: flex;
    align-items: center;
    gap: 3rem;
    list-style: none;
    margin: 0px !important;
    padding: 0;
}

.vela-nav-links a {
    font-family: kyrial-sans-pro, sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--nav-link);
    text-decoration: none;
    position: relative;
    transition: color 0.25s;
}

.vela-nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--btn-bg);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.vela-nav-links a:hover {
    color: var(--btn-bg);
}

.vela-nav-links a:hover::after {
    width: 100%;
}

/* ── DOWNLOAD BUTTON ── */
.vela-btn-download {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 14px 20px;
    background: #ED7C53 !important;
    color: var(--btn-text) !important;
    border: none;
    border-radius: 30px;
    font-family: kyrial-sans-pro, sans-serif !important;
    font-size: 1.2rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none !important;
    white-space: nowrap;
    flex-shrink: 0;
    line-height: 1;
    transition: background 0.35s ease, box-shadow 0.35s ease, transform 0.2s ease !important;
}

.vela-btn-download:hover {
    background: #CD3C07 !important;
    box-shadow: 2px 1px 10px rgba(207, 90, 51, 0.45);
    transform: translateY(-1px);
    color: white !important;
}

.vela-btn-download:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(207, 90, 51, 0.3);
}

.vela-btn-download .vela-dl-icon {
    display: inline-flex;
    align-items: center;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── HAMBURGER (mobile) ── */
.vela-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    border: none;
    background: transparent;
    flex-shrink: 0;
}

.vela-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.vela-hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.vela-hamburger.open span:nth-child(2) {
    opacity: 0;
}

.vela-hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── MOBILE MENU ── */
.vela-mobile-menu {
    display: none;
    flex-direction: column;
    gap: 0;
    background: linear-gradient(180deg, #e2f0ee, #d8ebe8);
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.vela-mobile-menu.open {
    max-height: 520px;
}

.vela-mobile-menu a {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    font-family: var(--font-ui);
    color: var(--nav-link);
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: background 0.2s, color 0.2s;
    display: block;
}

.vela-mobile-menu a:hover {
    background: rgba(232, 114, 74, 0.08);
    color: var(--btn-bg);
}

.vela-mobile-menu .vela-btn-download {
    margin: 1rem 2rem 1.2rem;
    justify-content: center;
    display: flex;
}

.main-content-wrapper li {
    font-size: 22px;
    font-family: 'kyrial-sans-pro';
}

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

.main-footer {
    background-color: #F5EEE6;
    padding: 70px 20px 0px;
    position: relative;
    overflow: hidden;
    background-image: url(https://vela.testview.io/wp-content/uploads/2026/04/right-bg-vector.svg);
    background-repeat: no-repeat;
    background-position: right;
    background-size: contain;
}

.footer-container {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1760px;
    margin: 0 auto;
    justify-content: space-between;
    padding-bottom: 70px;
    border-bottom: 1px solid hsl(219deg 30% 27% / 39%);
    z-index: 1;
    position: relative;
}

.footer-logo {
    margin-bottom: 60px;
}

.footer-logo img {
    width: 225px;
}

.footer-left-col {
    max-width: 770px;
    width: 100%;
}

.footer-right-col {
    max-width: 680px;
    width: 100%;
}

footer .quick-links h4 {
    font-size: 30px;
    font-family: var(--font-display), serif;
    color: #31405B;
    font-weight: 600;
    margin-bottom: 16px;
}

footer .quick-links ul {
    list-style-type: none;
    padding: 0;
    margin: 15px 0;
    display: flex;
    gap: 35px;
}

footer .quick-links li {
    margin: 5px 0;
}

footer .quick-links a {
    text-decoration: none;
    color: #31405B;
    font-size: 20px;
    transition: color 0.3s;
    font-family: var(--font-body);
    text-transform: capitalize;
}

footer .quick-links a:hover {
    color: #000;
}

.download-links h4 {
    font-size: 30px;
    margin-bottom: 28px;
    font-family: var(--font-display), serif;
    color: #31405B;
    font-weight: 600;
}

footer .download-links {
    margin-bottom: 45px;
}

footer .app-store img {
    margin: 0 10px;
    width: 180px;
}

footer .social-icons a {
    margin: 0 10px;
}

.footer-bottom {
    padding: 30px 0px;
    width: 100%;
    text-align: center;
    font-size: 20px;
    color: #31405B;
    font-family: var(--font-body);
    display: flex;
    align-items: center;
    max-width: 1760px;
    margin: 0 auto;
    justify-content: space-between;
    z-index: 1;
    position: relative;
}

.footer-bottom p {
    font-size: 20px;
    margin: 0;
}

.footer-bottom a {
    font-family: var(--font-body);
    text-decoration: none;
    color: #31405B;
}

.download-links h4 br {
    display: none;
}

footer .footer-bottom .quick-links ul {
    margin: 0;
}

.footer-right-deco {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: min(445px, 30vw);
    z-index: 0;
}

.footer-left-deco {
    position: absolute;
    bottom: 0px;
    left: 0;
    z-index: 0;
    max-width: 13.906vw;
}

.a--copyright-icon {
    font-size: 25px;
}

/* ── RESPONSIVE — Global ── */
@media (max-width: 1500px) {
    footer .quick-links ul {
        gap: 24px;
    }
    footer .quick-links a {
        font-size: 18px;
    }
    .download-links h4,
    footer .quick-links h4 {
        font-size: 28px;
    }
}

@media (max-width: 1450px) {
    .footer-right-col {
        max-width: 450px;
        width: 100%;
    }
    .download-links h4 br {
        display: block;
    }
}

@media (max-width: 1110px) {
    footer .quick-links ul {
        gap: 14px;
    }
    footer .quick-links a,
    .footer-bottom p {
        font-size: 14px;
    }
    .a--copyright-icon {
        font-size: 18px;
    }
}

@media (max-width: 1024px) {
    .vela-logo {
        max-width: 100px;
    }
    footer .quick-links ul {
        justify-content: center;
    }
    .footer-container {
        flex-direction: column;
    }
    .footer-left-col {
        max-width: 100%;
        text-align: center;
    }
    .footer-right-col {
        text-align: center;
        margin-top: 40px;
    }
    .main-footer {
        background-size: 0;
    }
    .a--copyright-icon {
        font-size: 20px;
    }
    .footer-bottom p {
        font-size: 16px;
    }
    footer .quick-links a {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .vela-nav-links {
        display: none;
    }
    .vela-btn-download.vela-desktop-btn {
        display: none;
    }
    .vela-hamburger {
        display: flex;
    }
    .vela-mobile-menu {
        display: flex;
    }
    .vela-logo {
        max-width: 75px;
    }
    footer .quick-links li {
        margin: 0;
    }
    .footer-right-col {
        margin-top: 20px;
        margin-bottom: 30px;
    }
    .main-footer {
        padding: 40px 20px 0px;
    }
    .footer-bottom {
        padding: 16px 0px;
        flex-direction: column-reverse;
        gap: 20px;
    }
    .footer-logo img {
        width: 150px;
    }
    .footer-logo {
        margin-bottom: 30px;
    }
    .download-links h4,
    footer .quick-links h4 {
        font-size: 20px;
    }
    footer .quick-links a,
    .footer-bottom {
        font-size: 14px;
    }
    footer .quick-links ul {
        margin: 0;
    }
    footer .quick-links ul{
   		max-width: 100%;
        width: 100%;
        flex-wrap: wrap;
        row-gap: 5px;
    }
    footer .app-store img {
        width: 130px;
        margin: 0 5px;
    }
    footer .footer-bottom p {
        font-size: 14px;
    }
    .footer-container{
    	    padding-bottom: 0;
    }
}

@media (max-width: 480px) {
    .vela-nav {
        height: 58px;
    }
    .vela-logo-text {
        font-size: 1.3rem;
    }
    footer .app-store img {
        width: 130px;
        margin: 0 5px;
    }
}