/* CleanOrga Static Pages - Schwanenburg-Style Layout */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 1.8;
    color: #0a0202;
    background-color: #e4e0d7;
}

a {
    color: #a90c2e;
    text-decoration: none;
}

a:hover {
    color: #6f031f;
    text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
    font-family: Arial, Helvetica, sans-serif;
    color: #ab002a;
    margin-bottom: 15px;
}

h1 { font-size: 24px; font-weight: 600; }
h2 { font-size: 18px; font-weight: 600; }
h3 { font-size: 16px; font-weight: 600; }
h4 { font-size: 14px; font-weight: 600; }

p {
    margin-bottom: 15px;
}

ul, ol {
    margin: 15px 0 15px 25px;
}

li {
    margin-bottom: 5px;
}

/* ========== HEADER ========== */
#site-header {
    background: #910026;
    position: relative;
}

#site-header-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
}

#site-logo {
    flex-shrink: 0;
}

#site-logo img {
    max-width: 250px;
    max-height: 80px;
    height: auto;
}

#site-logo a {
    display: block;
}

/* Navigation */
#site-navigation {
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

#site-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 5px;
}

#site-navigation ul li {
    margin: 0;
}

#site-navigation ul li a {
    display: block;
    padding: 10px 15px;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    transition: background-color 0.3s;
}

#site-navigation ul li a:hover,
#site-navigation ul li.current-menu-item a {
    background-color: #a90c2e;
    text-decoration: none;
}

/* Language Selector */
#language-selector {
    margin-left: 20px;
}

#language-selector select {
    padding: 8px 12px;
    border: 1px solid #fff;
    border-radius: 3px;
    background: transparent;
    color: #fff;
    font-size: 13px;
    cursor: pointer;
}

#language-selector select option {
    background: #910026;
    color: #fff;
}

/* Mobile Menu Button */
#mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

#mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s;
}

/* ========== PAGE HEADER ========== */
#page-header {
    background: #a90c2e;
    padding: 30px 0;
}

#page-header .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

#page-header h1 {
    color: #fff;
    margin: 0;
    font-size: 28px;
}

.breadcrumbs {
    color: rgba(255,255,255,0.8);
    font-size: 13px;
    margin-top: 8px;
}

.breadcrumbs a {
    color: rgba(255,255,255,0.9);
}

.breadcrumbs a:hover {
    color: #fff;
}

/* ========== MAIN CONTENT LAYOUT ========== */
#main-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 20px;
    display: flex;
    gap: 30px;
}

#content-area {
    width: 78%;
    background: #fff;
    padding: 30px;
    border-radius: 3px;
}

#sidebar {
    width: 22%;
}

/* Sidebar Widgets */
.sidebar-widget {
    background: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 3px;
}

.sidebar-widget h4 {
    color: #910026;
    font-size: 16px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #a90c2e;
}

.sidebar-widget ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sidebar-widget ul li {
    margin: 0;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.sidebar-widget ul li:last-child {
    border-bottom: none;
}

.sidebar-widget ul li a {
    color: #0a0202;
}

.sidebar-widget ul li a:hover {
    color: #a90c2e;
}

/* ========== CONTENT STYLES ========== */
.content-section {
    margin-bottom: 30px;
}

.content-section:last-child {
    margin-bottom: 0;
}

/* Contact Info Box */
.contact-box {
    background: #f5f5f5;
    padding: 20px;
    border-left: 4px solid #a90c2e;
    margin: 20px 0;
}

.contact-box p {
    margin-bottom: 5px;
}

/* Form Styles */
.contact-form {
    max-width: 100%;
}

.form-row {
    margin-bottom: 20px;
}

.form-row label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #0a0202;
}

.form-row input,
.form-row textarea,
.form-row select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
}

.form-row input:focus,
.form-row textarea:focus {
    outline: none;
    border-color: #a90c2e;
}

.form-row textarea {
    min-height: 150px;
    resize: vertical;
}

.btn-submit {
    background: #a90c2e;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 3px;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background: #6f031f;
}

/* ========== FOOTER ========== */
#footer-widgets {
    background: #910026;
    padding: 40px 0;
    color: #fff;
}

#footer-widgets .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-widget h4 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.3);
}

.footer-widget ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-widget ul li {
    margin: 0;
    padding: 5px 0;
}

.footer-widget ul li a {
    color: rgba(255,255,255,0.8);
}

.footer-widget ul li a:hover {
    color: #fff;
    text-decoration: none;
}

.footer-widget p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 10px;
}

#footer-bottom {
    background: #910026;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding: 20px 0;
    color: rgba(255,255,255,0.7);
    font-size: 13px;
}

#footer-bottom .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#footer-bottom a {
    color: rgba(255,255,255,0.8);
}

#footer-bottom a:hover {
    color: #fff;
}

#footer-menu {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* ========== MOBILE NAVIGATION OVERLAY ========== */
#mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    z-index: 9999;
}

#mobile-nav-overlay.active {
    display: block;
}

#mobile-nav {
    background: #910026;
    width: 280px;
    height: 100%;
    padding: 20px;
    overflow-y: auto;
}

#mobile-nav-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 20px;
}

#mobile-nav ul {
    list-style: none;
    margin: 40px 0 0 0;
    padding: 0;
}

#mobile-nav ul li {
    margin: 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

#mobile-nav ul li a {
    display: block;
    padding: 15px 0;
    color: #fff;
    font-size: 16px;
}

#mobile-nav .mobile-language {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

#mobile-nav .mobile-language select {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(255,255,255,0.5);
    background: #910026;
    color: #fff;
    font-size: 14px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='white' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 35px;
}

#mobile-nav .mobile-language select option {
    background: #910026;
    color: #fff;
    padding: 10px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    #main-container {
        flex-direction: column;
    }

    #content-area,
    #sidebar {
        width: 100%;
    }

    #footer-widgets .container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    #site-navigation {
        display: none;
    }

    #language-selector {
        display: none;
    }

    #mobile-menu-btn {
        display: flex;
    }

    #site-header-inner {
        padding: 10px 15px;
    }

    #site-logo img {
        max-width: 180px;
        max-height: 60px;
    }

    #page-header {
        padding: 20px 0;
    }

    #page-header h1 {
        font-size: 22px;
    }

    #content-area {
        padding: 20px;
    }

    #footer-widgets .container {
        grid-template-columns: 1fr;
    }

    #footer-bottom .container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    #footer-menu {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    #site-logo img {
        max-width: 150px;
    }

    h1 { font-size: 20px; }
    h2 { font-size: 16px; }
}
