/* DixieNetworks.com - Static Site Styles */
/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

/* Header */
.site-header {
    background: #1a3a5c;
    color: #fff;
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* Logo row: logo on left, login button on right */
.site-header .site-logo {
    flex: 0 0 auto;
}

/* Nav on its own row below the logo */
.site-header #main-nav {
    flex: 1 1 100%;
    order: 2;
    margin-top: 0.5rem;
}

.site-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
}

.site-logo span {
    color: #4a9fd4;
}

/* Navigation */
#main-nav {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    align-items: center;
}

#main-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    padding: 0.3rem 0.5rem;
    border-radius: 3px;
    transition: background 0.2s;
}

#main-nav a:hover {
    background: rgba(255,255,255,0.15);
}

/* Mobile nav */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .nav-toggle { display: block; }
    #main-nav {
        display: none;
        flex-direction: column;
        width: 100%;
        padding-top: 1rem;
    }
    #main-nav.active { display: flex; }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Main content */
.site-main {
    min-height: 60vh;
    padding: 2rem 0;
}

.site-main h1 {
    color: #1a3a5c;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.site-main h2 {
    color: #1a3a5c;
    margin: 1.5rem 0 0.8rem;
    font-size: 1.5rem;
}

.site-main h3 {
    color: #2c5282;
    margin: 1.2rem 0 0.5rem;
    font-size: 1.2rem;
}

.site-main p {
    margin-bottom: 1rem;
}

.site-main ul, .site-main ol {
    margin: 0.5rem 0 1.5rem 2rem;
}

.site-main li {
    margin-bottom: 0.3rem;
}

.site-main a {
    color: #2c5282;
}

.site-main img {
    max-width: 100%;
    height: auto;
    margin: 1rem 0;
    border-radius: 4px;
}

/* Footer */
.site-footer {
    background: #1a3a5c;
    color: #ccc;
    padding: 2rem 0 1rem;
    margin-top: 2rem;
}

.site-footer .container {
    text-align: center;
}

#footer-links {
    margin-bottom: 1rem;
}

#footer-links a {
    color: #4a9fd4;
    text-decoration: none;
    font-size: 0.85rem;
}

#footer-links a:hover {
    text-decoration: underline;
}

.footer-copyright {
    font-size: 0.8rem;
    color: #888;
}

/* Page hero */
.page-hero {
    background: linear-gradient(135deg, #1a3a5c 0%, #2c5282 100%);
    color: #fff;
    padding: 3rem 0;
    text-align: center;
}

.page-hero h1 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

/* Content sections */
.content-section {
    margin-bottom: 2rem;
}

/* Responsive images */
.responsive-img {
    max-width: 100%;
    height: auto;
}
