:root {
    --primary-color: #2C3E50;
    --secondary-color: #C0A16B;
    --text-color: #333;
    --light-bg: #f5f5f5;
    --white: #ffffff;
}


.welcome {
    height: 95vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/welcome.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 1rem;
    margin-top: 0;
    position: relative;

}

.experience {
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid var(--secondary-color);
    padding: 10px 20px;
    border-radius: 50px;
    color: var(--secondary-color);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: inline-block;
}

.welcome h1 {
    font-weight: 700;
    font-size: 50px;
}

.welcome p {
    font-size: 20px;
}

.welcome-button {
    background-color: var(--secondary-color);
    color: white !important;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 5px;
    margin-top: 10px;
    font-weight: bold;
    text-transform: uppercase;
    transition: 0.2s;
    cursor: pointer;
}

.welcome-button:hover {
    background-color: #a38655; transform: translateY(-2px);
    
}

@media (max-width: 768px) {
    .welcome h1 {
        font-size: 2.5rem;
        margin-top: 5%;
    }
    .welcome p {
        font-size: 1rem;
        padding: 0 10px;
    }
    .welcome-button {
        width: 90%;
        text-align: center;
    }

    .welcome {
        justify-content: flex-start;
        padding-top: 90px;
    }

    .experience {
        font-size: 15px;
        letter-spacing: 1px;
    }
}