/* ===================================
   Welcome Page Styles
   =================================== */

.welcome-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-height: 100dvh;
    overflow-x: hidden;
}

.welcome-main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    inset: 0;
    background-image: url('https://lh3.googleusercontent.com/aida-public/AB6AXuDt3hpTOvQYupXTOFoxHOaWmzRfLAlhA0iuXVm9dP1Fe9OlhF1tCNk9twc37PlLf_P9rA22scckTfavqFLlVe3mbYXNhyvZeqg2gBkR6_0Iw5Y-M5sopCAEWmug0JBn2gdiSAR8ou9l9j0wnb3imczfH7T_OdYk-4vgdHue-zRWr48I6r2mgYpUgqz9iw8RPSKkYPLcRjgt9vxTcv1dJkp9cTJWXB4ikvvONqc1clBKM8b1mOs9XMENyOwFIIo7VODRgp2Gl3Ikghkx');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--bg) 0%, rgba(246, 247, 248, 0.7) 50%, transparent 100%);
}

.dark .hero-gradient {
    background: linear-gradient(to top, var(--bg) 0%, rgba(16, 28, 34, 0.7) 50%, transparent 100%);
}

/* Content */
.welcome-content {
    position: relative;
    margin-top: -96px;
    padding: 0 1.5rem;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
}

.icon-wrapper {
    display: inline-flex;
    padding: 1rem;
    background-color: var(--primary);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-xl);
    margin-bottom: 1rem;
}

.icon-mobile {
    width: 2.5rem;
    height: 2.5rem;
    color: white;
}

.welcome-title {
    font-size: 2rem;
    font-weight: 900;
    color: var(--fg);
    margin: 1rem 0;
}

.welcome-description {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 28rem;
    margin: 0 auto;
    line-height: 1.6;
}

/* Footer CTA */
.welcome-footer {
    padding: 1.5rem 1.5rem 2rem;
}

.btn-get-started {
    width: 100%;
    height: 3.5rem;
    padding: 0 1.25rem;
    background-color: var(--primary);
    color: white;
    font-size: 1.125rem;
    font-weight: 700;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(19, 164, 236, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-get-started:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(19, 164, 236, 0.4);
}

.btn-get-started:active {
    transform: translateY(0);
}

/* Animations */
@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    animation: fade-up 1s ease-out forwards;
    opacity: 0;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

/* Responsive Design */
@media (min-width: 768px) {
    .hero-section {
        height: 500px;
    }

    .welcome-title {
        font-size: 2.5rem;
    }

    .welcome-description {
        font-size: 1.125rem;
    }

    .btn-get-started {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (min-width: 1024px) {
    .hero-section {
        height: 600px;
    }

    .welcome-content {
        margin-top: -120px;
    }

    .welcome-title {
        font-size: 3rem;
    }
}