:root {
    --navy: #1e3a8a;
    --red: #be123c;
    --text: #1e293b;
    --light: #f8fafc;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Plus Jakarta Sans', sans-serif; color: var(--text); background: var(--light); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Header & Menu Alignment */
.main-header {
    background: #fff;
    border-bottom: 5px solid var(--navy);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between; /* Pushes Menu to far right */
    align-items: center;
    height: 140px; /* Fixed height for large logo */
    padding: 0 40px;
}

.branding-group {
    display: flex;
    align-items: center;
    gap: 30px;
    height: 100%;
}

/* Logo equal to header size */
.header-logo {
    height: 220px; /* Large size */
    width: auto;
    display: block;
}

.welcome-tag {
    color: var(--red);
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.school-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--navy);
    line-height: 1;
}

.red-text { color: var(--red); }
.address-line { font-size: 0.9rem; color: #64748b; font-weight: 600; margin-top: 5px; }

/* Navigation Menu Aligned Right */
.main-nav { height: 100%; display: flex; align-items: center; }
.nav-links { display: flex; list-style: none; gap: 25px; align-items: center; }
.nav-links a { text-decoration: none; color: var(--text); font-weight: 700; font-size: 1rem; }
.nav-links a.active { color: var(--red); }

.contact-btn {
    background: var(--red);
    color: #fff !important;
    padding: 12px 25px;
    border-radius: 8px;
    text-transform: uppercase;
}

/* Hero Slider */
.hero-slider { height: 500px; position: relative; overflow: hidden; border-bottom: 5px solid var(--navy); }
.slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: 1.5s; }
.slide.active { opacity: 1; }

/* Messages Section */
.messages-section { padding: 80px 0; }
.message-card {
    display: flex;
    background: #fff;
    margin-bottom: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    overflow: hidden;
}

.sidebar { width: 300px; padding: 30px; background: #fafafa; text-align: center; border-right: 1px solid #f1f5f9; }
.sidebar img { width: 140px; height: 180px; object-fit: cover; border-radius: 12px; margin-bottom: 15px; border: 3px solid #fff; }

.rank { color: var(--red); font-weight: 800; font-size: 0.75rem; text-transform: uppercase; display: block; margin-bottom: 5px; }
.meta h3 { font-size: 1.2rem; color: var(--navy); }

.content { flex: 1; padding: 60px; display: flex; align-items: center; }

/* Large Bold Text for Messages */
.big-bold-quote {
    font-size: 2.6rem;
    font-weight: 900;
    font-family: 'Playfair Display', serif;
    color: var(--navy);
    line-height: 1.2;
    font-style: italic;
}

.footer { padding: 30px; text-align: center; background: var(--navy); color: #fff; }

/* Mobile View */
@media (max-width: 1100px) {
    .header-container { height: auto; flex-direction: column; padding: 20px; text-align: center; }
    .nav-links { margin-top: 20px; }
    .school-title { font-size: 2rem; }
    .message-card { flex-direction: column; }
    .sidebar { width: 100%; }
}