/* =============================================
   イベントページ専用スタイル
   ============================================= */

/* FESTA バナー */
.festa-banner {
    margin-bottom: 3rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.festa-image {
    width: 100%;
    height: auto;
    display: block;
}

/* FESTA詳細 */
.festa-details {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.festa-details h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.festa-details h3 i {
    color: #FFD700;
}

/* 情報行 */
.festa-info {
    margin-bottom: 3rem;
}

.info-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--text-dark);
}

.info-item strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* プログラムスケジュール */
.program-schedule {
    margin-bottom: 3rem;
}

.program-schedule h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.schedule-day {
    background: var(--bg-light);
    border-radius: 10px;
    overflow: hidden;
}

.day-header {
    background: var(--text-dark);
    color: white;
    padding: 1rem;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
}

.schedule-list {
    padding: 1.5rem;
    list-style: none;
}

.schedule-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.schedule-list li:last-child {
    border-bottom: none;
}

.schedule-list .time {
    background: var(--text-dark);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    flex-shrink: 0;
}

/* ゲストセクション */
.guest-section {
    margin-bottom: 3rem;
}

.guest-section h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.guest-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.guest-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--text-dark);
}

.guest-item i {
    font-size: 2.5rem;
    color: var(--text-dark);
}

.guest-item div {
    display: flex;
    flex-direction: column;
}

.guest-item strong {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.guest-item span {
    font-size: 0.9rem;
    color: var(--text-light);
}

.guest-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 1rem;
}

/* CTAボタン */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

/* 過去のイベント */
.past-events-section {
    margin-top: 5rem;
}

.past-event-card {
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    margin-bottom: 3rem;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.past-event-header {
    background: linear-gradient(135deg, var(--text-dark), #333333);
    color: white;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.past-event-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.event-date {
    font-size: 0.9rem;
    opacity: 0.9;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.past-event-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    padding: 2rem;
}

/* 過去イベントの動画 */
.past-event-video {
    border-radius: 10px;
    overflow: hidden;
    background: #000;
    box-shadow: var(--shadow-md);
}

.event-video {
    width: 100%;
    height: auto;
    display: block;
}

.video-label {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 600;
    text-align: center;
    margin-top: 1rem;
    padding: 0 0.5rem;
}

/* 画像プレースホルダー（他のイベント用） */
.past-event-image-placeholder {
    background: var(--bg-light);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    min-height: 250px;
    text-align: center;
}

.past-event-image-placeholder i {
    font-size: 4rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.past-event-image-placeholder p {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.past-event-details p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.event-highlights {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--text-dark);
}

.event-highlights h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.event-highlights ul {
    list-style-position: inside;
    list-style-type: disc;
}

.event-highlights li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
    padding-left: 0.5rem;
}

/* レスポンシブ対応 */
@media (max-width: 992px) {
    .schedule-grid {
        grid-template-columns: 1fr;
    }
    
    .past-event-content {
        grid-template-columns: 1fr;
    }
    
    .guest-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .info-row {
        grid-template-columns: 1fr;
    }
    
    .festa-details {
        padding: 1.5rem;
    }
    
    .past-event-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}
