/* ライブスケジュール一覧ページ専用スタイル */

/* ハンバーガーメニューボタン（右上配置） */
.hamburger-menu {
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid white;
    border-radius: 8px;
    cursor: pointer;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    transition: all 0.3s ease;
}

.hamburger-menu:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.05);
}

.hamburger-menu i {
    color: white;
    font-size: 20px;
    transition: all 0.3s ease;
}

.hamburger-menu.active {
    background: rgba(255, 102, 0, 0.9);
    border-color: #ff6600;
}

.hamburger-menu.active i {
    color: white;
    transform: rotate(90deg);
}

/* ハンバーガーメニューナビゲーション */
.hamburger-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    transition: left 0.3s ease;
    padding-top: 80px;
    backdrop-filter: blur(10px);
}

.hamburger-nav.active {
    left: 0;
}

.hamburger-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hamburger-menu-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hamburger-menu-list li a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 20px 30px;
    font-size: 18px;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
}

.hamburger-menu-list li a:hover {
    background-color: rgba(255, 204, 0, 0.1);
    color: #ffcc00;
}

.hamburger-menu-list .search-item {
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.hamburger-menu-list .search-item i {
    color: white;
    font-size: 18px;
}

.hamburger-menu-list .search-item input {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    padding: 10px;
    color: white;
    font-size: 16px;
}

.hamburger-menu-list .search-item input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.live-schedule-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0 20px 0;
    border-bottom: 2px solid #ffcc00;
    margin-bottom: 30px;
}

.section-header .section-title {
    color: #ffcc00;
    font-size: 2.2em;
    font-weight: bold;
    margin: 0;
}

.back-link {
    color: #ffcc00;
    text-decoration: none;
    font-size: 1.1em;
    padding: 8px 16px;
    border: 2px solid #ffcc00;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.back-link:hover {
    background-color: #ffcc00;
    color: #1a1a1a;
    transform: translateY(-2px);
}

/* 年月選択フォーム */
.date-selector {
    background: rgba(255, 204, 0, 0.1);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.date-form {
    display: flex;
    gap: 20px;
    align-items: center;
}

.form-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label {
    color: #ffcc00;
    font-weight: bold;
    font-size: 1.1em;
}

.form-group select {
    background: #2d2d2d;
    color: #ffffff;
    border: 2px solid #ffcc00;
    border-radius: 5px;
    padding: 8px 12px;
    font-size: 1em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-group select:hover,
.form-group select:focus {
    background: #3d3d3d;
    border-color: #ffffff;
    outline: none;
}

.selected-period {
    flex: 1;
    text-align: right;
}

.period-text {
    color: #ffffff;
    font-size: 1.3em;
    font-weight: bold;
    background: linear-gradient(45deg, #ffcc00, #ff9900);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ライブ一覧スタイル */
.live-list {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
}

.live-header {
    display: grid;
    grid-template-columns: 80px 2.5fr 3fr 2.5fr 100px 1fr;
    gap: 15px;
    padding: 15px 20px;
    background: linear-gradient(135deg, #ffcc00, #ff9900);
    color: #1a1a1a;
    font-weight: bold;
    font-size: 1em;
    text-align: center;
}

.live-item {
    display: grid;
    grid-template-columns: 80px 2.5fr 3fr 2.5fr 100px 1fr;
    gap: 15px;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 204, 0, 0.2);
    color: #ffffff;
    transition: all 0.3s ease;
    align-items: center;
}

.live-item:hover {
    background: rgba(255, 204, 0, 0.1);
    transform: translateX(5px);
}

.live-item:last-child {
    border-bottom: none;
}

.live-date {
    font-weight: bold;
    color: #ffffff;
    text-align: center;
    font-size: 0.95em;
}

.live-title {
    font-weight: bold;
    font-size: 1em;
}

.live-venue {
    font-size: 0.95em;
}

.live-bands {
    font-size: 0.95em;
    line-height: 1.4;
}

.live-time {
    text-align: center;
    font-weight: bold;
    color: #ffffff;
    font-size: 0.95em;
}

.live-price {
    text-align: center;
    font-weight: bold;
    font-size: 0.9em;
}

/* リンクスタイル */
.band-link {
    color: #ffcc00 !important;
    text-decoration: none !important;
    transition: color 0.3s ease;
}

.band-link:hover {
    color: #ffffff !important;
    text-decoration: underline !important;
}

.venue-link {
    color: #ffcc00 !important;
    text-decoration: none !important;
    transition: color 0.3s ease;
}

.venue-link:hover {
    color: #ffffff !important;
    text-decoration: underline !important;
}

/* ライブがない場合のメッセージ */
.no-lives-message {
    text-align: center;
    padding: 60px 20px;
    color: #cccccc;
}

.no-lives-message p {
    font-size: 1.2em;
    margin: 0;
}

/* ページネーション */
.pagination-wrapper {
    margin: 30px 0;
    display: flex;
    justify-content: center;
}

.pagination-wrapper .pagination {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.3);
    padding: 15px 20px;
    border-radius: 10px;
    border: 2px solid #ffcc00;
}

.pagination-wrapper .pagination a,
.pagination-wrapper .pagination span {
    display: inline-block;
    padding: 8px 12px;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: bold;
    min-width: 40px;
    text-align: center;
}

.pagination-wrapper .pagination a:hover {
    background-color: #ffcc00;
    color: #1a1a1a;
    transform: translateY(-2px);
}

.pagination-wrapper .pagination .active span {
    background-color: #ffcc00;
    color: #1a1a1a;
}

.pagination-wrapper .pagination .disabled span {
    color: #666666;
    cursor: not-allowed;
}

.pagination-wrapper .pagination .page-info {
    color: #ffcc00;
    font-size: 0.9em;
    margin: 0 10px;
}

/* レスポンシブデザイン */
@media (max-width: 1024px) {
    .live-header,
    .live-item {
        grid-template-columns: 70px 1.5fr 1.5fr 2.5fr 90px 1.8fr;
        gap: 10px;
        padding: 12px 15px;
        font-size: 0.9em;
    }
    
    .section-header .section-title {
        font-size: 1.8em;
    }
    
    .date-selector {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    
    .selected-period {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .live-schedule-section {
        margin: 20px auto;
        padding: 0 15px;
    }
    
    .section-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .live-header,
    .live-item {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 15px;
    }
    
    .live-header > div,
    .live-item > div {
        padding: 5px 0;
        border-bottom: 1px solid rgba(255, 204, 0, 0.1);
    }
    
    .live-header > div:last-child,
    .live-item > div:last-child {
        border-bottom: none;
    }
    
    .live-header > div::before,
    .live-item > div::before {
        content: attr(data-label);
        font-weight: bold;
        color: #ffcc00;
        display: inline-block;
        width: 80px;
        margin-right: 10px;
    }
    
    .date-form {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .form-group {
        justify-content: center;
    }
    
    .form-group select {
        min-width: 120px;
    }
}

@media (max-width: 480px) {
    .live-schedule-section {
        margin: 10px;
        padding: 0 10px;
    }
    
    .section-header .section-title {
        font-size: 1.5em;
    }
    
    .back-link {
        font-size: 1em;
        padding: 6px 12px;
    }
    
    .date-selector {
        padding: 15px;
    }
    
    .period-text {
        font-size: 1.1em;
    }
}