/*
Theme Name: Health Upp by Nutrivision
Version: 1.0
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    color: #fff;
    background-color: rgba(19, 23, 28, 1);
}

.container {
    padding: 0 20px;
}

h2 {
    font-family: Nunito;
    font-weight: 700;
    font-size: 32px;
    line-height: 40px;
    letter-spacing: -0.5%;
    color: rgba(210, 220, 223, 1);
}

h4 {
    font-family: Nunito;
    font-weight: 700;
    font-size: 20px;
    line-height: 26px;
    letter-spacing: -0.5%;
    color: rgba(210, 220, 223, 1);
}

.site-header {
    background-color: rgba(9, 12, 16, 0.8);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0px;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    max-width: 1600px;
    margin: 0 auto;
}

.site-logo {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    font-family: Nunito;
    font-size: 14px;
}

.site-logo p {
    margin-bottom: 2px;
}

.logo-nutrivision {
    color: #5ce1e6;
    text-decoration: none;
    cursor: pointer !important;
}

.site-logo img {
    max-height: 40px;
    width: 100%;
}

.desktop-nav {
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-family: Nunito;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0.5%;
    text-align: center;
    vertical-align: middle;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #4DCFFF;
}

.login-signup {
    display: flex;
    gap: 8px;
}

.login-signup a {
    padding: 10px 16px;
    border-radius: 6px;
    font-family: Nunito;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.5%;
    text-decoration: none;
}

.login {
    background-color: #F0F3F4;
    color: #151C1E;
    border: solid 1px #D2DCDF;
}

.signup {
    background-color: #0F698A;
    color: #fff;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-navigation {
    display: none;
    background: #fff;
    border-top: 1px solid #eee;
}

.mobile-navigation.active {
    display: block;
}

.mobile-navigation.active .site-logo {
    display: none;
}

.mobile-nav-menu {
    list-style: none;
    padding: 1rem 2rem;
}

.mobile-nav-menu li {
    border-bottom: 1px solid #eee;
}

.mobile-nav-menu a {
    display: block;
    padding: 1rem 0;
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.mobile-nav-menu a:hover {
    color: #007cba;
}

.hero-section {
    height: 90vh;
    display: flex;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
    overflow-x: clip;
}

.hero-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 90vh;
    top: 0;
    left: 0;
    background: linear-gradient(rgba(9, 11, 15, 0), rgba(9, 12, 15, 1));
    background-color: rgba(9, 11, 15, .4);
}

.hero-video {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 90vh;
    object-fit: cover;
    top: 0;
    left: 0;
}

.hero-content {
    margin-top: 10%;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-family: Nunito;
    font-weight: 700;
    font-size: 48px;
    line-height: 55px;
    letter-spacing: -0.5%;
    text-align: center;
    vertical-align: middle;
    color: rgba(210, 220, 223, 1);
}

.hero-description {
    margin: 20px auto 30px;
    opacity: 0.9;
    font-family: Nunito;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    color: #B4C4CA;
    max-width: 600px;
    width: 100%;
}

.hero-button {
    display: inline-block;
    background: #0A465C;
    color: #fff;
    width: 112px;
    height: 48px;
    padding: 14px;
    border-radius: 6px;
    position: relative;
    text-decoration: none;
    font-family: Nunito;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.5%;
    text-align: center;
    transition: background 0.3s ease;
}

.hero-button::after {
    content: '';
    display: block;
    position: absolute;
    background: linear-gradient(to right, #1F899D, #5FB161);
    width: 118px;
    height: 54px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 8px;
    z-index: -1;
}

.app-preview {
    position: absolute;
    max-width: 820px;
    width: calc(100% - 200px);
    bottom: 0;
}

.poke-bowl {
    position: absolute;
    right: 10%;
    width: 280px;
    top: calc(90vh - 100px);
}

.tag {
    font-family: Nunito;
    font-size: 14px;
    line-height: 20px;
    color: #179DCF;
    background-color: #05232E;
    padding: 4px 10px;
    border-radius: 44px;
    margin: 10px 0;
}

.content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    max-width: 1600px;
    margin: 0 auto;
    padding: 120px 0;
}

.full-width {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 120px 0;
    position: relative;
}

.full-width .hero-description {
    max-width: 640px;
    width: 100%;
    padding: 0 20px;
}

.skills-box {
    display: flex;
    flex-direction: row;
    max-width: 1060px;
    gap: 60px;
}

.skills-box h2 {
    text-align: left;
    vertical-align: left;
}

.list {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.list-item {
    display: flex;
    flex-direction: row;
    width: 478px;
}

.list-item img {
    width: 60px;
    height: 60px;
    margin-right: 16px;
}

.list-item p {
    font-size: 14px;
    font-family: Nunito;
    line-height: 20px;
    letter-spacing: -0.5%;
    color: #97ADB5;
    margin-bottom: 4px;
}

.lunch {
    position: absolute;
    left: -27px;
    width: 280px;
    bottom: -180px;
}

.slider-container {
    width: 100%;
    max-width: 1200px;
    margin: 90px auto 0;
    overflow: hidden;
    position: relative;
}

.slider-wrapper {
    display: flex;
    width: calc(200% + 40px);
    animation: slide 25s linear infinite;
    z-index: 0;
}

.slider-item {
    flex: 0 0 240px;
    height: 120px;
    margin-right: 20px;
    background: #F9FAFB;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-weight: bold;
    transition: transform 0.3s ease;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% + 10px));
    }
}

.slider-container:hover .slider-wrapper {
    animation-play-state: paused;
}

.pricing-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding: 120px 0 400px;
    position: relative;
}

.pricing-section {
    margin: 0 auto;
    text-align: center;
}

.pricing-title {
    font-size: 48px;
    line-height: 40px;
    font-family: Nunito;
    font-weight: 700;
    color: #D2DCDF;
}

.pricing-toggle {
    display: inline-flex;
    background: linear-gradient(to right, rgba(95, 177, 97, .15), rgba(31, 137, 157, .15));
    border-radius: 8px;
    padding: 4px;
    margin: 40px 0;
    position: relative;
}

.toggle-option {
    padding: 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: Nunito;
    font-weight: 500;
    color: #fff;
    background: transparent;
    border: none;
    font-size: 14px;
    line-height: 20px;
}

.toggle-option.active {
    background: #179DCF;
    color: #fff;
}

.pricing-cards {
    display: flex;
    flex-direction: row;
    gap: 16px;
    margin: 0 auto;
    justify-content: space-between;
}

.pricing-card {
    width: 253px;
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    z-index: 999;
}

.card-basic {
    background-color: rgba(10, 92, 74, 0.2);
}

.card-bronze {
    background-color: rgba(158, 125, 62, 1);
}

.card-silver {
    background-color: #F9FAFB;
}

.card-gold {
    background-color: #F5C61C;
}

.card-title {
    font-size: 24px;
    line-height: 32px;
    font-weight: bold;
    color: #F0F3F4;
    font-family: Nunito;
    text-wrap: nowrap;
}

.card-description {
    color: #F0F3F4;
    line-height: 22px;
    font-size: 16px;
    opacity: 0.9;
    font-family: Nunito;
}

.price-section {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    padding: 16px;
    text-align: center;
    width: 173px;
    height: 96px;
}

.card-basic .price-section {
    background: #084537;
}

.card-silver .card-title,
.card-silver .card-description,
.card-silver .price,
.card-silver .price-period,
.card-gold .card-title,
.card-gold .card-description,
.card-gold .price,
.card-gold .price-period {
    color: #20292D;
}

.card-silver .price-section {
    background: #F0F3F4;
}

.card-gold .price-section {
    background: #FDD64C;
}

.price {
    font-size: 40px;
    font-weight: bold;
    color: #F0F3F4;
    margin-bottom: 4px;
    line-height: 40px;
    font-family: Nunito;
}

.price-period {
    color: #F0F3F4;
    opacity: 0.9;
    font-size: 14px;
    line-height: 20px;
    font-family: Nunito;
}

.savings {
    color: #ED5E76;
    font-weight: bold;
    font-size: 14px;
    font-family: Nunito;
    display: none;
}

.get-started-btn {
    font-family: Nunito;
    text-decoration: none;
    padding: 16px;
    border-radius: 12px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    line-height: 20px;
    border: 4px solid;
}

.card-basic .get-started-btn {
    background: #0F856C;
    color: #fff;
    border-color: #052E24;
}

.card-bronze .get-started-btn {
    background: #CF8F17;
    color: #20292D;
    border-color: #83652B;
}

.card-silver .get-started-btn {
    background: #59747D;
    color: #fff;
    border-color: #D2DCDF;
}

.card-gold .get-started-btn {
    background: #FFC700;
    color: #20292D;
    border-color: #B39423;
}

.avocado-egg {
    position: absolute;
    bottom: 100px;
    right: 0;
    z-index: 100;
}

.mockup-img {
    position: absolute;
    bottom: -40px;
    right: 0;
    z-index: 10;
}

.site-footer {
    background: #090C10;
    padding: 60px 90px;
    width: 100%;
}

.footer-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
}

.footer-brand {
    display: flex;
    flex-direction: row;
    height: 40px;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.footer-brand img {
    height: 40px;
    width: auto;
}

.footer-brand p {
    font-family: Sora;
    font-weight: 300;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0%;
    color: #757185;
}

.footer-links {
    list-style: none;
    display: flex;
    gap: 36px;
}

.footer-links a {
    color: #4DCFFF;
    text-decoration: none;
    font-family: "Nunito", sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.5%;
    text-align: center;
}

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

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    color: #ccc;
    text-decoration: none;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background-color: #20292D;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 1366px) {

    .app-preview {
        max-width: 680px;
    }
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }

    .site-header {
        background-color: #000;
        backdrop-filter: none;
    }

    .header-container {
        padding: 0 20px;
        height: 70px;

        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .mobile-navigation {
        background: #000;
        border-top: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100vw;
        height: calc(100vh - 70px);
        z-index: 999;
        display: none;
    }

    .mobile-navigation.active {
        display: block;
    }

    body.mobile-menu-open .site-logo {
        display: none;
    }

    .mobile-nav-menu {
        padding: 52px 0;
        gap: 24px;
        display: flex;
        flex-direction: column;
        height: 100%;
        align-items: center;
    }

    .mobile-nav-menu li {
        border-bottom: none;
    }

    .mobile-nav-menu a {
        color: #fff;
        font-family: Nunito;
        font-size: 20px;
        line-height: 40px;
        padding: 0;
    }

    .mobile-nav-menu a:hover {
        color: #4DCFFF;
    }

    .site-header .site-logo {
        display: flex;
        align-items: center;
    }

    .site-header .login-signup {
        display: none;
        gap: .75rem;
    }

    body.mobile-menu-open .site-header .login-signup {
        display: flex;
        align-items: center;
    }

    .site-header .login-signup a {
        text-decoration: none;
        font-weight: 600;
    }

    .hero-title {
        font-size: 22px;
        line-height: 40px;
    }

    .hero-description {
        font-size: 18px;
        line-height: 24px;
    }

    .hero-content {
        padding: 40px 20px;
    }

    .hero-section {
        height: 100vh;
        display: flex;
        justify-content: center;
        text-align: center;
        color: #fff;
        position: relative;
    }

    .hero-video {
        height: 100vh;
    }

    .app-preview {
        position: absolute;
        width: 740px;
        bottom: 0px;
        left: 40px;
        top: inherit;
        right: inherit;
    }

    .poke-bowl {
        position: absolute;
        left: -70px;
        width: 200px;
        bottom: -100px;
        top: inherit;
        right: inherit;
    }

    .skills-box {
        flex-direction: column;
        gap: 40px;
        max-width: 100%;
        padding: 0 20px;
        margin-bottom: 40px !important;
    }

    .skills-box:last-child {
        flex-direction: column-reverse;
    }

    .content {
        flex-direction: column;
        max-width: 100%;
    }

    .right img,
    .left img {
        width: 100%;
    }

    .list {
        align-content: flex-start;
    }

    .list-item {
        align-content: flex-start;
        width: 100%;
    }

    .list-item img {
        width: 60px;
        height: 60px;
    }

    .list-item p {
        font-size: 14px;
        font-family: Nunito;
        line-height: 20px;
        letter-spacing: -0.5%;
        color: #97ADB5;
        margin-bottom: 4px;
    }


    /* Slider Mobile */
    .full-width {
        padding: 90px 0px;
    }

    .slider-container {
        max-width: 100%;
        margin: 0 auto;
    }

    .slider-item {
        flex: 0 0 180px;
        height: 90px;
        margin-right: 15px;
    }

    .slider-wrapper {
        animation-duration: 12s;
        width: 100%;
    }

    .lunch {
        position: absolute;
        left: -27px;
        width: 200px;
        bottom: -140px;
    }

    .pricing-wrapper {
        width: 100%;
        padding: 120px 0 160px;
    }

    .pricing-cards {
        flex-direction: row;
        overflow-x: scroll;
        gap: 20px;
        width: calc(100vw - 20px);
        padding: 0 20px 20px;
        cursor: grab;
        scroll-snap-type: x mandatory;
        scroll-snap-align: center;
        -webkit-overflow-scrolling: touch;
    }

    .pricing-cards::-webkit-scrollbar {
        visibility: hidden;
    }

    .pricing-card {
        padding: 30px 20px;
    }

    .price {
        font-size: 2.5rem;
    }

    .mockup-img {
        width: 200px;
        z-index: 9999;
        bottom: 0px;
    }

    .avocado-egg {
        bottom: -150px;
        width: 80px;
    }

    .site-footer {
        padding: 60px 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 90px;
    }

    .footer-brand {
        gap: 16px;
    }

    .footer-links {
        width: 100%;
    }

    .main-content {
        padding: 2rem 0;
    }
}

h2 {
    font-size: 22px;
    line-height: 28px;
    text-align: center;
}

h4 {
    font-family: Nunito;
    font-weight: 700;
    font-size: 20px;
    line-height: 26px;
    letter-spacing: -0.5%;
    color: rgba(210, 220, 223, 1);
}

@media (max-width: 480px) {

    .slider-container {
        max-width: 100%;
    }

    .slider-item {
        flex: 0 0 150px;
        height: 80px;
        margin-right: 10px;
    }

    .toggle-option {
        padding: 10px 16px;
        font-size: 12px;
    }

    .pricing-card {
        padding: 25px 15px;
    }

    .card-title {
        font-size: 1.3rem;
    }

    .card-description {
        font-size: 0.9rem;
    }
}