/* ==========================================
   ZÁKLADNÍ NASTAVENÍ
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito Sans', sans-serif;
    color: #333333;
    line-height: 1.6;
    background-color: #FFFFFF;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* ==========================================
   HLAVIČKA A NAVIGACE
   ========================================== */
.slogan-bar {
    background-color: #0A5C2F;
    color: #ffffff;
    padding: 8px 0;
}

.slogan {
    margin: 0;
    text-align: center;
    font-size: 14px;
    font-style: italic;
    font-weight: 300;
}

.site-header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo {
    flex: 0 0 180px;
}

.logo img {
    max-width: 100%;
    height: auto;
}

.main-navigation {
    flex: 1;
    margin: 0 20px;
}

.menu {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu li {
    margin: 0 15px;
}

.menu a {
    color: #333333;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    position: relative;
    padding-bottom: 5px;
}

.menu a:hover, .menu a.active {
    color: #0A5C2F;
}

.menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #0A5C2F;
    transition: width 0.3s ease;
}

.menu a:hover::after, .menu a.active::after {
    width: 100%;
}

.home-icon svg {
    vertical-align: middle;
    stroke: #333333;
    transition: stroke 0.3s ease;
}

.home-icon a:hover svg {
    stroke: #0A5C2F;
}

.header-actions {
    display: flex;
    align-items: center;
}

.icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
    color: #333333;
}

.icon:hover {
    color: #0A5C2F;
}

.language-selector {
    margin-left: 20px;
    position: relative;
    cursor: pointer;
}

.current-lang {
    display: flex;
    align-items: center;
    font-weight: 500;
}

.current-lang::after {
    content: '▼';
    font-size: 8px;
    margin-left: 5px;
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    padding: 10px 0;
    min-width: 120px;
    display: none;
    z-index: 100;
}

.language-selector:hover .lang-dropdown {
    display: block;
}

.lang-option {
    display: block;
    padding: 8px 15px;
    color: #333333;
    transition: background-color 0.3s ease;
    text-align: center;
}

.lang-option:hover {
    background-color: #f5f5f5;
    color: #0A5C2F;
}

/* Mobilní menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    height: 3px;
    width: 100%;
    background-color: #333333;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-panel {
    display: none;
    position: fixed;
    top: 0;
    right: -250px;
    width: 200px;
    height: 100vh;
    background-color: white;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 70px 10px 20px;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.mobile-menu-panel.active {
    right: 0;
    display: block;
}

.mobile-menu-panel a {
    display: block;
    padding: 12px 15px;
    color: #333;
    border-bottom: 1px solid #eee;
    font-weight: 500;
}

.mobile-menu-panel a:hover, .mobile-menu-panel a.active {
    color: #0A5C2F;
    background-color: rgba(10, 92, 47, 0.05);
}

.mobile-menu-panel a svg {
    width: 20px;
    height: 20px;
    stroke: #333;
    vertical-align: middle;
}

/* ==========================================
   HERO SEKCE - HOMEPAGE
   ========================================== */


/* ==========================================
   POPUP FORMULÁŘ
   ========================================== */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.popup-content {
    position: relative;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    max-width: 800px;
    width: 90%;
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 28px;
    color: #333;
    cursor: pointer;
}

.popup h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #0A5C2F;
    text-align: center;
}

.popup-columns {
    display: flex;
    gap: 30px;
}

.popup-image {
    flex: 0 0 40%;
}

.popup-form {
    flex: 0 0 60%;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.submit-button {
    background-color: #0A5C2F;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
}

.privacy-note {
    font-size: 12px;
    color: #666;
    text-align: center;
    margin-top: 15px;
}

/* ==========================================
   BREADCRUMBS
   ========================================== */

  /* Styly breadcrumbs - drobečková navigace */
.breadcrumbs-container {
  background-color: #f8f8f8;
  border-bottom: 1px solid #e0e0e0;
  padding: 10px 0;
  margin-top: 126px;
  margin-bottom: 30px;
  width: 100%;
  box-sizing: border-box;
  position: relative;
}

/* Zajištění, že pozadí breadcrumbs bude přes celou šířku, ale obsah bude omezen */
.breadcrumbs-container::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #f8f8f8;
  z-index: -1;
}

.breadcrumbs {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.breadcrumbs ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}

.breadcrumbs li {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  color: #666;
}

.breadcrumbs li:not(:last-child)::after {
  content: "›";
  margin: 0 10px;
  color: #999;
}

.breadcrumbs a {
  color: #1E3A2B;
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumbs a:hover {
  color: #D4AF37;
  text-decoration: underline;
}

.breadcrumbs li:last-child {
  color: #999;
}

@media (max-width: 768px) {
  .breadcrumbs {
    padding: 0 15px;
  }
  
  .breadcrumbs li {
    font-size: 12px;
  }
}


/* ==========================================
   ČLÁNKOVÁ STRÁNKA
   ========================================== */

        /* Styly pro článkovou stránku */
        
        body, html, .main-content, main {
          background-color: #f8f9f7 !important; /* Velmi světlý zelenkavý nádech */
        }
        
        .article-container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 10px 30px 10px 30px;
            margin-bottom: 180px;
        }
        
        /* Hlavička článku */
        .article-header {
            text-align: center;
            padding: 20px 0;
            margin-bottom: 5px;
            position: relative;
        }
        
        .article-category {
            display: inline-block;
            background-color: #0A5C2F;
            color: white;
            padding: 0 0;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 1px;
        }
        
        .article-title {
            font-size: 42px;
            color: #1E3A2B;
            line-height: 1.2;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
        .article-title::after {
            content: "";
            display: block;
            width: 80px;
            height: 3px;
            background-color: #0A5C2F;
            margin: 20px auto 0;
        }
        
        .article-meta {
            display: flex;
            justify-content: center;
            align-items: center;
            color: #666;
            font-size: 14px;
            gap: 30px;
        }
        
        .article-author, .article-date {
            display: flex;
            align-items: center;
        }
        
        .article-author svg, .article-date svg {
            width: 16px;
            height: 16px;
            margin-right: 8px;
            fill: none;
            stroke: #0A5C2F;
            stroke-width: 2;
        }
        
        /* Dekorativní prvek */
        .article-decoration {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 120px;
            height: 120px;
            opacity: 0.1;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath fill='%230A5C2F' d='M38.1,-65.1C46.1,-56.3,47.6,-39.7,53.5,-25.6C59.5,-11.5,69.8,0.1,71.2,12.7C72.5,25.3,64.8,38.8,54.2,49.6C43.6,60.4,30.1,68.4,15.3,71.8C0.6,75.2,-15.4,74,-28.6,67.8C-41.8,61.6,-52.1,50.5,-59.7,37.7C-67.3,24.9,-72.2,10.5,-70.8,-3.1C-69.5,-16.7,-62,-29.5,-52.1,-38.8C-42.2,-48.2,-30,-54.1,-17.7,-61.5C-5.4,-68.9,7,-77.8,19.3,-77.2C31.6,-76.6,43.9,-66.6,55.9,-55.9C67.8,-45.3,79.3,-34,81.5,-21.6C83.7,-9.1,76.6,4.4,70.2,16.9C63.9,29.4,58.3,40.8,49.2,48.8C40.1,56.9,27.5,61.5,14.7,65.4C1.9,69.3,-10.9,72.6,-20.9,68.9C-30.9,65.2,-38,54.6,-48.3,45.5C-58.6,36.4,-72,28.8,-77.6,17.5C-83.2,6.2,-81,-8.9,-75.4,-22.4C-69.9,-36,-61.1,-48,-49.5,-57.1C-37.9,-66.3,-23.7,-72.6,-8.5,-74.6C6.7,-76.6,22.8,-74.3,38.1,-65.1Z' transform='translate(100 100)'/%3E%3C/svg%3E");
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            z-index: -1;
        }
        
        /* Obsah článku */
        .article-content {
            background-color: #f8f9f7 !important; /* Velmi světlý zelenkavý nádech */
            font-size: 16px;
            line-height: 1.8;
            color: #333;
            margin-bottom: 0 0 0 0 !important;
            padding-bottom: 0 0 0 0 !important;
        }
        
        .article-content p {
            margin-bottom: 20px;
        }
        
        .article-content h2 {
            font-size: 28px;
            color: #1E3A2B;
            margin: 5px 0 10px;
            position: relative;
            padding-left: 10px;
        }
        
        .article-content h2::before {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 5px;
            background-color: #0A5C2F;
            border-radius: 3px;
        }
        
        .article-content h3 {
            font-size: 22px;
            color: #1E3A2B;
            margin: 30px 0 15px;
        }
        
        /* Bloky obsahu */
        .content-block {
            margin-bottom: 10px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            background-color: white;
            padding: 20px;
            border-top: 3px solid #0A5C2F;
        }
        
        article, 
        .content-block, 
        .wp-block-column, 
        .entry-content > div {
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.03);
            padding: 25px;
            margin-bottom: 0;
        }
        
        .article-image, 
        figure, 
        .wp-block-image {
            margin-bottom: 15px !important;
        }
        
        
        /* Full width text */
        .content-text-full {
            position: relative;
        }
        
        /* Full width image */
        .content-image-full {
            text-align: center;
            margin-bottom: 0 !important;
            padding-bottom: 0 !important;
        }
        
        .content-image-full img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            margin-bottom: 0 !important;
            padding-bottom: 0 !important;
        }
        
        .image-caption {
            font-size: 14px;
            color: #666;
            text-align: center;
            margin-top: 5px;
            margin-bottom: 10px !important;
            padding-bottom: 0 !important;
            font-style: italic;
        }
        
        .image-container {
          margin-bottom: 0px;
        }
        
        /* Text left, image right */
        .content-text-image {
            display: flex;
            gap: 30px;
        }
        
        .content-text-image .text-content {
            flex: 0 0 60%;
        }
        
        .content-text-image .image-content {
            flex: 0 0 40%;
            text-align: center;
            align-self: center;
        }
        
        .content-text-image img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
        }
        
        /* Image left, text right */
        .content-image-text {
            display: flex;
            gap: 30px;
        }
        
        .content-image-text .image-content {
            flex: 0 0 40%;
            text-align: center;
            align-self: center;
        }
        
        .content-image-text .text-content {
            flex: 0 0 60%;
        }
        
        .content-image-text img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
        }
        
        /* Zvýraznění */
        .highlight-box {
            background-color: rgba(10, 92, 47, 0.05);
            border-left: 3px solid #0A5C2F;
            padding: 20px;
            margin: 20px 10px;
            border-radius: 0 8px 8px 0;
        }
        
        .quote-box {
            margin-top: 0;
            padding: 30px;
            background-color: rgba(30, 58, 43, 0.04);
            border-radius: 8px;
            position: relative;
            font-style: italic;
            color: #1E3A2B;
            margin: 10px 0;
        }
        
        .quote-box::before {
            content: """;
            position: absolute;
            top: 0;
            left: 20px;
            font-size: 80px;
            line-height: 1;
            color: rgba(10, 92, 47, 0.2);
        }
        
        /* Přidat jemný zelený pruh na levé straně odstavců pro vizuální zajímavost */
        .content-block p {
          border-left: 2px solid rgba(30, 58, 43, 0.1);
          padding-left: 15px;
          margin-left: 5px;
        }
        
        /* Úprava mezery mezi obrázkem a citátem */
        img + .image-caption {
          margin-top: 5px;
          margin-bottom: -10px; /* Menší mezera pod popiskem */
        }
        
        /* Upravení mezer u citátu */
        blockquote, 
        .quote-box {
          margin: 25px 0;
          padding: 15px;
          font-style: italic;
          border-left: 3px solid #1E3A2B;
          background-color: rgba(30, 58, 43, 0.04);
        }
        
        /* Přidání mezer mezi odstavce v textu */
        p {
          margin-bottom: 20px; /* Větší mezera mezi odstavci */
          line-height: 1.6; /* Lepší čitelnost textu */
        }
        
        .content-block p + p,
        .content-text-full p + p,
        .content-text-image .text-content p + p,
        .content-image-text .text-content p + p {
          margin-top: 20px;
        }
        
        
        /* Související články */
        .related-articles {
            margin-top: 60px;
            padding-top: 40px;
            margin-bottom: 30px;
            padding-bottom: 10px;
           border-top: 1px solid #eee;
        }
        
        .related-articles h3 {
            font-size: 24px;
            color: #1E3A2B;
            margin-bottom: 30px;
            text-align: center;
        }
        
        .related-articles-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        
        .related-article-card {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            background-color: white;
            transition: transform 0.3s, box-shadow 0.3s;
            display: flex;
            flex-direction: column;
        }
        
        .related-article-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.15);
        }
        
        .related-article-image {
            height: 160px;
            overflow: hidden;
        }
        
        .related-article-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .related-article-card:hover .related-article-image img {
            transform: scale(1.05);
        }
        
        .related-article-content {
            padding: 15px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }
        
        .related-article-title {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 10px;
            color: #1E3A2B;
            line-height: 1.4;
        }
        
        .related-article-description {
            font-size: 14px;
            color: #666;
            line-height: 1.5;
            margin-bottom: 15px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .read-more {
            color: #517A68;
            font-weight: 600;
            text-decoration: none;
            font-size: 14px;
            margin-top: auto;
            display: inline-block;
            transition: color 0.3s;
        }
        
        .read-more:hover {
            color: #1E3A2B;
        }
        
        
        
        /* Responzivní design */
        @media (max-width: 992px) {
            .related-articles-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .article-header {
                padding: 40px 0;
            }
            
            .article-title {
                font-size: 32px;
            }
            
            .content-text-image, .content-image-text {
                flex-direction: column;
            }
            
            .content-text-image .text-content,
            .content-text-image .image-content,
            .content-image-text .text-content,
            .content-image-text .image-content {
                flex: 0 0 100%;
            }
            
            .related-articles-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 576px) {
            .article-meta {
                flex-direction: column;
                gap: 10px;
            }
            
            .related-articles-grid {
                grid-template-columns: 1fr;
            }
            
            .content-block {
                padding: 20px;
            }
            
            .article-title {
                font-size: 28px;
            }
            .related-articles-grid {
                grid-template-columns: 1fr;
            }
        }


/* ==========================================
   ROZCESTNÍKOVÁ STRÁNKA
   ========================================== */
.category-header {
    background-color: #0A5C2F;
    margin-top: -30px;
    padding: 60px 0;
    margin-bottom: 50px;
}

.category-title {
    color: white;
    font-size: 42px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
}

.category-intro {
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 18px;
    line-height: 1.6;
}

.articles-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.article-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.article-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.article-card:hover .article-image img {
    transform: scale(1.05);
}

.article-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #0A5C2F;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.article-content {
    padding: 20px;
}

.article-title {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
    line-height: 1.4;
    font-weight: 600;
}

.read-more {
    color: #0A5C2F;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s;
}

.read-more:hover {
    border-color: #0A5C2F;
}





/* ==========================================
   RESPONZIVNÍ DESIGN
   ========================================== */
    
    .articles-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .popup-columns {
        flex-direction: column;
    }
    
    .popup-image, .popup-form {
        flex: 0 0 100%;
    }
    
    .footer-columns {
        flex-direction: column;
    }
    
    .footer-column {
        flex: 0 0 100%;
        margin-bottom: 30px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-navigation {
        display: none;
    }
}

    .articles-wrapper {
        grid-template-columns: 1fr;
    }
    
    .category-header {
        padding: 40px 0;
    }
    
    .category-title {
        font-size: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        margin-top: 15px;
    }
    
    .footer-legal a {
        margin: 0 10px;
    }
}





/* ==========================================
   Styly pro rozcestníkovou stránku
   ========================================== */

/* Hlavička kategorie */
.category-header {
    background-color: #0A5C2F;
    padding: 60px 0;
    margin-bottom: 50px;
}

.category-title {
    color: white;
    font-size: 42px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
}

.category-intro {
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 18px;
    line-height: 1.6;
}

/* Mřížka článků */
.articles-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.article-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.article-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.article-card:hover .article-image img {
    transform: scale(1.05);
}

.article-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #0A5C2F;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.article-content {
    padding: 20px;
}

.article-title {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
    line-height: 1.4;
    font-weight: 600;
}

.read-more {
    color: #0A5C2F;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s;
}

.read-more:hover {
    border-color: #0A5C2F;
}

/* Responzivní design */
@media (max-width: 992px) {
    .articles-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .category-title {
        font-size: 36px;
    }
}

@media (max-width: 576px) {
    .articles-wrapper {
        grid-template-columns: 1fr;
    }
    
    .category-header {
        padding: 40px 0;
    }
    
    .category-title {
        font-size: 30px;
    }
    
    .category-intro {
        font-size: 16px;
    }
}





/* ==========================================
   Úpravy pro rozcestníkovou stránku
   ========================================== */

/* Kontejner pro celou stránku s pevnou šířkou */
.site-container {
    max-width: 1280px;
    margin: 0 auto;
    background-color: #FFFFFF;
}

/* Lepší vzhled karty článku */
.article-card {
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Úprava obrázku na obdélníkový tvar */
.article-image {
    position: relative;
    height: 180px;
    overflow: hidden;
    border-bottom: 3px solid #0A5C2F;
}

/* Stylizace kategorie */
.article-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #0A5C2F;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Úprava obsahu článku */
.article-content {
    padding: 20px;
    background-color: #FFFFFF;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Výraznější nadpis */
.article-title {
    font-size: 18px;
    margin-bottom: 15px;
    color: #1E3A2B;
    line-height: 1.4;
    font-weight: 600;
    border-left: 3px solid #0A5C2F;
    padding-left: 10px;
}

/* Přidání jemné textury do pozadí stránky */
body {
    background-color: #F9F9F9;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1IiBoZWlnaHQ9IjUiPgo8cmVjdCB3aWR0aD0iNSIgaGVpZ2h0PSI1IiBmaWxsPSIjZmZmIj48L3JlY3Q+CjxyZWN0IHdpZHRoPSIxIiBoZWlnaHQ9IjEiIGZpbGw9IiNmNWY1ZjUiPjwvcmVjdD4KPC9zdmc+');
}

/* Přidání stínu k článkovým kartám při hover */
.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(10, 92, 47, 0.15);
    border-color: #0A5C2F;
}

/* Vylepšený vzhled tlačítka "Číst více" */
.read-more {
    color: #0A5C2F;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
    padding: 8px 15px;
    border: 1px solid #0A5C2F;
    border-radius: 20px;
    transition: all 0.3s ease;
    text-align: center;
    margin-top: 15px;
}

.read-more:hover {
    background-color: #0A5C2F;
    color: white;
    border-color: #0A5C2F;
}

/* Vylepšení hlavičky kategorie */
.category-header {
    background-color: #0A5C2F;
    padding: 60px 0;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}

.category-header::after {
    content: "";
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(135deg, #0A5C2F 25%, transparent 25%) -50px 0,
                linear-gradient(225deg, #0A5C2F 25%, transparent 25%) -50px 0,
                linear-gradient(315deg, #0A5C2F 25%, transparent 25%),
                linear-gradient(45deg, #0A5C2F 25%, transparent 25%);
    background-size: 100px 100px;
    background-color: #F9F9F9;
}





/* ==========================================
   Horní patička
   ========================================== */
    .site-footer {
      background-color: #1E3A2B;
      color: #fff;
      font-family: 'Montserrat', sans-serif;
      padding-top: 70px;
    }
    
    .footer-main {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      display: grid;
      grid-template-columns: 1fr 1fr 1fr 1fr;
      gap: 40px;
    }
    
    .footer-column {
      margin-bottom: 30px;
    }
    
    .footer-logo {
      max-width: 180px;
      margin-bottom: 20px;
    }
    
    .footer-about-text {
      font-size: 14px;
      line-height: 1.6;
      color: rgba(255,255,255,0.7);
      margin-bottom: 25px;
    }
    
    .footer-contact-info {
      margin-bottom: 5px;
      font-size: 14px;
      line-height: 1.8;
      color: rgba(255,255,255,0.7);
    }
    
    .footer-contact-info strong {
      color: #fff;
      display: block;
      margin-bottom: 5px;
    }
    
    .footer-contact-hours {
      font-size: 13px;
      color: rgba(255,255,255,0.6);
      margin-bottom: 15px;
    }
    
    .footer-contact-email {
      color: #D4AF37;
      text-decoration: none;
      transition: color 0.3s ease;
    }
    
    .footer-contact-email:hover {
      color: #FFD700;
    }
    
    .footer-heading {
      color: #ffffff;
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 20px;
      position: relative;
      padding-bottom: 10px;
      text-shadow: 0 1px 3px rgba(0,0,0,0.3);
    }
    
    .site-footer .footer-heading {
      color: #ffffff !important; /* Použití !important pro přepsání jakýchkoliv jiných CSS pravidel */
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 20px;
      position: relative;
      padding-bottom: 10px;
      text-shadow: 0 1px 3px rgba(0,0,0,0.3);
    }
    
    .footer-heading::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      width: 40px;
      height: 2px;
      background-color: #D4AF37;
    }
    
    .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    
    .footer-links li {
      margin-bottom: 12px;
    }
    
    .footer-links a {
      color: rgba(255,255,255,0.7);
      text-decoration: none;
      font-size: 14px;
      transition: all 0.3s ease;
      display: inline-block;
    }
    
    .footer-links a:hover {
      color: #D4AF37;
      transform: translateX(3px);
    }
    
    .footer-social {
      display: flex;
      margin-top: 25px;
    }
    
    .footer-social a {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background-color: rgba(255,255,255,0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 12px;
      transition: all 0.3s ease;
    }
    
    .footer-social a:hover {
      background-color: #D4AF37;
      transform: translateY(-3px);
    }
    
    .footer-social svg {
      width: 16px;
      height: 16px;
      fill: #fff;
    }
    
    .footer-benefits {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }
    
    .footer-benefits a {
      font-size: 13px;
    }
    
    .footer-bottom {
      background-color: #152C20;
      padding: 20px 0;
      margin-top: 50px;
    }
    
    .footer-bottom-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
    }
    
    .footer-copyright {
      color: rgba(255,255,255,0.6);
      font-size: 13px;
    }
    
    .footer-legal {
      display: flex;
      flex-wrap: wrap;
    }
    
    .footer-legal a {
      color: rgba(255,255,255,0.6);
      text-decoration: none;
      font-size: 13px;
      margin-left: 20px;
      transition: color 0.3s ease;
    }
    
    .footer-legal a:hover {
      color: #D4AF37;
    }
    
    .footer-newsletter {
      margin-top: 20px;
    }
    
    .footer-newsletter-form {
      display: flex;
      margin-top: 15px;
    }
    
    .footer-newsletter-input {
      flex: 1;
      padding: 10px 15px;
      background-color: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: 4px 0 0 4px;
      color: #fff;
      font-size: 14px;
    }
    
    .footer-newsletter-input::placeholder {
      color: rgba(255,255,255,0.5);
    }
    
    .footer-newsletter-button {
      background-color: #D4AF37;
      color: #1E3A2B;
      border: none;
      padding: 0 15px;
      font-weight: 600;
      font-size: 14px;
      border-radius: 0 4px 4px 0;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }
    
    .footer-newsletter-button:hover {
      background-color: #FFD700;
    }
    
    .footer-payment-methods {
      margin-top: 25px;
    }
    
    .footer-payment-text {
      font-size: 13px;
      color: rgba(255,255,255,0.6);
      margin-bottom: 10px;
    }
    
    .footer-payment-icons {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
    }
    
    .footer-payment-icon {
      margin-right: 10px;
      margin-bottom: 10px;
      opacity: 0.7;
      transition: opacity 0.3s ease;
    }
    
    .footer-payment-icon:hover {
      opacity: 1;
    }
    
    @media (max-width: 992px) {
      .footer-main {
        grid-template-columns: 1fr 1fr;
      }
    }
    
    @media (max-width: 768px) {
      .footer-main {
        grid-template-columns: 1fr;
      }
      
      .footer-bottom-container {
        flex-direction: column;
        text-align: center;
      }
      
      .footer-legal {
        margin-top: 15px;
        justify-content: center;
      }
      
      .footer-legal a {
        margin: 5px 10px;
      }
    }
    




