/*
Theme Name: Astra Child
Template: astra
Version: 1.0
*/

/* ===== College Page Styling with Blue-Orange Theme ===== */

.college-container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 30px;
    background: #ffffff; /* White clean background */
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-radius: 10px;
    font-family: "Segoe UI", Roboto, sans-serif;
    line-height: 1.7;
    color: #000000; /* Black text */
}

/* Headings */
.college-container h1 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 25px;
    color: #0d47a1; /* Deep Blue for trust */
    font-weight: 700;
}

.college-container h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #1a73e8; /* Bright Blue accent */
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 8px;
}

/* Banner Image */
.college-container img {
    border-radius: 8px;
    margin-bottom: 25px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}

/* Paragraphs */
.college-container p {
    margin-bottom: 12px;
    color: #000000; /* Black text */
    font-size: 1rem;
}

/* Courses Section */
.courses-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.course-card {
    background: #f9fafc;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.course-card h3 {
    margin-bottom: 12px;
    font-size: 1.3rem;
    color: #0d47a1; /* Blue for headings */
}

.course-card a {
    text-decoration: none;
    color: #0d47a1;
    font-weight: 600;
}

.course-card a:hover {
    color: #ff6f00; /* Orange hover for action */
    text-decoration: underline;
}

/* Brochure Link (CTA Button) */
.college-container a {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 18px;
    background: #ff6f00; /* Orange for CTA */
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
}

.college-container a:hover {
    background: #e65100; /* Darker orange on hover */
}

/* Section Dividers */
.college-container div {
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .college-container {
        padding: 20px;
    }
    .college-container h1 {
        font-size: 2rem;
    }
    .college-container h2 {
        font-size: 1.5rem;
    }
}
