/* --- 1. Logo Title Setup --- */
.navbar-brand {
    position: relative;
    display: inline-block;
}

.navbar-brand a.brand-logo::before {
    content: "First Steps Language School";
    position: absolute;
    top: 30px;        
    left: 45px;       
    z-index: 99;
    color: #8B0000;
    font-size: 34px; 
    font-weight: 900;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    letter-spacing: 1px;
    text-shadow: 0px 0px 8px rgba(255, 255, 255, 0.9), 1px 1px 2px rgba(255, 255, 255, 1);
    pointer-events: none;
}

/* --- 2. Mobile Responsive (Logo) --- */
@media (max-width: 767px) {
    .navbar-brand a.brand-logo::before {
        font-size: 16px;
        top: 15px;          
        left: 15px;         
        text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.8);
    }
}

/* --- 3. Menus & Sidebar Links (Hover Effects) --- */
.navbar-nav .nav-link, 
.mod-menu .nav-item a, 
.menu .item a,
.mod-articleslatest li a {
    text-decoration: none !important;
    transition: all 0.3s ease;
    padding: 8px 15px !important;
    border-radius: 5px;
    color: #333 !important;
    display: block;
}

.navbar-nav .nav-link:hover, 
.mod-menu .nav-item a:hover, 
.menu .item a:hover,
.mod-articleslatest li a:hover {
    background-color: #008000 !important;
    color: #ffffff !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    padding-left: 20px !important;
}

/* --- 4. Articals --- */

.prize-giving-wrapper {
    max-width: 800px;
    margin: 0 auto;
    font-family: sans-serif;
}

.prize-event {
    background: #f9f9f9;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 8px;
    border-left: 5px solid #339966;
}

.prize-event h2 {
    color: #993300;
    margin-bottom: 5px;
}

.event-meta {
    font-weight: bold;
    color: #444;
    margin-bottom: 15px;
}

.event-details {
    list-style: none;
    padding: 0;
}

.event-details li {
    margin-bottom: 10px;
    color: #333;
}

.btn-gallery {
    display: inline-block;
    background-color: #339966;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
    transition: background 0.3s;
}

.btn-gallery:hover {
    background-color: #287a52;
}

hr {
    border: 0;
    height: 1px;
    background: #ddd;
    margin: 40px 0;
}