/*
Theme Name: VitaNu
Theme URI: https://fahidjavid.com/
Author: Fahid Javid
Author URI: https://fahidjavid.com
Description: WordPress theme generated from a static VitaNu HTML export.
Version: 1.0.0
Text Domain: vitanu
*/

html {
    scroll-behavior: smooth;
}

.gradient-bg {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.hero-gradient {
    background: linear-gradient(135deg, #eff6ff 0%, #ffffff 100%);
}

.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(30, 58, 138, 0.3);
}

.btn-secondary {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(220, 38, 38, 0.3);
}

.section-fade {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.section-fade.visible {
    opacity: 1;
    transform: translateY(0);
}

.progress-bar {
    transition: width 1s ease-in-out;
}

.nav-active {
    position: relative;
}

.nav-active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #dc2626;
    border-radius: 1px;
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translate3d(0,0,0);
    }
    40%, 43% {
        transform: translate3d(0,-30px,0);
    }
    70% {
        transform: translate3d(0,-15px,0);
    }
    90% {
        transform: translate3d(0,-4px,0);
    }
}

.animate-bounce {
    animation: bounce 2s infinite;
}

.timeline-item {
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 2rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #dc2626;
}

.timeline-item:last-child::before {
    display: none;
}

.red-accent {
    color: #dc2626;
}

.red-bg {
    background-color: #dc2626;
}

.red-border {
    border-color: #dc2626;
}

.dual-language {
    background: linear-gradient(135deg, #000000 0%, #dc2626 50%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.font-sans {
    font-family: Inter, sans-serif;
}

.custom-logo {
    max-width: 150px;
}