/* ==========================================================================
   DESIGN SYSTÉM PRO DOBROVODSKÉ KOHOUTY (GLOBÁLNÍ STYLY)
   ========================================================================== */

@font-face {
    font-family: 'Bebas Neue';
    src: url('BebasNeue-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --kohouti-red: #bd1c1c;     /* Červená barva ze stuhy loga */
    --dark-wood: #1e1212;       /* Tmavý divadelní odstín */
    --paper-bg: #fcfbf9;        /* Podklad starých tisků */
    --text-dark: #2b2525;
    --text-muted: #5d554c;
    --font-serif: 'Bebas Neue', sans-serif;
    --font-sans: "Helvetica Neue", Arial, sans-serif;
    --shadow: 0 4px 15px rgba(0,0,0,0.05);
    --transition: all 0.3s ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background-color: var(--paper-bg);
    line-height: 1.7;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://w3.org/2000/svg' width='120' height='120' viewBox='0 0 100 100'%3E%3Cg fill='%23635a5a' fill-opacity='0.03'%3E%3Cpath d='M25 45c0-10 8-15 15-15s15 5 15 15-5 15-15 15-15-5-15-15zm8-2c0 2 1 3 3 3s3-1 3-3-1-3-3-3-3 1-3 3zm14 0c0 2 1 3 3 3s3-1 3-3-1-3-3-3-3 1-3 3zm-11 9c3 0 5-2 5-4h-10c0 2 2 4 5 4z'/%3E%3Cpath d='M75 45c0-10-8-15-15-15s-15 5-15 15 5 15 15 15-15-5-15-15zm-14-2c0-2 1-3 3-3s3 1 3 3-1 3-3 3-3-1-3-3zm14 0c0-2 1-3 3-3s3 1 3 3-1 3-3 3-3-1-3-3zm-9 5h-10c0 2 2 4 5 4s5-2 5-4z'/%3E%3C/g%3E%3C/svg%3E");
}

/* HORNÍ LIŠTA S LOGEM A TELEFONY */
.top-bar {
    background-color: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #efeae2;
}

.top-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo-link img {
    max-width: 340px;
    height: auto;
    display: block;
}

.contact-info {
    text-align: right;
    font-size: 0.9rem;
    color: #555;
}

.contact-info .male-zs {
    font-size: 60%;
    margin-left: 5px;
}

.contact-info .spolek-nazev {
    font-family: var(--font-serif);
    font-weight: bold;
    color: var(--kohouti-red);
    font-size: 1.7rem;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.social-icons {
    margin-top: 8px;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.social-icons a {
    transition: transform 0.2s;
}

.social-icons a:hover {
    transform: scale(1.1);
}

/* --- HLAVNÍ NAVIGACE & HAMBURGER MENU --- */
header {
    background: var(--dark-wood);
    border-bottom: 4px solid var(--kohouti-red);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.hlavni-menu {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    min-height: 48px; /* Zajišťuje stabilní výšku lišty i na mobilu */
}

.hlavni-menu ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.hlavni-menu li {
    position: relative;
}

.hlavni-menu a, .hlavni-menu li.home {
    display: block;
    padding: 6px 25px;
    color: #fff;
    text-decoration: none;
    font-family: var(--font-serif);
    font-size: 1.4rem;
    letter-spacing: 1.5px;
    transition: var(--transition);
    cursor: pointer;
}

.hlavni-menu a:hover, .hlavni-menu li.home {
    color: #fff;
    background-color: var(--kohouti-red);
}

/* Tlačítko Hamburger pro mobily */
.hamburger-btn {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 10px 0;
}

.hamburger-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    border-radius: 2px;
}

/* Obrázek masek na pravé straně */
.menu-masky {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    height: 30px;
    width: auto;
    object-fit: contain;
    pointer-events: none;
}

/* BANNER */
.banner-upoutavka {
    max-width: 1300px;
    margin: 15px auto 5px auto;
    padding: 0 15px;
    text-align: center;
}

.banner-upoutavka img {
    width: 100%;
    max-width: 1060px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #e0d7c6;
}

/* OBSAH A KRONIKA */
main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 20px;
}

.intro-title {
    font-family: var(--font-serif);
    font-size: 2.4rem;
    letter-spacing: 2px;
    text-align: left;
    color: var(--kohouti-red);
    margin-bottom: 3px;
}

.sezona-sekce {
    background: #fff;
    border: 1px solid #eae2d5;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
}

.sezona-sekce h2 {
    font-family: var(--font-serif);
    font-size: 2.4rem;
    letter-spacing: 1.5px;
    color: var(--kohouti-red);
    margin-bottom: 5px;
    border-bottom: 1px dashed #e6dfd3;
    padding-bottom: 2px;
}

.sezona-sekce h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    letter-spacing: 1.5px;
    color: var(--kohouti-red);
    margin-bottom: 2px;
    border-bottom: 1px dashed #e6dfd3;
    padding-bottom: 2px;
}

.sezona-sekce h4 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    letter-spacing: 1.5px;
    color: var(--kohouti-red);
    margin-bottom: 2px;
    border-bottom: 1px dashed #e6dfd3;
    padding-bottom: 2px;
}

.sezona-sekce p {
    margin-bottom: 20px;
    text-align: justify;
    font-size: 1.05rem;
    color: #3a3333;
}

.sezona-sekce p.red {
    margin-bottom: 20px;
    text-align: justify;
    font-size: 1.05rem;
    color: var(--kohouti-red);
}

.sezona-sekce a {
    font-weight: bold;
    color: var(--kohouti-red);
}

/* OBRÁZKY V TEXTU */
.img-left {
    float: left;
    margin: 5px 25px 25px 0;
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.06);
    max-width: 45%;
    height: auto;
}

.img-right {
    float: right;
    margin: 5px 0 25px 25px;
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.06);
    max-width: 45%;
    height: auto;
}

.img-right-1 {
    float: right;
    margin: 5px 0 25px 25px;
    max-width: 45%;
    height: auto;
}

.clear {
    clear: both;
}

/* PATIČKA */
footer {
    background-color: var(--dark-wood);
    color: #dcd1d1;
    padding: 20px 20px 25px 20px;
    border-top: 4px solid var(--kohouti-red);
    margin-top: 60px;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
}

.footer-srdce {
    width: 100%;
    max-width: 1100px; 
    height: auto;     
    margin: 0 auto 15px auto;
    display: block;
}

.footer-links-row {
    display: flex;
    justify-content: flex-end; 
    align-items: center;
    gap: 30px; 
    margin: 0 auto 15px auto;
    max-width: 1100px;
    font-size: 0.95rem;
}

.footer-docs {
    display: flex;
    gap: 20px;
}

.footer-docs a {
    color: #bfaeae;
    text-decoration: none;
    transition: var(--transition);
}

.footer-docs a:hover {
    color: var(--kohouti-red);
    text-decoration: none;
    font-weight: bold;
}

.footer-socials {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-socials a img {
    height: 20px;
    width: auto;
    display: block;
    transition: transform 0.2s;
}

.footer-socials a:hover img {
    transform: scale(1.15);
}

.footer-meta-line {
    border-top: 1px solid #3a2b2b;
    padding-top: 15px;
    margin-top: 5px;
    font-size: 0.8rem;
    color: #9c9090;
    text-align: center;
}

/* SPECIÁLNÍ DOPLŇKOVÉ STYLY PRO TABULKU A HISTORII TERMÍNŮ */
.terminy-tabulka {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: #fff;
    box-shadow: var(--shadow);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #eae2d5;
}

.terminy-tabulka th {
    background-color: var(--dark-wood);
    color: #fff;
    font-family: var(--font-serif);
    font-size: 1.3rem;
    letter-spacing: 1px;
    padding: 12px 15px;
    text-align: left;
}

.terminy-tabulka td {
    padding: 15px;
    border-bottom: 1px solid #efeae2;
    color: var(--text-dark);
    font-size: 1.05rem;
}

.terminy-tabulka tr:last-child td {
    border-bottom: none;
}

.terminy-tabulka tr:hover {
    background-color: #fdfcfb;
}

.datum-box {
    font-weight: bold;
    color: var(--kohouti-red);
}

.status-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    background-color: var(--kohouti-red);
    color: #ffffff !important;
    width: 80px;
}

.status-badge.sold-out {
    background-color: var(--kohouti-red);
    color: #ffffff;
    width: 66px;
}

.historie-nadpis {
    margin-top: 50px;
}

.historie-seznam {
    list-style: none;
    padding: 0;
}

.historie-seznam li {
    padding: 10px 0;
    border-bottom: 1px dashed #e6dfd3;
    color: var(--text-muted);
}

.historie-seznam li b {
    color: var(--text-dark);
}

/* SPECIÁLNÍ DOPLŇKOVÉ STYLY PRO DIVADELNÍ ALBA */
.galerie-grid {
    display: flex;
    flex-direction: column;
    gap: 45px;
    margin-top: 30px;
}

.alba-karta {
    background: #fff;
    border: 1px solid #eae2d5;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    padding: 25px;
}

.alba-karta h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--kohouti-red);
    letter-spacing: 1px;
    margin-bottom: 20px;
    line-height: 1.1;
    border-bottom: 1px solid #efeae2;
    padding-bottom: 10px;
}

.alba-karta-body {
    display: flex;
    flex-direction: row;
    gap: 30px;
}

.alba-foto-wrapper {
    flex: 0 0 320px;
    height: 320px;
    position: relative;
    background-color: var(--dark-wood);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.alba-foto-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.alba-rok {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: var(--kohouti-red);
    color: #fff;
    font-family: var(--font-serif);
    padding: 3px 12px;
    font-size: 1.1rem;
    border-radius: 4px;
    letter-spacing: 1px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.alba-obsah {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.alba-anotace {
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.6;
}

.alba-tym {
    border-top: 1px dashed #e6dfd3;
    padding-top: 15px;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.alba-tym p {
    margin-bottom: 6px;
}

.alba-link-button {
    align-self: flex-start;
    display: inline-block;
    background-color: transparent;
    color: var(--kohouti-red);
    border: 2px solid var(--kohouti-red);
    text-decoration: none;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    padding: 5px 22px;
    border-radius: 4px;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
}

.alba-link-button:hover {
    background-color: var(--kohouti-red);
    color: var(--paper-bg);
}

.btn-back {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-muted);
    font-family: var(--font-serif);
    font-size: 1.2rem;
    margin-bottom: 20px;
    transition: var(--transition);
}

.btn-back:hover {
    color: var(--kohouti-red);
}

.foto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 15px;
    margin-top: 25px;
}

.foto-polozka {
    position: relative;
    height: 220px;
    overflow: hidden;
    border-radius: 6px;
    border: 1px solid #eae2d5;
    box-shadow: var(--shadow);
    cursor: pointer;
    background-color: var(--dark-wood);
}

.foto-polozka img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.foto-polozka:hover img {
    transform: scale(1.06);
    opacity: 0.85;
}

/* LIGHTBOX OBLAST */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(30, 18, 18, 0.95);
    justify-content: center;
    align-items: center;
    user-select: none;
}

.lightbox-obsah {
    max-width: 85%;
    max-height: 80%;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    border: 2px solid #3a2b2b;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 25px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover { color: var(--kohouti-red); }

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    padding: 10px 20px;
    cursor: pointer;
    transition: var(--transition);
    background: rgba(0,0,0,0.1);
    border-radius: 6px;
}

.lightbox-nav:hover { color: var(--kohouti-red); background: rgba(0,0,0,0.3); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-popisek {
    position: absolute;
    bottom: 30px;
    color: #fff;
    font-size: 1.1rem;
    text-align: center;
    width: 100%;
    font-family: var(--font-sans);
}

/* SEKCE PRO SPOLEKOVOU HYMNU */
.hymna-box {
    background: var(--dark-wood);
    border-left: 5px solid var(--kohouti-red);
    border-radius: 6px;
    padding: 15px;
    margin: 10px 0 20px 0;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    box-shadow: var(--shadow);
}

.hymna-text h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--kohouti-red);
    letter-spacing: 1px;
    margin-top: 0;
    margin-bottom: 5px;
}

.hymna-text p { color: #dcd1d1; font-size: 0.95rem; margin: 0; }
.hymna-ovladani { display: flex; align-items: center; gap: 15px; flex-wrap: wrap; }
.hymna-ovladani audio { height: 40px; }

.btn-download {
    background-color: transparent;
    color: #fff;
    border: 1px solid #bfaeae;
    text-decoration: none;
    font-family: var(--font-serif);
    font-size: 1rem;
    padding: 6px 16px;
    border-radius: 4px;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-download:hover {
    border-color: var(--kohouti-red);
    background-color: var(--kohouti-red);
}

/* SEKCE ČLENOVÉ */
.kategorie-nadpis {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--kohouti-red);
    margin: 5px 0 15px 0;
    border-bottom: 2px solid #efeae2;
    padding-bottom: 5px;
    letter-spacing: 1px;
}

.kategorie-blok {
    margin-bottom: 20px;
}

.clenove-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 25px;
    margin-bottom: 20px;
}

.clen-karta {
    background: #fff;
    border: 1px solid #eae2d5;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    text-align: center;
    padding: 25px 20px;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
}

.clen-karta:hover {
    transform: translateY(-3px);
    border-color: var(--kohouti-red);
    box-shadow: 0 6px 15px rgba(0,0,0,0.06);
}

.clen-foto-wrapper {
    width: 125px;
    height: 125px;
    margin: 0 auto 15px auto;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #efeae2;
    background-color: var(--dark-wood);
    transition: var(--transition);
}

.clen-karta:hover .clen-foto-wrapper {
    border-color: var(--kohouti-red);
}

.clen-foto-wrapper img { width: 100%; height: 100%; object-fit: cover; }

.clen-karta h3 {
    font-family: var(--font-serif);
    font-size: 1.7rem;
    color: var(--text-dark);
    letter-spacing: 0.5px;
    margin-bottom: 2px;
    transition: var(--transition);
}

.clen-karta:hover h3 {
    color: var(--kohouti-red);
}

.clen-pozice {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-weight: bold;
    margin-bottom: 10px;
}

.clen-sipka {
    font-size: 0.8rem;
    color: #bfaeae;
    transition: var(--transition);
}

.clen-karta:hover .clen-sipka { color: var(--kohouti-red); }

.clen-detail {
    display: none;
    width: 100%;
    background: #fff;
    border: 2px solid var(--kohouti-red);
    border-radius: 8px;
    padding: 25px;
    box-shadow: var(--shadow);
    text-align: left;
    margin-top: 15px;
    margin-bottom: 25px;
    animation: rozbaleni 0.3s ease-out;
}

@keyframes rozbaleni {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.detail-obsah h4 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--kohouti-red);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.detail-obsah p { margin-bottom: 15px; color: var(--text-dark); line-height: 1.6; font-size: 1.05rem; }

.detail-role {
    font-size: 0.95rem;
    border-top: 1px dashed #e6dfd3;
    padding-top: 12px;
    color: var(--text-dark);
}

.detail-role b { color: var(--dark-wood); }

.clen-karta.aktivni {
    border-color: var(--kohouti-red);
    background-color: #fffdfc;
}

.clen-karta.aktivni .clen-sipka {
    color: var(--kohouti-red);
    font-weight: bold;
}

.clen-detail h4 {
    font-size: clamp(1.8rem, 5vw, 2.8rem) !important;
    line-height: 1.2 !important;
}

.clen-detail h4 span {
    display: block;
    font-size: 1.1rem !important;
    margin-left: 0 !important;
    margin-top: 5px;
}

.clen-detail > div:last-child > div:first-child {
    flex: 1 1 250px !important;
    min-width: 0 !important;
    width: 100% !important;
    max-width: 300px !important;
}

.clen-detail > div:last-child > div:last-child {
    min-width: 0 !important;
}

/* --- MOBILNÍ RESPONSIVNÍ ÚPRAVY --- */
@media (max-width: 768px) {
/* 1. Horní lišta: zvětšíme mezeru nad kontakty a zrušíme dolní odsazení bílého bloku */
   /* 1. Odstranění spodního odsazení celé bílé lišty */
    .top-bar {
        padding-bottom: 0;
    }

    /* 2. Zvětšení mezery pod logem a vynulování spodního paddingu containeru */
    .top-container { 
        flex-direction: column;
        justify-content: center; 
        align-items: center;
        gap: 18px; /* Zvětšená mezera pod logem */
        padding: 15px 15px 0 15px;
    }

    .logo-link img {
        max-width: 240px;
    }

    /* 3. Usazení kontaktů těsně nad tmavé menu */
    .contact-info { 
        text-align: center;
        font-size: 0.78rem;
        line-height: 1; /* Zruší přebytečné výškové odsazení textu */
        margin-bottom: 3px; /* Drobné přisazení k černé liště */
    }
	
    /* Skrytí nadbytečných prvků na mobilu (název spolku, adresa, sociální sítě) */
    .contact-info .spolek-nazev,
    .contact-info p:nth-child(2),
    .contact-info .social-icons {
        display: none;
    }

    /* Zobrazení pouze e-mailu a telefonů na jeden řádek */
    .contact-info p {
        display: inline;
        margin: 0;
    }

    /* Přidání oddělovače | mezi e-mail a telefony */
    .contact-info p:nth-child(3)::after {
        content: " | ";
        color: var(--kohouti-red);
        font-weight: bold;
        margin: 0 4px;
    }

    /* Stylizace textu kontaktů pro lepší čitelnost */
    .contact-info p:nth-child(3),
    .contact-info p:nth-child(4) {
        color: var(--text-dark);
        font-weight: 500;
    }
    
    /* Mobilní navigace */
    .hamburger-btn {
        display: flex;
        position: relative;
        z-index: 1001;
    }

    .hlavni-menu ul {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: var(--dark-wood);
        text-align: center;
        z-index: 1000;
    }

    .hlavni-menu ul.open {
        display: flex;
    }

    .hlavni-menu a, .hlavni-menu li.home {
        padding: 12px;
        border-bottom: 1px solid #2e1d1d;
    }

    .menu-masky {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1001;
    }

    .sezona-sekce { padding: 25px; }
    .img-left, .img-right { float: none; display: block; margin: 20px auto; max-width: 90%; }
    .sezona-sekce p { text-align: left; }
    .footer-links-row { flex-direction: column; align-items: center; justify-content: center; gap: 15px; }
    .footer-docs { flex-direction: column; gap: 10px; text-align: center; }
    .footer-meta-line { flex-direction: column; gap: 15px; text-align: center; }
    .alba-karta-body { flex-direction: column; gap: 20px; }
    .alba-foto-wrapper { flex: none; width: 100%; height: 220px; }
}

/* ==========================================================================
   NOVÉ: SAMOSTATNÉ ROZBALOVÁNÍ / SBALOVÁNÍ SEZÓN (HARMONIKA)
   ========================================================================== */

/* Nastavení nadpisu ročníku jako rozbalovacího tlačítka */
.kohouti-rocnik-hlavicka {
    cursor: pointer;
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    margin-bottom: 0 !important;
    transition: color 0.2s ease;
}

.kohouti-rocnik-hlavicka:hover {
    color: var(--kohouti-red, #bd1c1c);
}

/* Stylování šipky u ročníku */
.kohouti-sipka {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

/* Otočení šipky při otevření */
.kohouti-rocnik-sekce.kohouti-otevreno .kohouti-sipka {
    transform: rotate(180deg);
}

/* Výchozí stav: Obsah ročníků je skrytý */
.kohouti-sezona-obsah {
    display: none;
    padding-top: 15px;
}

/* Po otevření se obsah zobrazí */
.kohouti-rocnik-sekce.kohouti-otevreno .kohouti-sezona-obsah {
    display: block;
}