/* Hero Diagonal Split */
.kf-hero-split-diagonal {
    position: relative;
    width: 100%;
    height: calc(100vh - 90px);
    min-height: 600px;
    background: #0e1317;
    overflow: hidden;
}

.split-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
}

.split-item {
    position: absolute;
    top: 0;
    width: 60%; /* Přesah pro šikmý řez */
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
}

/* Definice stran přes clip-path */
.left-side {
    left: 0;
    z-index: 2;
    clip-path: polygon(0 0, 100% 0, 70% 100%, 0% 100%);
    /* Přidáme jemný stín, aby řez "vystoupil" nad pravou fotku */
    filter: drop-shadow(10px 0 20px rgba(0,0,0,0.5));
}

/* Vytvoření moderní zlaté linky na hraně řezu */
.left-side::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    /* Tato linka kopíruje hranu clip-pathu */
    background: #b99272; 
    clip-path: polygon(100% 0, 99.6% 0, 69.6% 100%, 70% 100%);
    z-index: 4;
    pointer-events: none;
}

/* Volitelné: Světelný efekt na lince při najetí myši */
.left-side:hover::before {
    background: #fff;
    transition: background 0.5s ease;
    box-shadow: 0 0 15px rgba(255,255,255,0.5);
}

.right-side {
    right: 0;
    z-index: 1;
    width: 75%; /* Větší šířka pro pokrytí pozadí za levou stranou */
    clip-path: polygon(25% 0, 100% 0, 100% 100%, 0% 100%);
}

/* Obrázky a jejich animace */
.split-item .bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 1.5s cubic-bezier(0.2, 1, 0.3, 1), filter 0.7s ease;
    filter: brightness(0.5) grayscale(0.2);
}

.split-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(14, 19, 23, 0.2), rgba(14, 19, 23, 0.8));
    z-index: 2;
}

/* Obsah */
.split-content {
    position: relative;
    z-index: 3;
    text-align: center;
    transition: transform 0.7s cubic-bezier(0.2, 1, 0.3, 1);
}

.left-side .split-content { padding-right: 15%; } /* Posun textu od řezu */
.right-side .split-content { padding-left: 15%; }

.split-item .name {
    font-family: "Oswald", sans-serif;
    font-size: 64px;
    color: #fff;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 30px;
}

/* Stylování "falešného" tlačítka (vypadá jako kf-btn) */
.kf-btn-fake {
    display: inline-block;
    padding: 0 32px;
    height: 50px;
    line-height: 48px;
    background: #b99272;
    color: #FFF;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: 5px;
    transition: all 0.5s ease;
}

/* Hover interakce */
@media (min-width: 992px) {
    .split-item:hover .bg-img {
        transform: scale(1.08); /* Jemné zvětšení uvnitř */
        filter: brightness(0.8) grayscale(0);
    }
    
    .split-item:hover .split-content {
        transform: translateY(-10px);
    }

    .split-item:hover .kf-btn-fake {
        background: #fff;
        color: #b99272;
    }
}

.split-scroll-next {
    position: absolute;
    right: 40px;
    bottom: 30px;
    z-index: 10;
    color: #fff;
    text-decoration: none !important;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: color 0.3s ease;
}

.split-scroll-next i {
    margin-top: 8px;
    color: var(--primary);
    animation: bounceDown 2s infinite;
}

.split-scroll-next:hover {
    color: var(--primary);
}

/* Jemná animace šipky */
@keyframes bounceDown {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(5px);}
    60% {transform: translateY(3px);}
}

/* Mobilní verze - fix na 100vh a odstranění linky */
@media (max-width: 991px) {
    /* Celý Hero kontejner na mobilu vynutíme na výšku displeje */
    .kf-hero-split-diagonal { 
        height: 90vh !important; 
        min-height: auto; 
    }
    
    .split-wrapper { 
        flex-direction: column; 
        height: 100%; /* Vyplní 100vh rodiče */
    }
    
    .split-item {
        position: relative;
        width: 100% !important;
        height: 50%; /* Každý obrázek zabere přesně polovinu výšky displeje */
        min-height: auto;
        clip-path: none !important;
        filter: none !important; /* Odstraní stín z řezu */
    }

    /* Odstranění zlaté linky (řezu) na mobilu */
    .left-side::before {
        display: none !important;
    }
    
    .left-side .split-content, 
    .right-side .split-content { 
        padding: 0; 
    }
    
    .split-item .name { 
        font-size: 32px; /* Mírně zmenšeno, aby se to vešlo do 50% výšky */
        margin-bottom: 15px;
    }

    /* Zapnutí "Zobrazit více" i na mobilu */
    .split-scroll-next {
        display: flex !important; /* Zrušíme to schování, co tam bylo původně */
        right: 50%;
        transform: translateX(50%); /* Vycentrování šipky na střed */
        bottom: 20px;
        font-size: 11px;
    }
}

/* ============================ Sekce "Conabizime" ============================*/
/* Kontejner sekce */
.kf-offers-split {
    background: #090c0f;
}

.bg-dark-accent {
    background: #0e1317; /* Mírně odlišný odstín pro podklad videa */
}

/* Obal videa s mezerou a rámečkem */
.video-frame-container {
    position: relative;
    width: 100%; /* Zabere plnou šířku sloupce */
    max-width: 800px; /* Volitelné: aby video nebylo na obřích monitorech příliš vysoké */
    aspect-ratio: 16 / 9; /* Definice fixního obdélníku */
    padding: 10px; 
    border-radius: var(--radius-lg);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto; /* Vycentrování v rámci col-lg-6 */
}

.framed-video-element {
    width: 100%;
    object-fit: cover; 
    border-radius: calc(var(--radius-lg) - 10px);
    display: block;
    box-shadow: 0 0px 10px rgba(0, 0, 0, 0.5);
}

/* Play ikona přes video */
.video-play-hint {
position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    z-index: 10;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(185, 146, 114, 0.4);
    transition: all 0.3s ease;
}

.video-play-hint:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: #fff;
    color: var(--primary);
}

.video-play-hint i {
    margin-left: 5px; /* Vycentrování šipky opticky */
}

/* Textový obsah */
.split-content-wrapper {
    padding: 80px 10% 80px 12%;
}

.kf-title-big {
    font-size: 42px;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 30px;
}

.kf-title-big span {
    color: var(--primary);
}

/* Responzivita */
@media (max-width: 991px) {
    .video-frame-container {
        width: 90%;
        height: 350px;
        margin: 40px 0;
    }
    .split-content-wrapper {
        padding: 40px 20px 80px 20px;
        text-align: center;
    }
    .kf-title-big {
        font-size: 38px;
    }
}

/* Kontejner pro seznam vlastností */
.offers-feature-list {
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Styl moderní feature karty */
.feature-card {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    padding: 20px 25px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.3, 0, 0.3, 1);
}

.feature-card:hover {
    background: rgba(185, 146, 114, 0.08); /* Jemný nádech vaší barvy */
    border-color: var(--primary);
    transform: translateX(10px);
}

/* Ikona v kroužku */
.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    background: #161b1e;
    border: 1px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 22px;
    margin-right: 25px;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon-wrapper {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 0 20px rgba(185, 146, 114, 0.3);
}

/* Text uvnitř karty */
.feature-text h4 {
    margin: 0 0 5px 0;
    font-size: 18px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-text p {
    margin: 0;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
}

/* Responzivita */
@media (max-width: 991px) {
    .feature-card {
        justify-content: center;
        text-align: left;
    }
    .feature-card:hover {
        transform: translateY(-5px); /* Na mobilu raději nahoru než do strany */
    }
}

.offers-summary {
    margin-bottom: 35px;
    text-align: left; /* Nebo center, pokud máš celou sekci centrovanou */
}

.summary-services {
    font-size: 20px;
    text-transform: uppercase;
    color: var(--primary);
    letter-spacing: 2px;
    margin-bottom: 8px;
    font-weight: 500;
}

.summary-services .sep {
    color: rgba(255, 255, 255, 0.2);
    margin: 0 10px;
}

.summary-events {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: lowercase;
    letter-spacing: 0.5px;
}

.summary-events .dot {
    color: var(--primary);
    margin: 0 8px;
    font-size: 14px;
}

/* Úprava pro mobily */
@media (max-width: 991px) {
    .offers-summary {
        text-align: center;
    }
    .summary-services {
        font-size: 16px;
    }
    .summary-events {
        font-size: 14px;
    }
}

/* Úprava karty, aby vypadala jako odkaz */
.feature-card {
    text-decoration: none !important;
    display: flex;
    align-items: flex-start; /* Zarovnání nahoru kvůli delšímu textu */
    position: relative;
    padding-bottom: 45px; /* Prostor pro text "více informací" */
}

/* Styl pro text "Více informací" */
.feature-more {
    position: absolute;
    bottom: 20px;
    right: 25px;
    font-size: 13px;
    text-transform: uppercase;
    color: var(--primary);
    letter-spacing: 1px;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.feature-more i {
    font-size: 10px;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

/* Hover efekt šipky a textu */
.feature-card:hover .feature-more {
    opacity: 1;
    letter-spacing: 1.5px;
}

.feature-card:hover .feature-more i {
    transform: translateX(5px);
}

/* Reset barvy textu p v odkazu */
.feature-card p {
    color: rgba(255, 255, 255, 0.6);
}

.feature-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

/* ============================ Sekce "Hudební doprovod" ============================*/

/* Split Layout Základ */
.kf-offers-split {
    background: #090c0f;
}

.no-gutters {
    margin-right: 0;
    margin-left: 0;
}
.no-gutters > [class*="col-"] {
    padding-right: 0 !important;
    padding-left: 0 !important;
}

/* Levá strana - Texty */
.split-content-wrapper {
    padding: 80px 10% 80px 12%;
    width: 100%;
}

/* Pravá strana - Vizuál a Parallax */
.visual-split-full {
    height: 100%;
    min-height: 750px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax efekt */
    position: relative;
    overflow: hidden;
}

.absolute-overlay-dark {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
}

/* Plovoucí přehrávač */
.player-floating-wrap {
    position: relative;
    z-index: 2;
    width: 85%;
    max-width: 500px;
    background: rgba(22, 27, 30, 0.95);
    padding: 25px;
    border-radius: var(--radius-lg);
    box-shadow: 0 0px 10px rgba(0, 0, 0, 0.5);
}

/* Accordion Styling */
.accordion-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 12px;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.accordion-header {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.accordion-header:hover {
    background: rgba(255, 255, 255, 0.05);
}

.accordion-header h5 {
    color: var(--primary);
    margin: 0;
    font-size: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-content.active {
    max-height: 800px;
}

.accordion-body {
    padding: 0 25px 25px 25px;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    font-size: 16px;
}

.acc-icon {
    transition: transform 0.3s ease;
    color: var(--primary);
}

.active-icon {
    transform: rotate(180deg);
}

/* Responzivita */
@media (max-width: 991px) {
    .visual-split-full {
        min-height: 600px;
        background-attachment: scroll; /* Vypnutí parallaxu na mobilu pro výkon */
    }
    .split-content-wrapper {
        padding: 60px 20px;
        text-align: center;
    }
    .player-floating-wrap {
        width: 90%;
        margin: 40px 0;
    }
    .accordion-header {
        padding: 15px 20px;
    }
}

/* ================================= Sekce Káva ================================ */
/* Kontejner pro karty - přidáme padding pro mezery v gridu */
.coffee-cards-container {
    position: relative;
    z-index: 5;
    width: 95%;
    max-width: 750px;
    padding: 30px;
}

/* Karty */
.coffee-floating-item {
    background: rgba(18, 22, 25, 0.96);
    padding: 30px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
    height: 100%;
}

.item-divider {
    width: 30px;
    height: 2px;
    background: var(--primary);
    margin: 10px 0 20px 0;
}

.two-columns-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 15px;
}

.item-list-mini {
    list-style: none;
    padding: 0;
    margin: 0;
}

.item-list-mini li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

/* MODERNÍ SEZÓNNÍ NABÍDKA */
.seasonal-wrapper {
    display: flex;
    gap: 20px;
}

.season-box {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: var(--radius-sm);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

/* Barevné odznaky místo čar */
.season-badge {
    display: inline-block;
    padding: 4px 15px;
    border-radius: 50px;
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: 600;
}

.summer .season-badge {
    background: rgba(185, 146, 114, 0.2);
    color: #fff800;
    border: 1px solid #fff800;
}

.winter .season-badge {
    background: rgba(255, 255, 255, 0.1);
    color: #00aaff;
    border: 1px solid #00aaff
}

/* Responzivita */
@media (max-width: 767px) {
    .seasonal-wrapper {
        flex-direction: column;
    }
    .two-columns-grid {
        grid-template-columns: 1fr;
    }
}

/* Pozicování loga nad textem */
.split-content-wrapper.position-relative {
    position: relative;
}

.partner-logo-top {
    position: absolute;
    top: 0;
    right: 10%; /* Uprav podle potřeby, aby lícovalo s okrajem textu */
    z-index: 5;
    transition: opacity 0.3s ease;
}

.partner-logo-top:hover {
    opacity: 1 !important;
}

.concept_logo{
    max-width: 250px;
    height: auto;
    opacity: 1;
    filter: brightness(0) invert(1);
    margin-top: -80px;
}

/* Úprava pro mobilní zařízení */
@media (max-width: 991px) {
    .partner-logo-top {
        position: relative;
        right: 0;
        text-align: center;
        margin-bottom: 20px;
        top: 0;
    }
    .concept_logo{
        margin-top: -40px;
    }
}


/* ========================== Sekce o nás ==================================*/

/* Celkový styl sekce O nás */
.kf-about-modern {
    padding: 120px 0;
    overflow: hidden;
}

/* Obal obrázku s dekorací */
.about-image-wrapper {
    position: relative;
    padding-right: 30px;
    padding-bottom: 30px;
}

.about-img-main {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-soft);
}

/* Dekorativní rám za obrázkem */
.image-border-decoration {
    position: absolute;
    top: 30px;
    left: 30px;
    right: 0;
    bottom: 0;
    border: 2px solid var(--primary);
    border-radius: var(--radius-lg);
    z-index: 1;
}

/* Odznak/Badge na obrázku */
.about-experience-badge {
    position: absolute;
    bottom: 60px;
    left: -20px;
    background: var(--primary);
    color: #fff;
    padding: 20px 30px;
    border-radius: var(--radius-sm);
    z-index: 3;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-experience-badge .number {
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.about-experience-badge .text {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Textový obsah */
.about-content-box {
    position: relative;
}

.lead-text {
    font-size: 20px;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 25px !important;
}

/* Citátová linka */
.about-quote {
    margin-top: 30px;
    padding-left: 25px;
    border-left: 3px solid var(--primary);
    font-style: italic;
    color: var(--secondary);
    display: flex;
    align-items: flex-start;
}

.about-quote i {
    font-size: 20px;
    margin-right: 15px;
    margin-top: 5px;
    opacity: 0.5;
}

/* Responzivita */
@media (max-width: 991px) {
    .kf-about-modern {
        padding: 80px 0;
    }
    .about-image-wrapper {
        padding-right: 0;
        padding-bottom: 20px;
        margin-bottom: 40px;
    }
    .about-img-main {
        height: 450px;
    }
    .image-border-decoration {
        display: none;
    }
    .about-experience-badge {
        left: 12px;
        bottom: -10px;
    }
    .about-content-box {
        padding-left: 0 !important;
        text-align: center;
    }
    .about-quote {
        justify-content: center;
        border-left: none;
        padding-left: 0;
    }
}