/* AKAO Odessa — static site stylesheet */

*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    color: #535548;
    background-color: #d9ccb4;
    background-image: repeating-linear-gradient(135deg, rgba(255,255,255,0.05) 0px, rgba(255,255,255,0.05) 2px, transparent 2px, transparent 8px);
    background-repeat: repeat-x;
    margin: 0;
    padding: 0;
    line-height: 1.5;
}

#page {
    background-color: #f0e9db;
    width: 1000px;
    margin: 0 auto;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
    min-height: 100vh;
}

/* === HEADER === */
#header-position {
    background-image: url(../images/header_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    height: 169px;
    overflow: hidden;
}

#header {
    height: 169px;
    position: relative;
}

#usermenu {
    position: absolute;
    top: 8px;
    right: 10px;
}

#languages ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 8px;
}

#languages li a {
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    padding: 2px 6px;
    background: rgba(0,0,0,0.3);
    border-radius: 3px;
}

#languages li.current_siteaccess a {
    background: rgba(171,1,1,0.7);
}

/* === NAVIGATION === */
#topmenu-position {
    background-color: #8b6c42;
}

#topmenu {
    padding: 0;
}

#topmenu-firstlevel {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

#topmenu-firstlevel li a {
    display: block;
    padding: 10px 18px;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: bold;
    transition: background 0.2s;
}

#topmenu-firstlevel li a:hover,
#topmenu-firstlevel li.current a,
#topmenu-firstlevel li.selected a {
    background-color: #ab0101;
    color: #fff;
}

/* === MAIN CONTENT === */
#columns-position {
    padding: 0;
}

#columns {
    padding: 0;
}

#main-position {
    padding: 0;
}

#main {
    padding: 25px 30px;
    min-height: 400px;
}

/* === CONTENT === */
h1 {
    font-size: 1.4em;
    font-weight: normal;
    color: #5a3e1b;
    margin: 0 0 15px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid #c9b99a;
}

h2 { font-size: 1.2em; color: #5a3e1b; }
h3, h4, h5 { font-size: 1em; color: #535548; }

h2 a {
    color: #ab0101;
    text-decoration: none;
}

h2 a:hover { text-decoration: underline; }

a { color: #ab0101; text-decoration: underline; }
a:hover { color: #000; }

p {
    margin: 0.5em 0;
    line-height: 1.5;
}

ul { padding-left: 1.5em; }
li { margin: 0.3em 0; }

/* === ARTICLE LIST === */
.article-list { margin: 0; padding: 0; list-style: none; }

.article-item {
    padding: 15px 0;
    border-bottom: 1px solid #d9ccb4;
}

.article-item:last-child { border-bottom: none; }

.article-item h2 { margin: 0 0 6px 0; }

.article-excerpt {
    color: #666;
    font-size: 0.95em;
}

/* === ARTICLE FULL === */
.article-body {
    line-height: 1.6;
}

.article-body ul { margin: 0.5em 0; }

.article-meta {
    font-size: 0.85em;
    color: #888;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #c9b99a;
}

.back-link {
    display: inline-block;
    margin-bottom: 15px;
    font-size: 0.9em;
    color: #ab0101;
}

/* === CONTACT TABLE === */
.contact-table {
    width: 100%;
    border-collapse: collapse;
    background: transparent;
    margin: 15px 0;
}

.contact-table td {
    padding: 8px 12px;
    vertical-align: top;
    border-bottom: 1px solid #d9ccb4;
    background: transparent;
}

/* === CALENDAR === */
.calendar-container {
    background: #fff9f0;
    border: 1px solid #c9b99a;
    border-radius: 4px;
    padding: 20px;
    margin-bottom: 20px;
}

.calendar-note {
    background: #fef8e7;
    border-left: 4px solid #c9a020;
    padding: 12px 16px;
    margin: 15px 0;
    font-size: 0.9em;
    color: #7a6010;
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    background: transparent;
}

.schedule-table th {
    background: #8b6c42;
    color: #fff;
    padding: 8px 12px;
    text-align: left;
    font-size: 0.9em;
}

.schedule-table td {
    padding: 8px 12px;
    border-bottom: 1px solid #d9ccb4;
    background: transparent;
}

.schedule-table tr:nth-child(even) td {
    background: rgba(139,108,66,0.05);
}

/* === FOOTER === */
#footer {
    background-color: #8b6c42;
    color: #e8d8be;
    padding: 15px 30px;
    font-size: 12px;
    text-align: center;
}

#footer a { color: #f0d9b0; }

/* === BORDER BOX === */
.content-box {
    background: transparent;
    border: 1px solid #c9b99a;
    border-radius: 2px;
    padding: 20px;
    margin-bottom: 10px;
}

/* === ARCHIVE NOTICE === */
.archive-notice {
    background: #f5f0e8;
    border: 1px solid #c9b99a;
    border-radius: 4px;
    padding: 10px 16px;
    margin-bottom: 20px;
    font-size: 0.85em;
    color: #7a6040;
}

@media (max-width: 1020px) {
    #page { width: 100%; }
}
