/* Main styles for Vzangari personal website */

/* Body and general styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

/* Header styling */
header {
    margin-bottom: 30px;
}

/* Jumbotron adjustments for Bootstrap 5 */
.jumbotron {
    padding: 2rem 1rem;
    margin-bottom: 2rem;
    background-color: #e9ecef;
    border-radius: 0.3rem;
}

/* Card styling */
.card {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

/* Education section */
.card-header h2 {
    font-size: 1.5rem;
}

/* Table styling */
.table {
    font-size: 0.9rem;
}

/* Footer styling */
footer {
    margin-top: 30px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .jumbotron h1 {
        font-size: 2rem;
    }
    
    .card-header h2 {
        font-size: 1.25rem;
    }
}

/* Custom button styling */
.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
}
