/* Współdzielone style dla festiwali */

/* Gradient background dla podów i headerów */
.festival-gradient-bg {
    background-image: linear-gradient(168deg, rgba(84, 59, 126, 0.1) 0%, rgba(26, 23, 40, 0.1) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    overflow: hidden;
}

/* Tytuł festiwalu */
.festival-title {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
}

/* Szczegóły festiwalu (data, lokalizacja) */
.festival-details {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: 0.75rem;
}

.festival-date,
.festival-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    font-size: 0.9rem;
    white-space: nowrap;
}

.festival-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Responsive dla desktop */
@media (min-width: 768px) {
    .festival-details {
        gap: 2rem;
    }
    
    .festival-date,
    .festival-location {
        font-size: 1rem;
    }
    
    .festival-icon {
        width: 18px;
        height: 18px;
    }
}

/* Układ dwurzędowy - zawsze */
.festival-content {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.festival-title {
    margin-bottom: 0.75rem;
    text-align: left;
}

.festival-details {
    margin-top: 0;
    justify-content: space-between;
}

/* Festival landing page - general styles */
.festival-options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
}

.festival-option-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(103, 109, 117, 0.4);
    border-radius: 16px;
    padding: 24px 16px;
    text-decoration: none;
    color: #fff;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    position: relative;
    overflow: hidden;
}

.festival-option-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 16px;
}

.festival-option-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.festival-option-card:hover::before {
    opacity: 1;
}

/* Disable hover effects on touch devices */
@media (hover: none) and (pointer: coarse) {
    .festival-option-card:hover {
        transform: none;
        box-shadow: none;
        border-color: rgba(255, 255, 255, 0.2);
    }
    
    .festival-option-card:hover::before {
        opacity: 0;
    }
}

.festival-option-icon {
    font-size: 2rem;
    margin-bottom: 12px;
    color: #fff;
    position: relative;
    z-index: 1;
}

.festival-option-name {
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
    color: #fff;
    position: relative;
    z-index: 1;
    letter-spacing: 0.5px;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .festival-options-grid {
        gap: 16px;
    }
    
    .festival-option-card {
        padding: 20px 12px;
        min-height: 100px;
    }
    
    .festival-option-icon {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .festival-option-name {
        font-size: 0.85rem;
    }
}

@media (min-width: 768px) {
    .festival-options-grid {
        max-width: 700px;
        gap: 24px;
    }
    
    .festival-option-card {
        padding: 28px 20px;
        min-height: 140px;
    }
    
    .festival-option-icon {
        font-size: 2.2rem;
        margin-bottom: 14px;
    }
    
    .festival-option-name {
        font-size: 1rem;
    }
} 