/**
 * コンサートホール予約システム用スタイルシート
 */

/* 基本スタイル */
body {
    background-color: #f8f9fa;
}

.container {
    max-width: 1000px;
}

/* ヒーロー画像スタイル */
.hero-image {
    height: 350px;
    object-fit: cover;
}

/* フォトギャラリースタイル */
.gallery-img-container {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* アクセスマップスタイル */
.access-map {
    max-width: 800px;
    width: 100%;
}

/* 予約グリッド */
.reservation-grid {
    border-collapse: collapse;
    width: 100%;
}

.reservation-grid th, .reservation-grid td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
}

.reservation-grid th {
    background-color: #f2f2f2;
}

.time-slot {
    text-align: left;
    font-weight: bold;
}

.available {
    color: green;
    font-size: 24px;
    cursor: pointer;
}

.reserved {
    color: red;
    font-size: 24px;
}

.hidden {
    display: none;
}

.selected-slot {
    background-color: #d1e7ff !important;
}

/* ステップインジケーター */
.step-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}

.step {
    text-align: center;
    flex: 1;
    position: relative;
}

.step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #ccc;
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
}

.step.active .step-number {
    background-color: #007bff;
}

.step.completed .step-number {
    background-color: #28a745;
}

.step-line {
    position: absolute;
    top: 15px;
    height: 2px;
    background-color: #ccc;
    width: 100%;
    left: -50%;
    z-index: -1;
}

.step:first-child .step-line {
    display: none;
}

.step.completed .step-line {
    background-color: #28a745;
}

/* 予約完了アイコン */
.bi-check-circle {
    font-size: 5rem;
    color: #28a745;
}

/* カードスタイル */
.card {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    margin-bottom: 20px;
}

.card-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
    font-weight: bold;
}

/* フォームスタイル */
.form-label {
    font-weight: 500;
}

.text-danger {
    color: #dc3545;
}

/* レスポンシブ調整 */
@media (max-width: 768px) {
    .step-indicator {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .step {
        margin-bottom: 10px;
        display: flex;
        align-items: center;
    }
    
    .step-line {
        display: none;
    }
    
    .step-number {
        margin-right: 10px;
        margin-bottom: 0;
    }
    
    .reservation-grid {
        font-size: 0.8rem;
    }
    
    .available, .reserved {
        font-size: 18px;
    }
    
    /* モバイル向けギャラリー調整 */
    .gallery-img-container {
        height: 150px;
    }
}

/* プリント用スタイル */
@media print {
    .no-print {
        display: none;
    }
    
    .container {
        width: 100%;
        max-width: 100%;
    }
    
    .card {
        break-inside: avoid;
    }
}