/* general.css */
body {
    font-family: 'Inter', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: #222;
}

.container {
    max-width: 1200px;
}

.section-heading {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.section-heading::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: #3b82f6; /* Tailwind blue-500 */
    border-radius: 9999px; /* rounded-full */
}

.card {
    background-color: #ffffff;
    border-radius: 0.75rem; /* rounded-xl */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* shadow-md */
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.btn-primary {
    @apply bg-blue-600 text-white px-6 py-3 rounded-lg font-semibold hover:bg-blue-700 transition-colors duration-300 shadow-md;
}

.list-circle {
    list-style-type: circle;
}

.loading-spinner {
    border: 4px solid #f3f3f3; /* Light grey */
    border-top: 4px solid #3b82f6; /* Blue */
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hidden {
    display: none !important;
}

/* Basic button styling (apply to all elements with class 'btn') */
.btn {
    display: inline-block; /* Allows padding, margin, width/height */
    padding: 12px 25px; /* Adjust padding for button size */
    background-color: #007bff; /* Your brand primary color */
    color: white; /* Text color */
    text-decoration: none; /* Remove underline from links */
    border-radius: 5px; /* Slightly rounded corners */
    font-weight: bold; /* Make text bolder */
    text-align: center;
    transition: background-color 0.3s ease; /* Smooth hover effect */
    cursor: pointer; /* Indicates it's clickable */
    border: none; /* No border by default */
}

.btn:hover {
    background-color: #0056b3; /* Darker shade on hover */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow on hover */
}

/* Specific styling for the resume button within a section */
.resume-download-btn {
    margin-top: 30px; /* Add some space above the button if it's below text */
    /* You can add more specific styles here if needed, e.g., font-size */
}

/* Specific styling for the resume button in the navigation */
.nav-resume-btn {
    padding: 8px 15px; /* Smaller padding for navigation */
    background-color: #28a745; /* A different color for distinction, if desired */
    font-size: 0.9em; /* Slightly smaller text */
    margin-left: 20px; /* Space from other nav items */
}

.nav-resume-btn:hover {
    background-color: #218838;
}


