/* unchanged base styles */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    background-image: url('images/background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    font-family: 'Raleway', sans-serif;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    text-align: center;
    padding: 20px;
    z-index: 1;
}

.profile img {
    width: 180px;
    height: auto;
}

.spacer {
    margin: 20px 0;
}

/* NEW Welcome line between logo and buttons */
.welcome-mid {
    font-family: 'Raleway', sans-serif;
    font-size: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
    font-weight: 500;
}

/* Enhanced button style */
.links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.links a {
    display: inline-block;
    padding: 14px 22px;
    text-decoration: none;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(0,0,0,0.3));
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    font-family: 'Raleway', sans-serif;
    backdrop-filter: blur(6px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.links a:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.05);
}

footer {
    margin-top: 35px;
}

footer p.welcome-text {
    font-size: 23px;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
}

.social-media a {
    margin: 10px;
    display: inline-block;
}

.social-media img {
    width: 30px;
    height: 30px;
}
