:root {
    --czech-blue: #11457e;
    --czech-red: #d7141a;
    --czech-white: #ffffff;
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --dark-gray: #343a40;
}
a { 
    color: #00AEEF
}

/* Add an active class to highlight the current page   #005599 */
.active {
    background-color: #003366;
    color: white;
}

/* Add a black background color to the top navigation */
.navigation {
    background-color: #005599;
    overflow: hidden;
    user-select: none 
}
/* Style the links inside the navigation bar */
.navigation a {
    display: inline-grid;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
}

/* Change the color of links on hover */
.navigation a:hover {
    background-color: #ddd;
    color: #f2f2f2;
    color: black;
}

/* Hide the link that should open and close the navigation on small screens */
.navigation .icon {
    display: none;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f4f4f4;
}

header {
    background: #003366;
    color: white;
    padding: 15px;
    text-align: center;
    position: relative;
}
.language-switcher {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
}
.language-switcher a {
    background: transparent;
    border: 1px solid white;
    color: white;
    padding: 5px 10px;
    margin-right: 5px;
    text-decoration: none;
    display: inline-block;
}
.language-switcher a:hover {
    background: white;
    color: #333;
}
main {
    padding: 20px;
    min-height: calc(100vh - 302px)
}

.hero {
    background: linear-gradient(to right, #003366, #005599);
    color: white;
    padding: 20px;
    text-align: center;
}

.hero_mob {
    background: linear-gradient(to right, #003366, #005599);
    color: white;
    padding: 20px;
    text-align: center;
    display: none;
}

.member_mob {
    display: none;
}
.member {
    text-align: center;
    width: 80%;
    position: relative;
    margin-left: auto;
    margin-right: auto;
}

.member-container {
    display: flex;
    gap: 10px;
}

.member-item {
    background: white;
    padding: 15px;
    border-radius: 5px;
    flex: 1;
    transition: transform 0.3s ease;
}

.member-item:hover {
    transform: scale(1.05);
}


.news {
    width: 50%;
    position: relative;
    margin-left: auto;
    margin-right: auto;
}

.news-container {
    display: relative;
    gap: 10px;
}

.news-item {
    background: white;
    padding: 15px;
    border-radius: 5px;
    flex: 1;
    transition: transform 0.3s ease;
}


footer {
    position: relative;
    background: #003366;
    color: white;
    text-align: center;
    padding: 10px;
}


/* Tabulka členství */
.membership-comparison {
    overflow-x: auto;
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 8px;
}

.membership-comparison table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.membership-comparison th, 
.membership-comparison td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.membership-comparison th {
    background-color: #11457e;
    color: white;
    font-weight: 600;
}

.membership-comparison tr:nth-child(even) {
    background-color: #f8f9fa;
}

.membership-comparison tr:hover {
    background-color: #e9ecef;
}

/* Tlačítka pro stahování */
.membership-comparison a {
    display: inline-block;
    background-color: #00AEEF;
    color: white;
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 4px;
    margin: 5px 0;
    transition: all 0.3s ease;
    font-weight: 500;
}

.membership-comparison a:hover {
    background-color: #11457e;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Důležité informace */
.important-notes {
    background-color: #e3f2fd;
    border-left: 4px solid #11457e;
    padding: 20px;
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
}

.important-notes ul {
    list-style-type: none;
    padding-left: 0;
}

.important-notes li {
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

.important-notes li:before {
    content: "•";
    color: #d7141a;
    font-size: 24px;
    position: absolute;
    left: 10px;
    top: -4px;
}

/* FAQ sekce */
.faq {
    margin: 30px 0;
}

.faq h3 {
    background-color: #f8f9fa;
    padding: 12px 15px;
    border-left: 3px solid #11457e;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 0;
}

.faq h3:hover {
    background-color: #e9ecef;
}

.faq p {
    padding: 15px;
    margin-top: 0;
    background-color: #fff;
    border: 1px solid #eee;
    border-top: none;
    border-radius: 0 0 4px 4px;
}

/* CTA tlačítko */
.cta {
    text-align: center;
    background: linear-gradient(135deg, #11457e 0%, #d7141a 100%);
    color: white;
    padding: 25px;
    border-radius: 8px;
    margin-top: 40px;
}

.cta a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 1px dashed white;
}
/* ===== SPECIÁLNÍ STYLY PRO "O NÁS" ===== */
.about-header {
    text-align: center;
    margin-bottom: 30px;
}

.about-goals {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.goal-card {
    background: white;
    border: 1px solid var(--medium-gray);
    border-radius: 8px;
    padding: 20px;
    transition: transform 0.3s ease;
}

.goal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border-top: 3px solid var(--czech-blue);
}

/* ===== SPECIÁLNÍ STYLY PRO "STANOVY" ===== */
/* ===== ZÁKLADNÍ STYLY PRO STRÁNKU STANOV ===== */
.statutes-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
}

.statutes-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #d7141a;
    position: relative;
}

.statutes-header h1 {
    font-size: 2.5rem;
    color: #11457e;
    margin-bottom: 15px;
}

.statutes-header h1 i {
    margin-right: 15px;
    color: #d7141a;
}

.subtitle {
    font-size: 1.2rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

.statutes-intro {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    text-align: center;
}

.download-box {
    margin-top: 20px;
}

.download-btn {
    display: inline-block;
    background-color: #11457e;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

.download-btn:hover {
    background-color: #d7141a;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.download-btn i {
    margin-right: 8px;
}

.file-info {
    display: block;
    font-size: 0.9rem;
    color: #666;
}

.file-info i {
    margin-right: 5px;
    color: #d7141a;
}

/* ===== ČLÁNKY STANOV ===== */
.statute-article {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px dashed #ccc;
}

.article-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.article-number {
    background-color: #11457e;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.article-header h2 {
    font-size: 1.8rem;
    color: #11457e;
    margin: 0;
    border: none;
    padding: 0;
}

.article-content p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.article-content ul {
    padding-left: 25px;
    margin-bottom: 25px;
}

.article-content li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
    font-size: 1.1rem;
}

.article-content li:before {
    content: "•";
    color: #d7141a;
    position: absolute;
    left: 0;
    font-size: 20px;
    line-height: 1;
}

.highlight-box {
    background: linear-gradient(to right, #e3f2fd, #f8f9fa);
    border-left: 4px solid #11457e;
    padding: 20px;
    margin: 25px 0;
    border-radius: 0 8px 8px 0;
}

.highlight-box p {
    margin: 0;
}

.highlight-box i {
    color: #11457e;
    margin-right: 10px;
}

.important-note {
    background-color: #fff8e1;
    border-left: 4px solid #ffc107;
    padding: 15px;
    margin: 20px 0;
    border-radius: 0 5px 5px 0;
}

.important-note i {
    color: #d7141a;
    margin-right: 10px;
}

/* ===== ČLENSTVÍ ===== */
.membership-types {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 25px 0;
}

.membership-card {
    flex: 1;
    min-width: 300px;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.membership-card:hover {
    transform: translateY(-5px);
    border-top: 3px solid #d7141a;
}

.membership-card h3 {
    font-size: 1.3rem;
    color: #11457e;
    margin-top: 0;
    margin-bottom: 15px;
}

.membership-card h3 i {
    margin-right: 10px;
    color: #d7141a;
}

.membership-card ul {
    padding-left: 20px;
    margin-bottom: 0;
}

.membership-card li {
    margin-bottom: 8px;
    font-size: 1rem;
}

/* ===== ORGÁNY SPOLKU ===== */
.organs-container {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin: 30px 0;
}

.organ-card {
    flex: 1;
    min-width: 300px;
    background: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.organ-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.organ-icon {
    width: 80px;
    height: 80px;
    background: #11457e;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
}

.organ-card h3 {
    color: #11457e;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.organ-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.organ-card li {
    padding: 10px 0;
    border-bottom: 1px dashed #e9ecef;
    position: relative;
    padding-left: 25px;
}

.organ-card li:last-child {
    border-bottom: none;
}

.organ-card li:before {
    content: "✓";
    color: #d7141a;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* ===== KONTAKT ===== */
.contact-section {
    background: linear-gradient(135deg, #11457e 0%, #d7141a 100%);
    color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    margin-top: 40px;
}

.contact-section h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: white;
}

.contact-section h3 i {
    margin-right: 15px;
}

.contact-section p {
    font-size: 1.2rem;
    margin-bottom: 0;
}

.contact-section a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 1px dashed white;
}


/* ===== SPECIÁLNÍ STYLY PRO "SNĚM" ===== */
.assembly-powers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.power-item {
    background: white;
    border-left: 3px solid var(--czech-blue);
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* ===== SPECIÁLNÍ STYLY PRO "PŘIDEJTE SE" ===== */
.membership-comparison {
    overflow-x: auto;
    margin: 30px 0;
}

.download-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 15px 0;
}

.file-type {
    background: var(--light-gray);
    border-radius: 5px;
    padding: 8px 15px;
    font-size: 0.9rem;
}

.file-type i {
    margin-right: 5px;
    color: var(--czech-blue);
}

.map {
    width: 100%;
    height: 500px;
}
@media (max-width: 768px) {
    
    .map {
        width: 100%;
        height: 200px;
    }
    
    .statutes-header h1 {
        font-size: 2rem;
    }
    
    .article-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .article-number {
        margin-bottom: 15px;
    }
    
    .organs-container,
    .membership-types {
        flex-direction: column;
    }
    
    .organ-card,
    .membership-card {
        min-width: 100%;
    }
    
    .download-btn {
        display: block;
        margin: 10px 0;
    }

    .membership-comparison {
        box-shadow: none;
    }
    
    .membership-comparison table {
        min-width: 100%;
    }
    
    .important-notes {
        padding: 15px;
    }

    #mynavigation{
        margin-top: 15px;
        display: flex;  
        flex-direction: row;
    }

    #mynavigation.responsive{
        display: block;
        position: absolute;
        top: -15px;
        left: 0;
        width: 100%;
        height: 100vh;
        z-index: 999999;
    }
    
    header #mynavigation.responsive{
        position: fixed;
    } 
    
    .navigation a:not(.active) {display: none;}

    .navigation a.icon {
        display: flex;
        flex-basis: 2%;
        text-align: center;
    }

    .navigation a {
        flex-basis: 98%;
        display: block;
        text-align: left;
    }

    .navigation.responsive {position: relative;}

    .navigation.responsive a.icon {
      position: absolute;
      right: 0;
      top: 0;
    }

    .navigation.responsive a {
      float: none;
      display: block;
      text-align: left;
    }

    .active {
        background-color: #005599;
        color: white;
    }
    .news {
        width: 100%;
        position: relative;
        margin-left: auto;
        margin-right: auto;
    }
    .member_mob {
        text-align: center;
        display: block;
        width: 100%;
        position: relative;
        margin-left: auto;
        margin-right: auto;
    }
    .member {
        display: none;
    }
    .hero_mob {
        background: linear-gradient(to right, #003366, #005599);
        color: white;
        padding: 20px;
        text-align: center;
        display: block;
    }
    
    .hero {
        background: linear-gradient(to right, #003366, #005599);
        color: white;
        padding: 20px;
        text-align: center;
        display: none;
    }
}
