
.welcome-content {
    position: relative;
    z-index: 1;
    padding: 8rem;
    color: #f5e6d3;
    display: flex;
    flex-direction: column;
    font-family: 'Georgia', 'Garamond', serif;
}

.welcome-content h1 {
    font-size: 4.5rem;
    margin: 0 0 2rem 0;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #d4a574;
    text-shadow: 
        3px 3px 6px rgba(0, 0, 0, 0.9),
        0 0 20px rgba(184, 115, 51, 0.4),
        0 0 40px rgba(184, 115, 51, 0.2);
    transition: all 0.3s ease;
    cursor: default;
    font-style: italic;
}

.welcome-content h1:hover {
    transform: translateY(-5px) scale(1.02);
    color: #e8c090;
    text-shadow: 
        4px 4px 8px rgba(0, 0, 0, 0.9),
        0 0 30px rgba(184, 115, 51, 0.6),
        0 0 50px rgba(184, 115, 51, 0.3);
    letter-spacing: 0.08em;
}

.welcome-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 1.8rem;
    /* text-align: center; */
}

.welcome-content li {
    margin: 1.5rem 0;
    padding: 0.8rem 2rem;
    color: #c9b896;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    font-weight: 500;
    letter-spacing: 0.03em;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    cursor: default;
}

.welcome-content li::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(to right, #b87333, #d4a574);
    transition: width 0.7s ease-out;
    box-shadow: 0 0 8px rgba(184, 115, 51, 0.6);
}

.welcome-content li::before {
    content: '⚙';
    position: absolute;
    left: -1rem;
    opacity: 0;
    color: #b87333;
    transform: rotate(0deg);
    transition: all 0.4s ease;
}

.welcome-content li:hover {
    transform: translateX(15px) scale(1.05);
    color: #f5e6d3;
    text-shadow: 
        3px 3px 6px rgba(0, 0, 0, 0.9),
        0 0 20px rgba(184, 115, 51, 0.5);
    letter-spacing: 0.06em;
}

.welcome-content li:hover::after {
    width: 150px;
}

.welcome-content li:hover::before {
    opacity: 1;
    transform: rotate(180deg);
}

/* Responsive Design */
@media (max-width: 768px) {
    .welcome-content {
        padding: 2rem;
    }
    
    .welcome-content h1 {
        font-size: 3rem;
    }
    
    .welcome-content ul {
        font-size: 1.4rem;
    }
}
