/* Custom styles for Silvio Netto Personal Website */

.hero {
    min-height: 100vh;
    padding-top: 80px;
}

.profile-image {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0d6efd, #0a58ca);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.profile-image-lg {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0d6efd, #0a58ca);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.navbar {
    backdrop-filter: blur(10px);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.btn {
    border-radius: 8px;
    padding: 10px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
    transform: translateY(-2px);
}

footer {
    margin-top: auto;
}

a.text-white:hover {
    color: #0d6efd !important;
}

@media (max-width: 768px) {
    .hero {
        padding-top: 120px;
        text-align: center;
    }
    
    .profile-image,
    .profile-image-lg {
        width: 200px;
        height: 200px;
    }
    
    .display-3 {
        font-size: 2.5rem;
    }
}