body {
    font-family: 'Roboto', sans-serif;
}

.nav-link {
    transition: color 0.3s;
}

.nav-link:hover {
    color: #e2e8f0;
}

/* Index Page Specific Styles */
.hero-section {
    background: linear-gradient(to right, #2c5282, #5a67d8);
}

.card {
    transition: transform 0.3s, box-shadow 0.3s;
}

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

/* Contact Page Specific Styles */
.form-input {
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-input:focus {
    border-color: #2c5282;
    box-shadow: 0 0 0 3px rgba(44, 82, 130, 0.3);
}

.submit-btn {
    transition: background-color 0.3s, transform 0.3s;
}

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

/* About Page Specific Styles */
.content-section {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Year Pages Specific Styles */
.course-card {
    background-color: #fff;
    border-left: 5px solid #4a5568;
    transition: transform 0.3s, box-shadow 0.3s;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-left-color: #2c5282;
}

/* New Index Page Styles */
.year-section {
    background-color: #fff;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
}

.subject-card {
    background-color: #f7fafc;
    border-left: 4px solid #4299e1;
    display: flex;
    flex-direction: column;
    justify-content: center;
<<<<<<< HEAD
}

/* Mobile Menu Styles */
.hamburger-btn {
    display: none; /* Hidden by default */
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.hamburger-btn .line {
    width: 2rem;
    height: 0.25rem;
    background-color: white;
    border-radius: 10px;
    transition: all 0.3s linear;
    position: relative;
    transform-origin: 1px;
}

.mobile-menu {
    display: none; /* Hidden by default */
    flex-direction: column;
    width: 100%;
    background-color: #2d3748; /* gray-800 */
    position: absolute;
    top: 60px; /* Adjust as needed */
    left: 0;
    padding: 1rem 0;
}

.mobile-menu a {
    padding: 1rem;
    text-align: center;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s;
}

.mobile-menu a:hover {
    background-color: #4a5568; /* gray-700 */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .desktop-menu {
        display: none;
    }

    .hamburger-btn {
        display: flex;
    }

    .mobile-menu.hidden {
        display: none;
    }

    .mobile-menu {
        display: flex; /* Show when not hidden */
    }

    /* Adjust font sizes for mobile */
    h1, .text-5xl {
        font-size: 2.25rem; /* 36px */
    }

    h2, .text-4xl {
        font-size: 1.875rem; /* 30px */
    }

    h3, .text-3xl {
        font-size: 1.5rem; /* 24px */
    }

    .text-xl {
        font-size: 1.125rem; /* 18px */
    }
}
=======
}
>>>>>>> 3cc712fe38c087bd4860d4ba930b69982d382972
