@font-face {
    font-family: 'futura';
    text-transform: lowercase;
    src: url(elements/FuturaHandwritten.ttf);
}


body {
    font-family: 'futura';
    text-transform: lowercase;
    
    line-height: 1.6;
    background-color: #f8f4ec;
}

p{
    font-family: 'futura';
    text-transform: lowercase;
}

/* Navbar styles */
.navbar {
    background-color: #f8f4ec;
    max-width: 1200px;
    margin: 20px auto 0 auto;
    z-index: 10;
    position: relative;
}

.nav-container {
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.logo {
    width: 70px;
    height: 70px;
    background-image: url(logo.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-left: -80px;
}
.logo:hover {
    transform: rotate(15deg);
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 20px;
    transition: all 0.3s ease;
    padding: 1px 0;
    position: relative;
}

.nav-links a:hover {
    color: #666;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #333;
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 15px;
    }
    .nav-links {
        gap: 40px;
    }
    .nav-links a {
        font-size: 14px;
    }
}

/* Footer styles */
.footerbar {
    background-color: #D5D7D5;
    width: 100vw;
    max-width: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid #e0dcd2;
    position: relative;
    left: 50%;
    right: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    align-items: center;
}

.footerbar .nav-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    position: relative;
}
.footerbar .logo {
    width: 50px;
    height: 50px;
    margin: 0 40px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.footerbar .nav-links {
    display: flex;
    list-style: none;
    gap: 60vw;
    width: 100%;
    justify-content: space-between;
    z-index: 1;
}
.footerbar .nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: normal;
    font-size: 16px;
    transition: color 0.3s ease;
}
.footerbar .nav-links a:hover {
    color: #666;
}
.footerbar .footer-chat {
    position: absolute;
    left: 30px;
    font-size: 18px;
    color: #333;
    font-family: 'futura';
    text-transform: lowercase;
}
.footerbar .footer-chat a {
    color: rgb(139, 50, 25);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-family: 'futura';
    text-transform: lowercase;
    font-size: 15px;
}
.footerbar .footer-chat a:hover {
    color: #666;
    text-decoration: underline;
}
.footerbar .footer-socials {
    position: absolute;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 16px;
}
.footerbar .footer-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    transition: filter 0.2s;
}
.footerbar .footer-icon:hover {
    filter: brightness(0.7);
}
.footerbar .footer-built {
    display: block;
    font-size: 12px;
    color: #888;
    font-family: 'futura';
    text-transform: lowercase;
    margin-top: 2px;
    letter-spacing: 0.2px;
}

/* Main content container for education page */
.edu-content {
    max-width: 1000px;
    margin: 10px auto 10px auto;
    padding: 0 24px;
}

/* Three-column layout for education categories */
.edu-columns {
    display: flex;
    gap: 20px;
    margin: 32px auto 0 auto;
    max-width: 1000px;
    padding: 0 24px;
}
.edu-column {
    flex: 1;
    background: none;
    padding: 0 12px;
    min-width: 0;
}
.edu-column h3 {
    font-family: 'futura', sans-serif;
    font-size: 1.2em;
    margin-bottom: 25px;
}
.edu-column p {
    font-size: 1em;
    color: #333;
}
@media (max-width: 800px) {
    .edu-columns {
        flex-direction: column;
        gap: 20px;
    }
    .edu-column {
        padding: 0;
    }
}

.edu-section {
    margin-bottom: 18px;
}
.edu-subtitle {
    font-family: 'futura';
    text-transform: lowercase;
    font-size: 1.1em;
    font-weight: bold;
    margin: 28px 0 12px 0;
    color: #56423b;
    display: block;
}
.edu-course {
    margin-bottom: 4px;
}
.edu-course-title {
    font-family: 'futura';
    text-transform: lowercase;
    font-size: 1.08em;
    font-weight: bold;
    margin-right: 8px;
    color: #222;
}
.edu-course-desc {
    font-family: 'futura';
    text-transform: lowercase;
    font-size: 0.98em;
    font-style: italic;
    color: #444;
}

.column-logos {
    height: 200px;
    width: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 20px;
    margin-bottom: -25px;


}

.column-logos:hover {
    transform: scale(1.2) !important; 
}