@charset "utf-8";
/* CSS Document */
/* TITLE ANIMATION */
.school-title{
    font-size: 95px;
    font-weight: 900;
    color: #ffe600;
    letter-spacing: 2px;
    animation: titleEntrance 2s ease-out forwards,
               glow 3s ease-in-out infinite alternate;
    opacity: 0;
}

/* Slide from left */
@keyframes titleEntrance{
    0%{
        transform: translateX(-200px);
        opacity: 0;
    }
    100%{
        transform: translateX(0);
        opacity: 1;
    }
}

/* Soft glowing effect */
@keyframes glow{
    from{
        text-shadow: 0 0 10px #fff, 0 0 20px #ffd000;
    }
    to{
        text-shadow: 0 0 20px #fff, 0 0 40px #ffae00;
    }
}



.title h1 {
    animation: slideFade 1.5s ease-out forwards;
}

@keyframes slideFade {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

/* HEADER */
.top-header {
    display: flex;
    align-items: center;
    background: #b2b2ff;
    padding: 15px;
}

.logo img {
    width: 120px;
}

.school-name {
    flex: 1;
    text-align: center;
    font-size: 42px;
    font-weight: bold;
    color: #e6ff00;
    text-shadow: 2px 2px 5px #000;
}

.school-name hr {
    margin-top: 10px;
    border: none;
    height: 6px;
    background: yellow;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: center;
    gap: 5px;
    background: #d9e6ea;
    padding: 10px;
}

.navbar a {
    text-decoration: none;
    padding: 10px 18px;
    background: #b6d1d8;
    color: #003366;
    font-weight: bold;
    border-radius: 8px;
}

.navbar a:hover {
    background: #9bbcc5;
}

/* MAIN LAYOUT */
.container {
    display: flex;
    padding: 20px;
}

/* CONTENT */
.content {
    flex: 1;
    padding: 0 30px;
}

/* SIDEBAR */
.sidebar {
    width: 250px;
    background: #b6d1d1;
    padding: 20px;
    border-radius: 15px;
}

.sidebar h2 {
    font-size: 18px;
    text-align: center;
    margin-bottom: 20px;
    color: #003399;
}

.sidebar ol {
    padding-left: 20px;
}

.sidebar li {
    margin: 10px 0;
    font-size: 12px !important;
    color: #b00030;
    font-weight: normal !important;
}

/* MISC STYLES */
.motto {
    font-family: cursive;
    font-size: 36px;
    margin-bottom: 20px;
    color: #c94b4b;
    text-align: center;
}

.image-box {
    border: 10px solid #cfdede;
    padding: 10px;
}

.image-box img {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
}

/* FOOTER */
.footer {
    text-align: center;
    padding: 15px;
    font-size: 14px;
}

/* MOBILE RESPONSIVENESS */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }
    .sidebar {
        width: 100%;
        margin-bottom: 20px;
    }
    .school-name {
        font-size: 24px;
    }
    .navbar {
        flex-wrap: wrap;
    }
}