/* Muhlhel IT Solutions - Main Stylesheet */
/* Colors extracted from logo: Navy Blue (#1a2a5e), Burgundy/Maroon (#8b2332), Gold (#9a8a4a), Gray (#6b6b6b) */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #ffffff;
}

a {
    color: #1a2a5e;
    text-decoration: none;
}

a:hover {
    color: #8b2332;
}

/* Header */
header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav ul li a {
    font-size: 15px;
    font-weight: 500;
    color: #1a2a5e;
    padding: 5px 0;
}

nav ul li a:hover {
    color: #8b2332;
}

nav ul li a.active {
    color: #8b2332;
    border-bottom: 2px solid #8b2332;
}

/* Mobile Navigation */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #1a2a5e;
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    min-height: calc(100vh - 200px);
}

h1 {
    font-size: 36px;
    color: #1a2a5e;
    margin-bottom: 15px;
    font-weight: 600;
}

h2 {
    font-size: 28px;
    color: #1a2a5e;
    margin-bottom: 20px;
    font-weight: 600;
}

h3 {
    font-size: 20px;
    color: #1a2a5e;
    margin-bottom: 15px;
    font-weight: 600;
}

.subtitle {
    font-size: 20px;
    color: #6b6b6b;
    margin-bottom: 30px;
}

p {
    margin-bottom: 20px;
    font-size: 16px;
    color: #333333;
}

/* Home Page */
.hero {
    text-align: center;
    padding: 60px 0;
}

.hero h1 {
    font-size: 42px;
}

.hero .subtitle {
    font-size: 22px;
    max-width: 800px;
    margin: 0 auto 40px;
}

.intro-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.affiliation {
    margin-top: 60px;
    text-align: center;
}

.affiliation p {
    font-size: 14px;
    color: #6b6b6b;
    margin-bottom: 10px;
}

.affiliation img {
    height: 50px;
    width: auto;
}

/* Content Pages */
.page-content {
    max-width: 900px;
}

.page-content ul {
    list-style: none;
    margin: 20px 0;
}

.page-content ul li {
    padding: 10px 0;
    padding-left: 20px;
    position: relative;
    font-size: 16px;
    color: #333333;
}

.page-content ul li::before {
    content: "–";
    position: absolute;
    left: 0;
    color: #8b2332;
}

/* Partners Section */
.partners-list {
    margin: 30px 0;
}

.partners-list ul li {
    padding: 12px 0;
}

/* Contact Page */
.contact-info {
    margin-top: 30px;
}

.contact-info a {
    font-size: 18px;
    color: #1a2a5e;
    font-weight: 500;
}

.contact-info a:hover {
    color: #8b2332;
}

/* Footer */
footer {
    background-color: #f5f5f5;
    border-top: 1px solid #e0e0e0;
    padding: 30px 0;
    margin-top: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-text {
    font-size: 14px;
    color: #6b6b6b;
}

.footer-affiliation {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-affiliation span {
    font-size: 12px;
    color: #6b6b6b;
}

.footer-affiliation img {
    height: 30px;
    width: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        border-bottom: 1px solid #e0e0e0;
        padding: 20px;
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        gap: 15px;
    }

    .header-container {
        flex-wrap: wrap;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero .subtitle {
        font-size: 18px;
    }

    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 24px;
    }

    main {
        padding: 40px 20px;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }
}
