/* Base styles for all navigation tabs */
.nav-tab {
    cursor: pointer;
    padding: 0.5rem 1.5rem;
    text-align: center;
    font-weight: 600;
    transition: background-color 0.3s, color 0.3s;
    border-radius: 0.5rem 0.5rem 0 0;
    margin-right: 0.25rem;
    margin-left: 0.25rem;
    user-select: none;
    outline: none;
}

/* Active tab styling */
.tab-active {
    background-color: #991b1b; /* Dark red */
    color: #ffffff;
    border-bottom: 2px solid #ef4444;
    z-index: 1;
}

/* Inactive tab styling */
.tab-inactive {
    background-color: transparent;
    color: #ef4444;
}

/* Hover effect for inactive tabs */
.tab-inactive:hover {
    background-color: #7f1d1d; /* Slightly lighter red */
    color: #fee2e2;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .nav-tab {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
        font-size: 1rem;
    }
}

/* ====== Resume Page & General Styles ====== */
body {
    font-family: 'Inter', sans-serif;
    background-color: #1a1a1a;
    color: #f5c5c5;
}

.text-highlight {
    color: #ef4444;
}

.border-highlight {
    border-color: #ef4444;
}

.container {
    margin-left: auto;
    margin-right: auto;
    max-width: 56rem;
    padding: 1rem;
}

header {
    text-align: center;
    margin-bottom: 2rem;
}

h1 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #fff;
}

h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #ef4444;
    padding-bottom: 0.5rem;
    color: #ef4444;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ef4444;
}

h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
}

section {
    background: rgba(31, 41, 55, 0.5);
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    margin-bottom: 2rem;
}

ul {
    list-style-type: disc;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

footer {
    text-align: center;
    margin-top: 3rem;
    color: #6b7280;
}