/* Základní styly */
body {
    font-family: 'Cormorant Garamond', serif;
    background-color: #f9f5e9;
    color: #4a3f35;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-image: url('https://www.transparenttextures.com/patterns/cream-paper.png');
}

/* Hlavní kontejner */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
#header {
    background: linear-gradient(135deg, #8b7355 0%, #5d4b36 100%);
    border-radius: 0 0 20px 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.header-img {
    height: 300px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-blend-mode: overlay;
    background-color: rgba(93, 75, 54, 0.6);
}

.logo-title {
    text-align: center;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.site-title a {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #f8f3e6;
    text-decoration: none;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
}

.site-description {
    font-size: 1.5rem;
    color: #e8d9b5;
    margin-top: 10px;
    font-style: italic;
}

/* Navigace */
#navigation {
    background: linear-gradient(to right, #6b5a45, #7d6a53);
    padding: 0;
}

.menu-container {
    padding: 0 20px;
}

.menu {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu li {
    position: relative;
    margin: 0 5px;
}

.menu li a {
    display: block;
    padding: 15px 25px;
    color: #f8f3e6;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.menu li a:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.menu li.current-menu-item a {
    background-color: #a38b6a;
    font-weight: bold;
}

/* Hlavní obsah */
.post-area {
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    border: 1px solid #e0d6c2;
}

.headline {
    font-family: 'Playfair Display', serif;
    color: #5d4b36;
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.headline:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, #a38b6a, #c9b79c);
    border-radius: 3px;
}

h5 strong {
    color: #7d6a53;
    font-size: 1.3rem;
}

ul {
    padding-left: 20px;
}

ul li {
    margin-bottom: 10px;
    position: relative;
    list-style-type: none;
}

ul li:before {
    content: "•";
    color: #a38b6a;
    font-size: 1.5rem;
    position: absolute;
    left: -20px;
    top: -2px;
}

/* Obrázky */
.feature-img {
    margin-bottom: 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-img img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.feature-img:hover img {
    transform: scale(1.02);
}

.alignnone {
    margin: 20px 0;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    border: 5px solid #f1ebe1;
    transition: all 0.3s ease;
}

.alignnone:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

/* Sidebar */
.sidebar {
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0d6c2;
}

.widget_search {
    margin-bottom: 30px;
}

#searchform {
    position: relative;
}

#s {
    width: 100%;
    padding: 12px 20px;
    border: 1px solid #e0d6c2;
    border-radius: 30px;
    font-size: 1rem;
    background-color: #f9f5e9;
    transition: all 0.3s ease;
}

#s:focus {
    outline: none;
    border-color: #a38b6a;
    box-shadow: 0 0 0 2px rgba(163, 139, 106, 0.2);
}

#searchsubmit {
    position: absolute;
    right: 5px;
    top: 5px;
    background: linear-gradient(to right, #8b7355, #a38b6a);
    color: white;
    border: none;
    padding: 7px 15px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

#searchsubmit:hover {
    background: linear-gradient(to right, #a38b6a, #8b7355);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #5d4b36 0%, #4a3f35 100%);
    color: #e8d9b5;
    padding: 30px 0;
    border-radius: 20px 20px 0 0;
    margin-top: 50px;
}

.footer-content {
    text-align: center;
}

.footer a {
    color: #e8d9b5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Responsivní design */
@media (max-width: 768px) {
    .header-img {
        height: 200px;
    }
    
    .site-title a {
        font-size: 2.5rem;
    }
    
    .site-description {
        font-size: 1.2rem;
    }
    
    .menu {
        flex-direction: column;
    }
    
    .menu li {
        margin: 5px 0;
    }
    
    .post-area, .sidebar {
        padding: 20px;
    }
}

/* Speciální efekty */
@keyframes leafFall {
    0% { transform: translateY(-100px) rotate(0deg); opacity: 0; }
    100% { transform: translateY(0) rotate(360deg); opacity: 1; }
}

/* Přidejte tento kód do hlavičky HTML pro načtení fontů */
/* <link href="https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap" rel="stylesheet"> */