/* Font Size Enhancement - Globally increases all font sizes */

/* Increase the base font size for the entire website */
html {
    font-size: 18px; /* Increase from default 16px */
}

/* Increase logo text size */
.navbar .logo span {
    font-size: 1.2rem !important; /* Make logo text larger */
    font-weight: 700;
}

/* Enhance navigation text */
.navbar nav ul li a {
    font-size: 1.1rem !important;
}

/* Enhance hero text for better visibility */
.hero h1 {
    font-size: 3.5rem !important;
}

.text-first-line {
    font-size: 2.2rem !important;
}

.text-second-line {
    font-size: 2rem !important;
}

.year-highlight {
    font-size: 1.8rem !important;
}

.hero p {
    font-size: 1.4rem !important;
}

/* Increase section titles */
.section-title {
    font-size: 2.8rem !important;
}

.section-subtitle {
    font-size: 1.4rem !important;
}

/* Increase card and content text */
.card-content h3, .course-content h3, .expert-card h4 {
    font-size: 1.5rem !important;
}

.card-content p, .course-content p, .expert-card p, .about-text p {
    font-size: 1.1rem !important;
}

/* Enhance footer text */
.footer-logo h3 {
    font-size: 1.6rem !important;
}

.footer-logo p, .footer-contact, .footer-column ul li a {
    font-size: 1.1rem !important;
}

.footer-column h4 {
    font-size: 1.3rem !important;
}

/* Enhance buttons */
.btn, .card-button, .course-button, .view-all-button, .badge-button {
    font-size: 1.1rem !important;
}

/* Adjust for mobile */
@media (max-width: 768px) {
    html {
        font-size: 16px; /* Slightly smaller on mobile but still larger than original */
    }
    
    .hero h1 {
        font-size: 2.8rem !important;
    }
    
    .text-first-line {
        font-size: 1.9rem !important;
    }
    
    .text-second-line {
        font-size: 1.7rem !important;
    }
    
    .year-highlight {
        font-size: 1.6rem !important;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.5rem !important;
    }
    
    .text-first-line {
        font-size: 1.7rem !important;
    }
    
    .text-second-line {
        font-size: 1.5rem !important;
    }
    
    .year-highlight {
        font-size: 1.4rem !important;
    }
}
