/* Welcome Section */
.welcome-section {
    margin-top: 140px;
    padding: 0;
    background: #000;
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 90px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.welcome-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../../images/welcome-bg.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0.4;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

.welcome-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 10px;
    background: var(--stripe-pattern);
    z-index: 5;
    /* ensure the safety-shoe hovers didn't overlap this */
}

@keyframes moveStripes {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

.welcome-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 4rem 2rem;
}

.welcome-section h1 {
    color: white;
    font-size: 4rem;
    text-transform: uppercase;
    letter-spacing: 8px;
    margin-bottom: 1rem;
    font-weight: 900;
    line-height: 1.1;
    animation: fadeInUp 1s ease 0.2s both;
    text-shadow: 0 0 40px rgba(236, 167, 1, 0.3);
}

.welcome-section .highlight {
    color: var(--primary-color);
    display: block;
    font-size: 10rem;
    letter-spacing: 12px;
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, #07b0ff 50%, var(--primary-color) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite, fadeInUp 1s ease 0.3s both;
}

.welcome-section .tagline {
    font-size: 1.5rem;
    letter-spacing: 0px;
    font-style: italic;
}

@keyframes shimmer {
    0% {
        background-position: 200% center;
    }

    100% {
        background-position: 0% center;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.welcome-description {
    margin-top: 3rem;
    animation: fadeInUp 1s ease 0.5s both;
}

.description-box {
    padding: 2rem;
    background: rgba(236, 167, 1, 0.1);
    border-left: 4px solid var(--primary-color);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.description-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(236, 167, 1, 0.1), transparent);
    transition: left 0.6s ease;
}

.description-box:hover::before {
    left: 100%;
}

.description-box:hover {
    background: rgba(236, 167, 1, 0.1);
    border-left-width: 8px;
    transform: translateX(10px);
}

.description-box h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-weight: bold;
}

.description-box p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.8;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

.scroll-indicator::before {
    content: '⌄';
    display: block;
    color: var(--primary-color);
    font-size: 3rem;
    font-weight: bold;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-20px);
    }
}

.stats-bar {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 9rem;
    padding: 2rem;
    border-top: 1px solid rgba(236, 167, 1, 0.2);
    border-bottom: 1px solid rgba(236, 167, 1, 0.2);
    animation: fadeInUp 1s ease 0.7s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .welcome-section {
        padding: 3rem 1.5rem;
    }

    .welcome-content {
        padding: 2rem 1rem;
    }

    .welcome-section h1 {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }

    .welcome-section .highlight {
        font-size: 5.5rem;
        letter-spacing: 4px;
    }

    .welcome-section .tagline {
        font-size: 1rem;
        letter-spacing: 0px;
    }

    .welcome-description {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .description-box {
        padding: 1.5rem;
    }

    .description-box h3 {
        font-size: 1.1rem;
    }

    .description-box p {
        font-size: 1rem;
    }

    .stats-bar {
        flex-direction: column;
        gap: 2rem;
        margin-top: 7rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 500px) {
    .stats-bar {
        margin-top: 2rem;
    }
}