/* ===== Header Styling ===== */
#header {
    background: linear-gradient(135deg, #0f3057, #00587a);
    padding: 30px 60px;   /* Bigger navbar */
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 4px solid #f3d9a5; /* Sandy accent */
}

/* ===== Branding ===== */
#branding {
    display: flex;
    flex-direction: column;
}

#site-title h1 {
    font-size: 32px;   /* Bigger title */
}

#site-title a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

#site-title a:hover {
    color: #f3d9a5;  /* Sand colour hover */
}

#site-description {
    font-size: 15px;
    color: #cde8f6; /* Soft sea mist */
    margin-top: 6px;
}

/* ===== Navigation ===== */
#menu ul {
    list-style: none;
    display: flex;
    gap: 40px;  /* More spacing */
}

#menu li {
    position: relative;
}

#menu a {
    text-decoration: none;
    color: #ffffff;
    font-size: 18px;   /* Bigger menu text */
    font-weight: 600;
    padding: 8px 0;
    transition: all 0.3s ease;
}

#menu a:hover {
    color: #f3d9a5;
}

#menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 3px;
    background: #f3d9a5;
    transition: width 0.3s ease;
}

#menu li:hover a::after {
    width: 100%;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {

    #header {
        flex-direction: column;
        align-items: flex-start;
        padding: 25px;
        gap: 20px;
    }

    #menu ul {
        flex-direction: column;
        gap: 20px;
    }

}