/* --- Header gradient background --- */
.site-header {
    background: linear-gradient(180deg, #0071bc 0%, #00a3e0 100%);
    padding: 15px 0;
    border-bottom: 4px solid #ffffff;
}

/* --- Add some spacing for the logo/title --- */
.site-branding {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

/* --- Adjust site title and description colors --- */
.site-title a {
    color: #ffffff;
    text-decoration: none;
    font-size: 2rem;
    font-weight: 700;
}

.site-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
}

/* --- Logo styling --- */
.custom-logo {
    max-height: 100px;
    width: auto;
    margin-bottom: 10px;
}

/* --- Navigation menu --- */
.main-navigation {
    background: rgba(255, 255, 255, 0.15);
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.2);
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.main-navigation a {
    color: #ffffff !important;
    padding: 10px 15px;
    text-transform: uppercase;
    font-weight: 600;
}

.main-navigation a:hover {
    color: #ffe600 !important; /* bright hover color like on kuutsekas.ee */
}

/* --- Page background and content area --- */
body {
    background: #e9f4fb; /* light blue-ish tone behind content */
}

#content {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 6px;
    margin-top: 20px;
    padding: 20px;
}

/* --- Footer styling (optional, for visual harmony) --- */
.site-footer {
    background: #0071bc;
    color: #ffffff;
    padding: 30px 0;
}

.site-footer a {
    color: #ffe600;
}

.site-footer a:hover {
    color: #ffffff;
}