/* Welcome Section */
#welcome {
    padding: clamp(4rem, 5vw, 8rem) 2rem;
    display: flex;
    justify-content: center;
    background:
        radial-gradient(circle at 100% 0%, rgba(211, 47, 47, 0.08), transparent 50%),
        radial-gradient(circle at 0% 100%, rgba(139, 0, 0, 0.04), transparent 50%),
        linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    position: relative;
    overflow: hidden;
}

#welcome::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(211, 47, 47, 0.05), transparent);
    border-radius: 50%;
    z-index: 0;
}

/* Frame */
.welcome-frame {
    max-width: 1000px;
    width: 100%;
    position: relative;
    z-index: 1;
    text-align: center;
}

.welcome-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(2rem, 5vw, 4rem);
    flex-wrap: wrap;
}

.welcome-logo {
    width: clamp(100px, 15vw, 160px);
    height: auto;
    flex-shrink: 0;
    filter: drop-shadow(0 10px 30px rgba(139, 0, 0, 0.1));
}

/* Badge */
.welcome-badge {
    display: inline-block;
    padding: 0.6rem 1.4rem;
    margin-bottom: 1.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #8b0000;
    background: linear-gradient(135deg, rgba(211, 47, 47, 0.12), rgba(139, 0, 0, 0.08));
    border: 1.5px solid rgba(139, 0, 0, 0.15);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.welcome-badge:hover {
    background: linear-gradient(135deg, rgba(211, 47, 47, 0.18), rgba(139, 0, 0, 0.12));
    border-color: rgba(139, 0, 0, 0.25);
    transform: translateY(-2px);
}

/* Headline */
.welcome-frame h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
    letter-spacing: -0.02em;
    animation: fadeUp 0.8s ease-out 0.2s both;
}

.welcome-frame h1 span {
    display: inline-block;
    color: #d32f2f;
    background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    position: relative;
}

.welcome-frame h1 span::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #d32f2f, transparent);
    border-radius: 2px;
}

/* Text */
.welcome-text {
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    line-height: 1.8;
    color: #555;
    max-width: 640px;
    margin: 0 auto;
    animation: fadeUp 0.8s ease-out 0.4s both;
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    #welcome {
        padding: clamp(3rem, 4vw, 5rem) 1.5rem;
    }

    .welcome-content {
        gap: 1.5rem;
        flex-direction: column;
    }

    .welcome-text {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .welcome-badge {
        padding: 0.5rem 1.2rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .welcome-frame h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .welcome-logo {
        width: 80px;
    }

    .welcome-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}
