body {
    font-family: 'Nunito', sans-serif;
}

h1, h2, h3, h4, h5, h6, .navbar-brand, .btn {
    font-family: 'Montserrat', sans-serif;
}

:root {
    --primary-color: #0d6efd;
    --secondary-color: #ffc107;
    --light-bg: #f8f9fa;
    --dark-text: #343a40;
}

html {
    scroll-padding-top: 70px;
}

section {
    padding-top: 80px;
    padding-bottom: 80px;
}

hr {
    border-top: 3px solid var(--primary-color);
    opacity: 1;
}

.navbar-brand {
    font-size: 1.5rem;
    margin-left: 10px;
}

.navbar .btn-primary {
    transition: all 0.3s ease;
}

.navbar .btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

#hero {
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 255, 0.4), rgba(0, 0, 200, 0.7)), no-repeat center center;
    background-size: cover;
}

#hero h1 {
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

.course-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.gallery-item img {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
    opacity: 0.8;
}

#galleryModal .modal-content {
    background: transparent;
    border: none;
}

#reviews .carousel-item {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

#reviews .carousel-control-prev-icon,
#reviews .carousel-control-next-icon {
    background-color: var(--primary-color);
    border-radius: 50%;
}

.accordion-button:not(.collapsed) {
    color: #fff;
    background-color: var(--primary-color);
}

.accordion-button:focus {
    box-shadow: none;
}

.language-switcher .btn.active {
    background-color: var(--primary-color);
    color: white;
    font-weight: bold;
}

#contact a, footer a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

#contact a:hover, footer a.text-white:hover {
    color: var(--secondary-color);
}

.social-icons a {
    color: var(--dark-text);
}

.social-icons a:hover {
     color: var(--primary-color);
}

footer .social-icons a {
    color: #fff;
}
