/**
 * eObce Public Styles
 * 
 * @package Eobce
 */

/* ==========================================================================
   Úřední deska
   ========================================================================== */

.eobce-uredni-deska {
    margin: 20px 0;
}

.eobce-deska-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.eobce-deska-item {
    background: #fff;
    border: 1px solid #e1e4e8;
    border-radius: 6px;
    padding: 20px;
    transition: box-shadow 0.3s ease;
}

.eobce-deska-item:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.eobce-deska-item.archived {
    opacity: 0.7;
    background: #f6f8fa;
}

.eobce-deska-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.eobce-deska-title {
    margin: 0;
    font-size: 1.2em;
    flex: 1;
}

.eobce-deska-title a {
    color: #0366d6;
    text-decoration: none;
}

.eobce-deska-title a:hover {
    text-decoration: underline;
}

.eobce-badge {
    display: inline-block;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    border-radius: 12px;
    white-space: nowrap;
}

.eobce-badge.priority-high {
    background: #ffeef0;
    color: #d73a49;
}

.eobce-badge.archived {
    background: #f1f8ff;
    color: #0366d6;
}

.eobce-deska-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.9em;
    color: #586069;
}

.meta-item {
    display: flex;
    gap: 5px;
}

.eobce-deska-excerpt {
    margin-bottom: 15px;
    line-height: 1.6;
}

.eobce-deska-attachments {
    margin: 15px 0;
    padding: 15px;
    background: #f6f8fa;
    border-radius: 4px;
}

.eobce-deska-attachments ul {
    list-style: none;
    margin: 10px 0 0 0;
    padding: 0;
}

.eobce-deska-attachments li {
    padding: 8px 0;
    border-bottom: 1px solid #e1e4e8;
}

.eobce-deska-attachments li:last-child {
    border-bottom: none;
}

.eobce-deska-attachments .dashicons {
    vertical-align: middle;
    margin-right: 5px;
    color: #0366d6;
}

.eobce-deska-attachments .file-size {
    color: #586069;
    font-size: 0.85em;
    margin-left: 5px;
}

.eobce-deska-footer {
    margin-top: 15px;
    text-align: right;
}

.eobce-button {
    display: inline-block;
    padding: 8px 16px;
    background: #0366d6;
    color: #fff !important;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    transition: background 0.3s ease;
}

.eobce-button:hover {
    background: #0256c1;
}

/* Layout: Grid */
.layout-grid .eobce-deska-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

/* Layout: Cards */
.layout-cards .eobce-deska-item {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.layout-cards .eobce-deska-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

/* ==========================================================================
   Kontakty
   ========================================================================== */

.eobce-kontakty {
    margin: 20px 0;
}

.eobce-logo {
    text-align: center;
    margin-bottom: 30px;
}

.eobce-logo img {
    max-width: 200px;
    height: auto;
}

.eobce-info-box {
    background: #fff;
    border: 1px solid #e1e4e8;
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 20px;
}

.eobce-vedeni {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.eobce-osoba {
    background: #fff;
    border: 1px solid #e1e4e8;
    border-radius: 6px;
    padding: 15px;
    text-align: center;
}

.eobce-osoba img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

.eobce-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-link {
    padding: 10px 20px;
    border-radius: 4px;
    color: #fff !important;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.social-link:hover {
    opacity: 0.8;
}

.social-link.facebook {
    background: #1877f2;
}

.social-link.instagram {
    background: #E4405F;
}

.social-link.youtube {
    background: #FF0000;
}

/* ==========================================================================
   Akce
   ========================================================================== */

.eobce-akce-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.eobce-akce-item {
    background: #fff;
    border: 1px solid #e1e4e8;
    border-radius: 6px;
    padding: 15px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.akce-datum {
    background: #0366d6;
    color: #fff;
    padding: 10px;
    border-radius: 4px;
    text-align: center;
    min-width: 80px;
    font-weight: 600;
}

.akce-misto {
    color: #586069;
    font-size: 0.9em;
    margin-top: 5px;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 768px) {
    .eobce-deska-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .layout-grid .eobce-deska-list {
        grid-template-columns: 1fr;
    }
    
    .eobce-vedeni {
        grid-template-columns: 1fr;
    }
    
    .eobce-akce-item {
        flex-direction: column;
        text-align: center;
    }
}
