@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #013220;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #002418;
}
/* Animation classes */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.training-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Image hover effects */
img:hover {
    opacity: 0.9;
    transition: opacity 0.3s ease;
}
.slide-up {
    animation: slideUp 0.5s ease-out;
}

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

/* Contact form styles */
#contactForm input,
#contactForm textarea,
#contactForm select {
    transition: all 0.3s ease;
}
#contactForm input:focus,
#contactForm textarea:focus,
#contactForm select:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(184, 134, 11, 0.2);
}
#contactForm button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}
/* Navbar Contact Button */
.nav-links a.bg-\[\#013220\] {
    margin-left: 1rem;
}
/* Modal Styles */
#studentApplicationModal, #calendarModal {
    transition: opacity 0.3s ease;
}

#calendarModal {
    backdrop-filter: blur(5px);
}

#calendarModal div {
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

#calendarModal h4 {
    margin-top: 1.5rem;
}

#calendarModal ul {
    padding-left: 1.5rem;
    list-style-type: disc;
}

#calendarModal li {
    margin-bottom: 0.5rem;
}
/* FAQ Styles */
.faq-item h3 {
    cursor: pointer;
    transition: color 0.2s;
}
.faq-item h3:hover {
    color: #B8860B;
}
.faq-item p {
    transition: all 0.3s ease;
    overflow: hidden;
}

