/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #000;
    color: #fff;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
}

/* Fixed background image */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('imgs/band_image_03.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: -1;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 {
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 3px;
}

h1 {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #00a8ff;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #00a8ff;
}



/* ===== HEADER ===== */
header {
    padding: 20px;
    background: linear-gradient(180deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 100%);
    border-bottom: 2px solid #00a8ff;
    position: relative;
}

header > a {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
}

header > a .logo-menu {
    height: 100%;
    width: auto;
}

.header-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 20px;
}

.logo {
    width: 250px;
    height: auto;
    filter: drop-shadow(0 0 10px #00a8ff);
    transition: transform 0.3s ease;
}

.logo-menu {
    width: 80px;
}

.logo:hover {
    transform: scale(1.1);
}

.band-image {
    width: 468px;
    max-width: 47%;
    height: auto;
    -webkit-mask-image: radial-gradient(ellipse farthest-corner at center, black 45%, transparent 90%);
    mask-image: radial-gradient(ellipse farthest-corner at center, black 45%, transparent 90%);
}

nav {
    display: flex;
    justify-content: center;
    gap: 50px;
}

nav a {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.5rem;
    color: #fff;
    text-decoration: none;
    letter-spacing: 3px;
    padding: 10px 20px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
    line-height: 1.1;
}

.nav-jp {
    font-weight: bold;
    letter-spacing: 0;
    transform: scaleX(0.85);
    display: inline-block;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #00a8ff;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

nav a:hover,
nav a.active {
    color: #00a8ff;
    text-shadow: 0 0 10px #00a8ff;
}

/* ===== MAIN CONTENT ===== */
main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* ===== UPCOMING EVENT SECTION ===== */
.upcoming-event,
.site_banner {
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid #333;
    border-radius: 10px;
    padding: 40px;
    margin-bottom: 40px;
}

.site_banner {
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.site_banner h1 {
    width: 100%;
}

.site_banner .logo {
    width: 375px;
}

.event-showcase {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.poster-container {
    display: flex;
    justify-content: center;
}

.event-poster {
    max-width: 100%;
    max-height: 750px;
    box-shadow: 0 0 30px rgba(0, 168, 255, 0.3);
    transition: transform 0.3s ease;
}

.event-poster:hover {
    transform: scale(1.02);
}

.event-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-date,
.event-venue {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #ccc;
}

.event-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #ddd;
}

.ticket-info {
    background: rgba(0, 168, 255, 0.1);
    border-left: 4px solid #00a8ff;
    padding: 20px;
    margin-top: 20px;
}

.ticket-info p {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Location and Registration */
.location-register {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.map-container,
.qr-container {
    background: rgba(20, 20, 20, 0.8);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #333;
}

.map-container iframe {
    border-radius: 5px;
}

.qr-container {
    text-align: center;
}

.qr-code {
    width: 120px;
    height: 120px;
    margin: 0px auto;
    background: #fff;
    padding: 5px;
    border-radius: 10px;
}

.btn-register {
    display: inline-block;
    margin-top: 20px;
    margin-bottom: 25px;
    padding: 5px 30px;
    font-family: 'Bebas Neue', cursive;
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 0;
    transform: scaleX(0.85);
    color: #fff;
    background: #00a8ff;
    border: none;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 168, 255, 0.3);
}

.btn-register:hover {
    background: #0088cc;
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 168, 255, 0.6);
}

/* ===== BAND MEMBERS TABLE ===== */
.band-members-table {
    width: 400px;
    border-collapse: collapse;
    margin: 10px 0 20px 0;
    color: #ddd;
}

.band-members-table td {
    text-align: left;
    padding: 5px 15px 5px 0;
    font-size: 1.1rem;
}

.band-members-table tr td:first-child {
    width: 80px;
    color: #00a8ff;
}

.band-members-table tr td:nth-child(2) {
    width: 120px;
}

.band-members-table tr:last-child td {
    text-align: right;
}

/* ===== MEMBERS PAGE ===== */
.page-title {
    text-align: center;
    margin-bottom: 50px;
}

.members-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.member-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid #333;
    border-radius: 10px;
    padding: 30px;
    transition: all 0.3s ease;
}

.member-card:hover {
    border-color: #00a8ff;
    box-shadow: 0 0 30px rgba(0, 168, 255, 0.2);
}

.member-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 5px;
}

.member-info h2 {
    color: #00a8ff;
    margin-bottom: 10px;
}

.member-role {
    font-size: 1.3rem;
    color: #888;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.member-bio {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ccc;
}

/* ===== EVENTS PAGE ===== */
.events-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.event-card {
    display: grid;
    grid-template-columns: 550px 1fr;
    gap: 30px;
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid #333;
    border-radius: 10px;
    padding: 25px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.event-card:hover {
    border-color: #00a8ff;
    transform: translateX(10px);
    box-shadow: 0 0 30px rgba(0, 168, 255, 0.2);
}

.event-card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 5px;
}

.event-card-info h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.event-card-date {
    font-size: 1.2rem;
    color: #00a8ff;
    margin-bottom: 15px;
}

.event-card-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #ccc;
}

.view-more {
    display: inline-block;
    margin-top: 15px;
    color: #00a8ff;
    font-family: 'Bebas Neue', cursive;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

/* ===== INDIVIDUAL EVENT PAGE ===== */
.event-page {
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid #333;
    border-radius: 10px;
    padding: 40px;
}

.event-header {
    text-align: center;
    margin-bottom: 40px;
}

.event-header h1 {
    font-size: 3rem;
}

.event-meta {
    font-size: 1.3rem;
    color: #888;
    margin-top: 10px;
}

.event-image {
    text-align: center;
    margin-bottom: 40px;
}

.event-image img {
    width: 600px;
    height: auto;
}

.event-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.event-gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.event-gallery img:hover {
    transform: scale(1.02);
}

.event-content {
    max-width: 900px;
    margin: 0 auto;
}

.event-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 20px;
    color: #ddd;
}

.setlist {
    background: rgba(0, 168, 255, 0.1);
    border-left: 4px solid #00a8ff;
    padding: 25px;
    margin: 30px 0;
}

.setlist h3 {
    margin-bottom: 15px;
}

.setlist ol {
    margin-left: 25px;
}

.setlist li {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #ccc;
}

.back-link {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 30px;
    font-family: 'Bebas Neue', cursive;
    font-size: 1.3rem;
    letter-spacing: 2px;
    color: #fff;
    background: transparent;
    border: 2px solid #00a8ff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.back-link:hover {
    background: #00a8ff;
    box-shadow: 0 0 20px rgba(0, 168, 255, 0.4);
}

/* ===== FOOTER ===== */
footer {
    background: #000;
    border-top: 2px solid #00a8ff;
    padding: 30px;
    text-align: center;
    margin-top: auto;
}

footer p {
    color: #888;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.social-links a {
    color: #fff;
    text-decoration: none;
    font-family: 'Bebas Neue', cursive;
    font-size: 1.2rem;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #00a8ff;
    text-shadow: 0 0 10px #00a8ff;
}

/* ===== RESPONSIVE DESIGN ===== */
/* ===== TABLET BREAKPOINT ===== */
@media (max-width: 1024px) {
    .event-showcase {
        grid-template-columns: 1fr;
    }
    
    .location-register {
        grid-template-columns: 1fr;
    }
    
    .member-card {
        grid-template-columns: 250px 1fr;
    }
    
    .event-card {
        grid-template-columns: 280px 1fr;
    }
    
    .site_banner .logo {
        width: 280px;
    }
}

/* ===== SMALL TABLET / LARGE PHONE ===== */
@media (max-width: 900px) {
    h1 {
        font-size: 2.5rem;
    }
    
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .logo-left,
    .logo-right {
        display: none;
    }
    
    .band-image {
        max-width: 100%;
    }
    
    nav {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }
    
    nav a {
        font-size: 1.2rem;
        padding: 8px 15px;
    }
    
    .member-card,
    .event-card {
        grid-template-columns: 1fr;
    }
    
    .member-image {
        height: auto;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .event-card-image {
        height: 220px;
    }
    
    .upcoming-event,
    .site_banner,
    .event-page {
        padding: 20px;
    }
    
    .site_banner .logo {
        width: 200px;
    }
    
    .event-image img {
        width: 100%;
        max-width: 500px;
    }
    
    .event-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .event-gallery img {
        height: 180px;
    }
    
    .band-members-table {
        width: 100%;
    }
}

/* ===== MOBILE LANDSCAPE ===== */
@media (max-width: 768px) {
    header {
        padding: 10px 15px;
    }
    
    header > a {
        position: relative;
        left: auto;
        top: auto;
        height: auto;
        display: block;
        text-align: center;
        margin-bottom: 10px;
    }
    
    header > a .logo-menu {
        height: auto;
        width: 60px;
    }
    
    nav {
        gap: 10px;
    }
    
    nav a {
        font-size: 1rem;
        padding: 6px 12px;
        letter-spacing: 1px;
    }
    
    .nav-jp {
        font-size: 0.7rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    h3 {
        font-size: 1.4rem;
    }
    
    main {
        padding: 20px 15px;
    }
    
    .site_banner .logo {
        width: 150px;
    }
    
    .event-poster {
        max-height: 500px;
    }
    
    .event-header h1 {
        font-size: 2rem;
    }
    
    .event-meta {
        font-size: 1.1rem;
    }
}

/* ===== MOBILE PORTRAIT ===== */
@media (max-width: 480px) {
    header {
        padding: 10px;
    }
    
    header > a .logo-menu {
        width: 50px;
    }
    
    nav {
        gap: 5px;
    }
    
    nav a {
        font-size: 0.85rem;
        padding: 5px 8px;
        letter-spacing: 0.5px;
    }
    
    .nav-jp {
        font-size: 0.6rem;
    }
    
    h1 {
        font-size: 1.6rem;
        letter-spacing: 1px;
    }
    
    h2 {
        font-size: 1.4rem;
    }
    
    h3 {
        font-size: 1.2rem;
    }
    
    .logo {
        width: 80px;
    }
    
    .site_banner .logo {
        width: 120px;
    }
    
    .upcoming-event,
    .site_banner,
    .event-page {
        padding: 15px;
        border-radius: 5px;
    }
    
    .event-poster {
        max-height: 400px;
    }
    
    .member-image {
        height: auto;
        max-width: 200px;
    }
    
    .member-info h2 {
        font-size: 1.4rem;
    }
    
    .member-role {
        font-size: 1rem;
    }
    
    .member-bio {
        font-size: 1rem;
    }
    
    .member-card {
        padding: 15px;
    }
    
    .event-card {
        padding: 15px;
    }
    
    .event-card-image {
        height: 180px;
    }
    
    .event-card-info h2 {
        font-size: 1.4rem;
    }
    
    .event-card-date {
        font-size: 1rem;
    }
    
    .event-gallery {
        grid-template-columns: 1fr;
    }
    
    .event-gallery img {
        height: 200px;
    }
    
    .event-image img {
        width: 100%;
    }
    
    .event-header h1 {
        font-size: 1.6rem;
    }
    
    .event-meta {
        font-size: 1rem;
    }
    
    .band-members-table td {
        font-size: 0.95rem;
        padding: 4px 8px 4px 0;
    }
    
    .band-members-table tr td:first-child {
        width: 60px;
    }
    
    .band-members-table tr td:nth-child(2) {
        width: 90px;
    }
    
    .map-container iframe {
        height: 250px;
    }
    
    .qr-container img {
        max-width: 150px;
    }
    
    .btn-register {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    footer {
        padding: 20px 15px;
    }
    
    footer p {
        font-size: 0.9rem;
    }
}

/* ===== LIGHTBOX ===== */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    cursor: default;
    animation: zoomIn 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    color: #fff;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 1001;
}

.lightbox-close:hover {
    color: #00a8ff;
}

.event-poster {
    cursor: pointer;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}
