@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
body {
    font-family: 'Inter', sans-serif;
    padding-top: 80px;
}

/* Add space for fixed navbar */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
}
/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #06354C;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #042638;
}

/* Animation classes */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.slide-up {
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Custom button styles */
.btn-primary {
    background-color: #e7a021;
    color: #06354C;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #d1911d;
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid #06354C;
    color: #06354C;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: #06354C;
    color: white;
}

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

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

/* Header / mobile menu styles (from old design) */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    z-index: 1001;
    padding: 0.5rem;
}

.mobile-menu-btn i {
    width: 24px;
    height: 24px;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background-color: rgba(6, 53, 76, 0.98);
    padding: 2rem;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-menu-links a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
}

.mobile-menu-actions {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (max-width: 768px) {
    .mobile-menu-btn { display: block; }
    .mobile-menu { top: 70px; }
}

/* small utility classes used by partials */
.login-btn { background-color: #e7a021; color: #06354C; padding: .5rem 1rem; border-radius: .375rem; font-weight: 600; }
.btn-outline { border: 2px solid #06354C; padding: .35rem .75rem; }

