/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette - Black, Gold, Silver, White */
    --primary-color: #ffd700;        /* Gold - Primary accent */
    --secondary-color: #c0c0c0;      /* Silver - Secondary accent */
    --accent-color: #e6e6e6;         /* Light Silver - Subtle accent */
    --dark-bg: #000000;              /* Pure Black - Main background */
    --darker-bg: #0a0a0a;            /* Darker Black - Deep background */
    --light-bg: #1a1a1a;             /* Dark Gray - Elevated background */
    --text-light: #ffffff;           /* White - Primary text */
    --text-gray: #c0c0c0;            /* Silver - Secondary text */
    --text-dark: #808080;            /* Dark Silver - Muted text */
    
    /* Typography */
    --font-main: 'Rubik', sans-serif;
    --font-display: 'Metal Mania', cursive;
    --font-special: 'Creepster', cursive;
    --font-logo: 'Cinzel', serif;
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 100px 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 2px solid var(--primary-color);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 0 2px 20px rgba(255, 215, 0, 0.3);
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo h2 {
    font-family: var(--font-logo);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 2px;
}

.nav-logo-img {
    height: 40px;
    width: auto;
    filter: brightness(1.1);
    transition: transform 0.3s ease;
    background: transparent !important;
    mix-blend-mode: normal;
}

.nav-logo-img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link:hover {
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://page.gensparksite.com/v1/base64_upload/5db079f9db96043159f8d6c03b365e64') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin-bottom: 0;
}



.hero-content {
    text-align: center;
    z-index: 12;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}



.hero-title {
    font-family: var(--font-logo);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    color: var(--text-light);
    text-shadow: 
        0 0 20px var(--primary-color),
        0 0 40px var(--primary-color),
        4px 4px 8px rgba(0, 0, 0, 0.8);
    margin-bottom: 20px;
    animation: titlePulse 3s ease-in-out infinite;
}

.hero-logo {
    width: clamp(300px, 60vw, 800px);
    height: auto;
    margin-bottom: 20px;
    filter: brightness(1.1) drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.8));
    background: transparent !important;
    mix-blend-mode: normal;
    position: relative;
    z-index: 15;
}



@keyframes titlePulse {
    0% { 
        color: #ff0000;
        text-shadow: 0 0 20px #ff0000, 0 0 40px #ff0000, 4px 4px 8px rgba(0, 0, 0, 0.8);
    }
    16.66% { 
        color: #ff8000;
        text-shadow: 0 0 20px #ff8000, 0 0 40px #ff8000, 4px 4px 8px rgba(0, 0, 0, 0.8);
    }
    33.33% { 
        color: #ffff00;
        text-shadow: 0 0 20px #ffff00, 0 0 40px #ffff00, 4px 4px 8px rgba(0, 0, 0, 0.8);
    }
    50% { 
        color: #00ff00;
        text-shadow: 0 0 20px #00ff00, 0 0 40px #00ff00, 4px 4px 8px rgba(0, 0, 0, 0.8);
    }
    66.66% { 
        color: #0080ff;
        text-shadow: 0 0 20px #0080ff, 0 0 40px #0080ff, 4px 4px 8px rgba(0, 0, 0, 0.8);
    }
    83.33% { 
        color: #8000ff;
        text-shadow: 0 0 20px #8000ff, 0 0 40px #8000ff, 4px 4px 8px rgba(0, 0, 0, 0.8);
    }
    100% { 
        color: #ff0000;
        text-shadow: 0 0 30px #ff0000, 0 0 60px #ff0000, 4px 4px 8px rgba(0, 0, 0, 0.8);
    }
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.hero-location {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--text-gray);
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary-color);
    font-size: 2rem;
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--primary-color);
    cursor: pointer;
}

.btn-secondary:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

/* 予約ボタンの特別スタイル */
.reserve-button {
    display: inline-block;
    cursor: pointer;
    line-height: 1.6;
}

.reserve-button:hover {
    transform: scale(1.05) translateY(-3px);
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* Section Styles */
section {
    padding: var(--section-padding);
    position: relative;
}

.section-title {
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--accent-color);
    border-radius: 1px;
}

/* About Section */
.about {
    background: var(--light-bg);
    min-height: auto;
    padding: var(--section-padding);
    position: relative;
    z-index: 2;
    margin-top: 0;
    border-top: 1px solid transparent;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text .lead {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
    z-index: 10;
    position: relative;
}

.about-text p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-image {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.band-photo {
    max-width: 450px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.band-photo:hover {
    transform: scale(1.02);
}

.cd-description {
    max-width: 450px;
    width: 100%;
}

/* Mobile responsiveness for band photo and logos */
@media (max-width: 768px) {
    .band-photo {
        max-width: 100%;
        margin: 20px 0;
    }
    
    .nav-logo-img {
        height: 30px;
    }
    
    .hero-logo {
        width: clamp(250px, 80vw, 400px);
    }
}



/* Mission Statement */
.mission-statement {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(192, 192, 192, 0.1));
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}



.mission-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--primary-color);
    font-weight: 600;
    font-family: var(--font-main);
}

/* Impressions Section */
.impressions-section {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 2px solid rgba(255, 215, 0, 0.3);
}

.impressions-section p {
    font-size: 0.9rem;
}

.impressions-title {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 40px;
    text-align: left;
    font-family: var(--font-main);
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: 1px;
}

.impressions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.impression-card {
    background: var(--darker-bg);
    border-radius: 15px;
    padding: 30px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.impression-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.3;
    font-family: serif;
    line-height: 1;
}

.impression-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    border-left-color: var(--accent-color);
}

.impression-text {
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.impression-text p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.7;
    font-style: italic;
    margin: 0;
}

.impression-text .jp-text {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    font-style: italic;
    margin: 0 0 15px 0;
    font-weight: 500;
}

.impression-text .en-text {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
    font-style: italic;
    margin: 0;
    opacity: 0.8;
    font-weight: 400;
}

.impression-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    padding-top: 15px;
}

.author-name {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1rem;
}

.author-date {
    font-size: 0.9rem;
    color: var(--text-dark);
}

/* Members Section */
.members {
    background: var(--darker-bg);
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-items: center;
}

.member-card {
    background: var(--light-bg);
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    max-width: 320px;
    width: 100%;
}

.member-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.member-card:hover::before {
    transform: scaleX(1);
}

.member-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.member-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-image i {
    font-size: 2rem;
    color: white;
}

/* Member Photo Styles */
.member-photo {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.member-photo:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
    transform: scale(1.05);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.member-photo:hover img {
    transform: scale(1.1);
}

/* Member Names */
.member-name-en {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 5px;
    font-family: var(--font-logo);
}

.member-name-jp {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 15px;
}

.member-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.member-name {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 10px;
}

.member-description {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Music Section */
.music {
    background: var(--light-bg);
}

/* YouTube Channel Section */
.youtube-channel {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(192, 192, 192, 0.1));
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

/* YouTube Channel h3 style removed - using .hero-subtitle */

.youtube-channel p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 25px;
}

/* Video Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.video-card {
    background: var(--darker-bg);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.video-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-info {
    padding: 20px;
}

.video-info h4 {
    font-family: var(--font-logo);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.video-info p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
}

.track-list {
    font-size: 0.75rem !important;
    color: var(--text-gray) !important;
    opacity: 0.8;
    line-height: 1.3;
    margin-top: 8px !important;
    font-style: italic;
    text-transform: lowercase;
}

/* Music Philosophy */
.music-philosophy {
    text-align: center;
    padding: 40px;
    background: var(--darker-bg);
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
}

.music-philosophy h3 {
    font-family: var(--font-logo);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.music-philosophy p {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Live Section */
.live {
    background: var(--darker-bg);
}

.live-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

/* Upcoming Shows and Live Info h3 styles removed - using .hero-subtitle */

.show-card {
    background: var(--light-bg);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.show-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.show-date {
    text-align: center;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    padding: 15px;
    min-width: 70px;
}

.month {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.show-info {
    flex: 1;
}

.show-info h4 {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.show-info p {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.show-info i {
    color: var(--primary-color);
    margin-right: 8px;
    width: 15px;
}

.live-info p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Contact Section */
.reserve {
    background: var(--light-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

/* Contact info and form h3 styles removed - using .hero-subtitle */

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 30px;
    text-align: center;
}

.contact-item h4 {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 5px;
}

.contact-item p {
    color: var(--text-gray);
    font-size: 1rem;
}

.social-links {
    margin-top: 40px;
}

.social-links h4 {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

/* Contact Form */
.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: var(--darker-bg);
    border: 2px solid transparent;
    border-radius: 5px;
    color: var(--text-light);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-dark);
}

/* Footer */
.footer {
    background: var(--darker-bg);
    padding: 60px 0 20px;
    border-top: 2px solid var(--primary-color);
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.footer-logo {
    text-align: center;
}

.footer-logo-img {
    width: 400px;
    height: auto;
    margin-bottom: 15px;
}

.footer-logo p {
    color: var(--text-gray);
    margin-bottom: 8px;
    font-size: 1rem;
}

/* Responsive adjustments for footer logo */
@media (max-width: 768px) {
    .footer-logo-img {
        width: 300px;
    }
    
    .footer-logo p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .footer-logo-img {
        width: 250px;
    }
}

.footer-links ul {
    list-style: none;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    color: var(--text-dark);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .mission-statement {
        padding: 25px;
        margin-bottom: 40px;
    }
    
    .impressions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .impression-card {
        padding: 20px;
    }
    
    .youtube-channel {
        padding: 25px;
        margin-bottom: 40px;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .music-philosophy {
        padding: 25px;
        text-align: left;
    }
    
    .live-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .footer-links ul {
        justify-content: center;
    }
    
    .show-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .members-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .member-card {
        padding: 25px 20px;
        max-width: 100%;
    }
    
    .member-photo {
        width: 120px;
        height: 120px;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .youtube-channel {
        padding: 20px;
    }
    
    .video-info {
        padding: 15px;
    }
    
    .music-philosophy {
        padding: 20px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
}

/* ===== LIVE SECTION STYLES ===== */
.live {
    background: var(--darker-bg);
    padding: 100px 0;
}

.live-schedule {
    margin-bottom: 80px;
}

/* Live schedule h3 style removed - using .hero-subtitle */

.live-event {
    background: var(--light-bg);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 30px;
    border-left: 5px solid var(--primary-color);
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.live-event:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.live-date {
    text-align: center;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    padding: 20px;
    min-width: 100px;
    color: var(--bg-dark);
}

.live-date .month {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.live-date .day {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
    margin: 5px 0;
}

.live-date .year {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
}

.live-date .weekday {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 3px;
}

.live-info h4 {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 10px;
    font-weight: 600;
}

.event-title-en {
    font-size: 0.7rem;
    color: var(--text-gray);
    font-weight: 400;
    display: block;
    margin-top: 5px;
    font-style: italic;
}

.live-info .venue {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 5px;
}

.venue-en {
    font-size: 0.75rem;
    color: var(--text-gray);
    font-weight: 400;
    display: block;
    margin-top: 3px;
    font-style: italic;
    opacity: 0.8;
}

.details-en {
    font-size: 0.75rem;
    color: var(--text-gray);
    font-weight: 400;
    display: block;
    margin-top: 3px;
    font-style: italic;
    opacity: 0.8;
}

.live-info .location {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.live-info .details {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.past-lives {
    margin-top: 60px;
}

/* Past lives h3 style removed - using .hero-subtitle */

.past-event {
    background: rgba(255, 215, 0, 0.05);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    border-left: 3px solid var(--primary-color);
}

.past-event h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.past-event p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* ===== CONTACT SECTION STYLES ===== */
.reserve {
    background: var(--light-bg);
    padding: 100px 0;
}

.contact-info {
    margin-bottom: 80px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.contact-card {
    background: var(--darker-bg);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    border: 2px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--bg-dark);
}

.contact-card h3 {
    color: var(--text-light);
    font-size: 1.3rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.contact-details p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.contact-details i {
    color: var(--primary-color);
    width: 20px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-links a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.social-links a:hover {
    color: var(--secondary-color);
}

/* Social Media Section */
.social-media-section {
    margin-top: 80px;
    padding-top: 50px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.social-card {
    background: var(--darker-bg);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    border: 2px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: inherit;
    display: block;
}

.social-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    color: inherit;
}

.social-card .contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--dark-bg);
}

.social-card h3 {
    color: var(--text-light);
    font-size: 1.3rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.social-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.social-card .contact-details p {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.9rem;
}

/* History Section */
.history-section {
    margin-top: 80px;
}

.history-container {
    margin-top: 40px;
    margin-bottom: 40px;
}

.history-item {
    background: var(--darker-bg);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.history-item:hover {
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.history-date {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--dark-bg);
    padding: 15px 20px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    text-align: center;
    min-width: 120px;
    white-space: nowrap;
}

.history-content {
    flex: 1;
}

.history-title {
    color: var(--text-light);
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-weight: 600;
    line-height: 1.3;
}

.history-subtitle {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-style: italic;
}

.history-description {
    color: var(--text-light);
    font-size: 0.9rem;
}

.history-jp {
    margin-bottom: 8px;
    font-size: 1rem;
    line-height: 1.6;
}

.history-en {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.5;
    font-style: italic;
}

.history-error {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-gray);
}

.history-error p {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

/* Load More Button for History */
.load-more-section {
    text-align: center;
    margin-top: 40px;
}

.load-more-btn {
    min-width: 200px;
}

/* Responsive Design for History */
@media (max-width: 768px) {
    .history-item {
        flex-direction: column;
        gap: 20px;
        padding: 25px 20px;
    }
    
    .history-date {
        min-width: auto;
        align-self: flex-start;
    }
    
    .history-title {
        font-size: 1.2rem;
    }
}

/* English Text Styles */
.section-title-en {
    display: block;
    font-size: 0.6em;
    color: var(--text-gray);
    font-weight: 400;
    text-transform: none;
    letter-spacing: 1px;
    margin-top: 5px;
}

.subtitle-jp {
    display: block;
    font-size: 0.8em;
    color: var(--text-gray);
    font-weight: 400;
    text-transform: none;
    letter-spacing: 1px;
    margin-top: 5px;
}

.text-en {
    display: block;
    font-size: 0.9em;
    color: var(--text-gray);
    font-style: italic;
    line-height: 1.4;
    margin-top: 8px;
}

/* Responsive adjustments for bilingual text */
@media (max-width: 768px) {
    .section-title-en {
        font-size: 0.7em;
    }
    
    .subtitle-jp {
        font-size: 0.85em;
    }
    
    .text-en {
        font-size: 0.85em;
        margin-top: 6px;
    }
}

/* Contact Form */
.contact-form-section {
    background: var(--darker-bg);
    border-radius: 15px;
    padding: 50px 40px;
    border: 2px solid rgba(255, 215, 0, 0.1);
}

/* Reserve Form Section */
.reserve-form-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 予約ボタンコンテナ */
.reserve-button-container {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(40, 40, 40, 0.95));
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 215, 0, 0.3);
    margin-top: 30px;
}

.reserve-button-container p {
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

.iframe-container {
    background: var(--light-bg);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 215, 0, 0.3);
    margin-top: 30px;
    overflow: hidden;
    max-width: 100%;
    width: 100%;
}

.iframe-container iframe {
    width: 100%;
    min-height: 1200px;
    height: 1200px;
    border: none;
    border-radius: 10px;
    background: white;
    overflow: hidden;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .iframe-container {
        padding: 15px;
        margin-top: 20px;
    }
    
    .iframe-container iframe {
        min-height: 1100px;
        height: 1100px;
    }
}

@media (max-width: 480px) {
    .reserve-button-container {
        padding: 40px 20px;
    }
    
    .reserve-button-container p {
        font-size: 0.95rem !important;
        margin-bottom: 25px !important;
    }
    
    .reserve-button {
        font-size: 1.1rem !important;
        padding: 18px 40px !important;
    }
    
    .iframe-container {
        padding: 2px;
        display: flex;
        justify-content: center;
        align-items: flex-start;
    }
    
    .iframe-container iframe {
        min-height: 1000px;
        height: 1000px;
        width: 140%;
        transform: scale(0.9);
        transform-origin: center top;
        margin-bottom: -100px;
    }
}

@media (max-width: 360px) {
    .reserve-button-container {
        padding: 30px 15px;
    }
    
    .reserve-button-container p {
        font-size: 0.85rem !important;
    }
    
    .reserve-button {
        font-size: 1rem !important;
        padding: 15px 30px !important;
    }
    
    .iframe-container {
        padding: 1px;
        display: flex;
        justify-content: center;
        align-items: flex-start;
    }
    
    .iframe-container iframe {
        min-height: 1050px;
        height: 1050px;
        width: 150%;
        transform: scale(0.88);
        transform-origin: center top;
        margin-bottom: -125px;
    }
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: var(--light-bg);
    border: 2px solid rgba(255, 215, 0, 0.1);
    border-radius: 8px;
    padding: 12px 15px;
    color: var(--text-light);
    font-size: 1rem;
    font-family: var(--font-main);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn {
    width: 100%;
    margin-top: 20px;
    padding: 15px;
    font-size: 1.1rem;
}

/* Mobile Responsiveness for Live and Contact */
@media (max-width: 768px) {
    .live-event {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 25px 20px;
    }
    
    .live-date {
        min-width: 120px;
    }
    
    .contact-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .contact-form-section {
        padding: 30px 25px;
    }
    
    .contact-card {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .live-schedule h3,
    .past-lives h3,
    .contact-form-section h3 {
        font-size: 1.5rem;
    }
    
    .live-event {
        padding: 20px 15px;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Video Overlay Styles */
.video-overlay-container {
    position: relative;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    border-radius: 15px;
    overflow: hidden;
}

.video-overlay:hover {
    transform: scale(1.02);
}

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.overlay-image-container {
    position: relative;
    width: 100% !important;
    height: 100% !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.overlay-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.overlay-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: rgba(218, 165, 32, 0.9);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
}

.overlay-play-button:hover {
    transform: translate(-50%, -50%) scale(1.15);
    background: rgba(244, 208, 63, 0.95);
    box-shadow: 0 12px 48px rgba(218, 165, 32, 0.6);
}

.overlay-play-button i {
    font-size: 36px;
    color: var(--bg-dark);
    margin-left: 4px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Video Overlay レスポンシブ対応 */
@media (max-width: 768px) {
    .overlay-play-button {
        width: 80px;
        height: 80px;
    }
    
    .overlay-play-button i {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .overlay-play-button {
        width: 70px;
        height: 70px;
    }
    
    .overlay-play-button i {
        font-size: 24px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}



/* レスポンシブ対応 */
@media (max-width: 768px) {
    .overlay-image {
        width: 100%;
        height: 100%;
        max-height: none;
    }
    
    .overlay-play-button {
        width: 60px;
        height: 60px;
    }
    
    .overlay-play-button i {
        font-size: 20px;
    }
    

}