/* Responsive CSS for KirklandWeather.com */

/* Reset and global styles */
html {
    box-sizing: border-box;
}
*, *::before, *::after {
    box-sizing: inherit;
}
body {
    margin: 0;
    font-family: 'Roboto', Segoe UI, Segoe, Helvetica, Arial, sans-serif;
    line-height: 1.5;
}

/* Header styles */
header.mast {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    background: #323264;
    color: #ffffff;
}
.sitename {
    font-size: 1.8em;
    font-weight: bold;
}
.sitecity {
    font-size: 1em;
}

/* Navigation */
nav.menu {
    background: #336699;
}
nav.menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-around;
}
nav.menu li {
    margin: 0 10px;
}
nav.menu a {
    color: #ffffff;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
    background: #336699;
    transition: background 0.3s;
}
nav.menu a:hover {
    background: #25486a;
}

/* Main content */
main {
    padding: 20px;
}
.current-conditions, .forecast {
    margin-bottom: 20px;
}
.current-conditions h1, .forecast h2 {
    margin-bottom: 10px;
}

.spotlighttable {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    border: 1px solid #e6dfcf;
    background: #f3f2eb;
    border-radius: 5px;
}
.spotlightlabel {
    font-weight: bold;
}

/* Footer */
footer {
    padding: 10px;
    background: #323264;
    color: #ffffff;
    text-align: center;
}

/* Responsive layout */
@media (max-width: 768px) {
    nav.menu ul {
        flex-direction: column;
        align-items: center;
    }

    .spotlighttable {
        flex-direction: column;
    }
}
