/* repertoar.css – Styling pro Repertoár v rámci standardního harmoniky */

/* ===== REPERTOIRE ACCORDION OVERRIDES ===== */
.repertoire-accordion {
    margin-top: var(--space-4);
    box-shadow: var(--shadow-md);
}

.repertoire-accordion .accordion-item {
    background: white;
}

.header-label-with-icon {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.header-icon {
    width: 32px;
    height: 32px;
    background: rgba(193, 163, 118, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: #c1a376;
    flex-shrink: 0;
}

/* ===== REPERTOIRE CONTENT ===== */
.rep-tab-desc {
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
    margin-bottom: var(--space-3);
    padding-left: 0;
}

/* ===== SEZNAM SKLADEB ===== */
.rep-song-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem var(--space-4);
    padding: 0;
}

.rep-song-list li {
    font-size: 0.9rem;
    color: var(--clr-text);
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding: 4px 0;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.rep-song-list li i {
    color: #c1a376;
    font-size: 0.7rem;
    flex-shrink: 0;
}

.rep-song-list li em {
    color: #888;
    font-size: 0.85rem;
}

/* ===== RESPONZIVITA ===== */
@media (max-width: 640px) {
    .rep-song-list {
        grid-template-columns: 1fr;
    }

    .header-label-with-icon {
        gap: var(--space-2);
    }
}


/* ===== CEREMONY JOURNEY SECTION ===== */
.ceremony-journey {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    margin-top: var(--space-6);
}

.journey-step {
    display: flex;
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(157, 98, 105, 0.1);
    transition: var(--transition-normal);
    min-height: 240px; /* Consistent height */
}

.journey-step:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
    border-color: var(--clr-primary-light);
}

.step-indicator {
    background: #c1a376; /* Accent gold instead of primary pink */
    color: white;
    padding: var(--space-6) var(--space-4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 120px; /* Consistent sidebar width */
    text-align: center;
}

.step-count {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1;
}

.step-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 8px;
    opacity: 0.9;
}

.step-content {
    flex: 1;
    padding: var(--space-6) var(--space-8); /* Increased internal padding for more space */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.step-content h3 {
    margin-bottom: var(--space-2);
    font-size: 1.6rem;
    color: var(--clr-heading);
}

.moment-desc {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0;
    line-height: 1.6;
}

.song-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: var(--space-6); /* Using large margin top directly on pills */
}

.song-tag {
    background: #fbf6f6;
    color: var(--clr-text);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(157, 98, 105, 0.15);
    cursor: default; /* No pointer cursor as it's not clickable */
}

.step-image-box {
    width: 320px; /* Consistent image width */
    position: relative;
    overflow: hidden;
}

.step-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.journey-step:hover .step-image-box img {
    transform: scale(1.05);
}

@media (max-width: 900px) {
    .journey-step {
        flex-direction: column;
        min-height: auto;
    }
    
    .step-indicator {
        flex-direction: row;
        gap: 15px;
        padding: 1rem;
        min-width: auto;
    }
    
    .step-count {
        font-size: 1.8rem;
    }
    
    .step-image-box {
        width: 100%;
        height: 200px;
        order: -1;
    }
}

/* Skladba na přání - Mobile Opts */
@media (max-width: 768px) {
    .request-song-layout .text-content h2 {
        font-size: 1.6rem;
        margin-bottom: var(--space-3);
    }
    
    .request-song-layout .text-content p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 0.75rem;
    }
    
    .request-song-layout .text-content .strong-text {
        font-size: 1rem;
        margin: var(--space-3) 0;
    }
    
    .request-song-layout .icon-list li {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }
    
    .request-song-layout .icon-list i {
        font-size: 0.9rem;
    }
    
    .request-song-layout .mt-3 {
        margin-top: 1rem !important;
    }
}
