﻿/* ========================================
   GLOBAL STYLES & VARIABLES
======================================== */
:root {
    /* Colors */
    --color-primary: #090909;
    --color-secondary: #333333;
    --color-accent: #8b7355;
    --color-white: #ffffff;
    --color-gray-light: #f5f5f5;
    --color-gray: #e0e0e0;
    --color-gray-dark: #666666;
    --color-overlay: rgba(0, 0, 0, 0.3);

    /* Typography */
    --font-en: 'Montserrat', sans-serif;
    --font-jp: 'Noto Sans JP', sans-serif;

    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;

    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 20px;
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

ul {
    padding-left: 0;
}

body {
    font-family: var(--font-en), var(--font-jp);
    font-weight: 400;
    line-height: 1.8;
    /* 
    color: var(--color-primary); */
    background-color: var(--color-white);
    overflow-x: hidden;
    /* Sticky Footer */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.site-main {
    flex: 1;
    width: 100%;
}

/* Fixed Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/base_oilpainting 1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.15);
    z-index: -1;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* ========================================
   HEADER / NAVIGATION
======================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: none;
    transform: translateY(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.header-hidden {
    transform: translateY(-100%);
}

.navbar-custom {
    padding: 0;
}

.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 30px;
    max-width: 1400px;
    margin: 0 auto;
    gap: 40px;
}

.nav-menu {
    display: flex;
    gap: 35px;
    margin-bottom: 0;
}

.nav-link {
    font-family: var(--font-en);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-white);
}

.nav-link:hover {
    color: var(--color-accent);
}

.nav-link:focus {
    color: var(--color-accent);
}

.nav-sns {
    display: flex;
    gap: 30px;
}

.sns-icon {
    font-size: 1rem;
    color: var(--color-white);
    transition: var(--transition-fast);
}

.sns-icon:hover {
    color: var(--color-accent);
    transform: translateY(-2px);
}

/* Hamburger Button */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    width: 50px;
    height: 50px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1100;
    position: fixed;
    top: 15px;
    right: 15px;
}

.hamburger-line {
    display: block;
    width: 32px;
    height: 1px;
    background-color: var(--color-accent);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.hamburger-line:nth-child(1) {
    margin-bottom: 10px;
}

/* Hamburger Active State */
.hamburger-btn.active .hamburger-line:nth-child(1) {
    transform: translateY(5.5px) rotate(45deg);
}

.hamburger-btn.active .hamburger-line:nth-child(2) {
    transform: translateY(-5.5px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.97);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 80px 40px;
}

.mobile-nav-list {
    text-align: center;
    margin-bottom: 50px;
    padding-left: 0;
}

.mobile-nav-list li {
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.mobile-menu.active .mobile-nav-list li {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.active .mobile-nav-list li:nth-child(1) {
    transition-delay: 0.15s;
}

.mobile-menu.active .mobile-nav-list li:nth-child(2) {
    transition-delay: 0.2s;
}

.mobile-menu.active .mobile-nav-list li:nth-child(3) {
    transition-delay: 0.25s;
}

.mobile-menu.active .mobile-nav-list li:nth-child(4) {
    transition-delay: 0.3s;
}

.mobile-menu.active .mobile-nav-list li:nth-child(5) {
    transition-delay: 0.35s;
}

.mobile-menu.active .mobile-nav-list li:nth-child(6) {
    transition-delay: 0.4s;
}

.mobile-nav-link {
    font-family: var(--font-en);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--color-white);
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--color-accent);
    letter-spacing: 0.35em;
}

.mobile-sns {
    display: flex;
    gap: 40px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    transition-delay: 0.5s;
}

.mobile-menu.active .mobile-sns {
    opacity: 1;
    transform: translateY(0);
}

.mobile-sns .sns-icon {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.mobile-sns .sns-icon:hover {
    color: var(--color-white);
    transform: translateY(-3px);
}

/* Mobile Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ========================================
   FIRST VIEW SECTION
======================================== */
.section-firstview {
    position: relative;
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 50px;
    overflow: visible;
}

.fv-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.1) 0%,
            rgba(0, 0, 0, 0.2) 50%,
            rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
    pointer-events: none;
}

.fv-image-container {
    position: relative;
    z-index: 2;
    max-width: 1000px;
}

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

/* News Box (overlaid on FV) */
.news-box {
    position: absolute;
    bottom: 17%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    background-color: rgba(231, 229, 228, 0.8);
    padding: 25px 30px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.news-box-title {
    font-family: var(--font-en);
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 0;
    color: var(--color-primary);
}

.news-box-list {
    margin-bottom: 15px;
}

.news-box-item {
    padding: 10px 0;
    border-bottom: 1px solid var(--color-primary);
}

.news-date {
    font-family: var(--font-en);
    font-size: 0.75rem;
    font-weight: 500;
    color: #4B3F3C;
    display: block;
}

.news-text {
    font-family: var(--font-jp);
    font-size: 0.75rem;
    line-height: 1.8;
    color: var(--color-secondary);
    margin-bottom: 0;
}

/* View More Button */
.btn-viewmore {
    display: flex;
    justify-content: center;
    font-family: var(--font-en);
    font-size: 0.625rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    color: var(--color-white);
    background-color: var(--color-primary);
    padding: 1px 0px;
    transition: var(--transition-smooth);
    margin: 0 auto;
    max-width: 75px;
    text-align: center;
}



.btn-viewmore:hover {
    background-color: var(--color-accent);
    color: var(--color-white);
}

.news-box .btn-viewmore {
    margin-left: auto;
    margin-right: 0;
}

.section-schedule {
    background-color: transparent;
    padding: 0px 20px 50px;
    margin-top: 80px;
}

.section-schedule .container {
    border-bottom: 1px solid var(--color-primary);
    padding-bottom: 50px;
}

.section-title {
    font-family: var(--font-en);
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 50px;
    color: var(--color-white);
}

.schedule-list {
    margin-bottom: 30px;
    width: 100%;
}

.schedule-date {
    font-family: var(--font-en);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--color-white);
    display: block;
    margin-bottom: 8px;
}

.schedule-text {
    font-family: var(--font-jp);
    font-size: 0.75rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

/* ========================================
   DISCOGRAPHY SECTION
======================================== */
.section-discography {
    background-color: transparent;
    padding: var(--section-padding);
    padding-left: 20px;
    padding-right: 20px;
}

.section-discography .container {
    border-bottom: 1px solid var(--color-primary);
    padding-bottom: 50px;
}

.discography-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
    width: 100%;
}

.discography-item {
    text-align: center;
    flex: 1;
    max-width: 200px;
}

.discography-image-wrapper {
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
    background-color: var(--color-gray-light);
    width: 100%;
    aspect-ratio: 1 / 1;
}

.discography-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.discography-item:hover .discography-image {
    transform: scale(1.05);
    opacity: 0.9;
}

.discography-title {
    font-family: var(--font-en);
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    margin-bottom: 5px;
    color: var(--color-white);
}

.discography-subtitle {
    font-family: var(--font-en);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ========================================
   VIDEO SECTION
======================================== */
.section-video {
    background-color: transparent;
    padding: var(--section-padding);
    padding-left: 20px;
    padding-right: 20px;
    color: var(--color-white);
}

.section-video .section-title {
    color: var(--color-white);
}

.video-wrapper {
    width: 100%;
    margin-bottom: 30px;
}

.video-placeholder {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background-color: rgba(180, 180, 180, 0.6);
}

.video-dummy {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-dummy i {
    font-size: 3.125rem;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition-smooth);
}

.video-placeholder:hover .video-dummy i {
    color: var(--color-white);
    transform: scale(1.1);
}

.btn-youtube {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-family: var(--font-en);
    font-size: 0.5625rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: var(--color-white);
    background-color: transparent;
    /* padding: 10px 25px; */
    border: 1px solid var(--color-white);
    transition: var(--transition-smooth);
    max-width: 100px;
    margin: 0 auto;
}

.btn-youtube:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
}

.btn-youtube i {
    font-size: 1rem;
}

/* ========================================
   VIDEO EMBED (iframe埋め込み用)
======================================== */
.video-embed-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    height: 0;
    overflow: hidden;
}

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

/* ========================================
   VIDEO PAGE (動画一覧ページ)
======================================== */
.page-video {
    padding-bottom: 50px;
}

.page-video .container {
    max-width: 80%;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.video-item {
    margin-bottom: 20px;
}

.video-item-title {
    font-family: var(--font-jp);
    font-size: 0.875rem;
    color: var(--color-white);
    text-align: center;
    margin: 15px 0 0;
}

.video-card {
    background-color: rgba(20, 20, 20, 0.7);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.video-card a {
    display: block;
    color: inherit;
    text-decoration: none;
}

.video-thumbnail {
    position: relative;
    padding-bottom: 56.25%;
    overflow: hidden;
}

.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-smooth);
    pointer-events: none;
}

.video-card:hover .video-play-icon {
    color: var(--color-white);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-card-title {
    padding: 15px;
    font-family: var(--font-jp);
    font-size: 0.875rem;
    color: var(--color-white);
    text-align: center;
    margin: 0;
}

.video-channel-cta {
    text-align: center;
    margin-top: 30px;
}

.btn-youtube-channel {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-family: var(--font-jp);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: var(--color-white);
    background-color: transparent;
    border: 1px solid var(--color-white);
    padding: 12px 30px;
    transition: var(--transition-smooth);
}

.btn-youtube-channel:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
}

/* ========================================
   FOOTER
======================================== */
.site-footer {
    position: relative;
    padding: 25px 20px 100px;
    text-align: center;
    ;
}

.footer-sns {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 15px;
}

.footer-sns .sns-icon {
    font-size: 1.125rem;
    color: var(--color-white);
}

.footer-sns .sns-icon:hover {
    color: var(--color-accent);
}

.copyright {
    display: flex;
    align-items: center;
    justify-content: center;

    font-family: var(--font-en);
    font-size: 0.625rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.05em;
    margin-bottom: 0;
    background: #000;
    text-align: center;
    height: 35px;
}

/* Page Top Button */
.btn-pagetop {
    position: fixed;
    bottom: 50px;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: var(--color-white);
    font-family: var(--font-en);
    font-size: 0.5rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-smooth);
    z-index: 100;
}

.btn-pagetop.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.btn-pagetop:hover {
    color: var(--color-accent);
}

/* CSS Triangle for page top */
.btn-pagetop .arrow-up {
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 10px solid var(--color-white);
    transition: var(--transition-fast);
}

.btn-pagetop:hover .arrow-up {
    border-bottom-color: var(--color-accent);
}

/* ========================================
   SCROLL ANIMATIONS
======================================== */
.fade-in-section {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */
@media (max-width: 991px) {

    .site-header {
        background-color: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        box-shadow: none;
    }

    .nav-menu,
    .nav-sns {
        display: none;
    }

    .hamburger-btn {
        display: flex;
    }

    .discography-grid {
        gap: 25px;
    }

    /* */
    .section-firstview {
        min-height: auto;
        flex-direction: column;
        padding: 0;
    }

    .fv-image-container {
        width: 100%;
        margin-bottom: 0;
    }

    .fv-image {
        width: 100%;
        height: auto;
    }

    .news-box {
        position: static;
        transform: none;
        width: 80%;
        max-width: 500px;
        margin: 40px auto 0;
        padding: 25px 25px;
    }

    .news-box-title {
        font-size: 1.2rem;
    }

    .news-text {
        font-size: 0.75rem;
    }


}


@media (max-width: 768px) {
    :root {
        --section-padding: 80px 0;
    }

    .nav-container {
        padding: 12px 20px;
    }

    .section-title {
        font-size: 1.375rem;
        margin-bottom: 35px;
    }

    .discography-grid {
        gap: 20px;
    }

    .discography-item {
        width: 120px;
    }

    .discography-title {
        font-size: 0.6875rem;
    }

    .discography-subtitle {
        font-size: 0.5625rem;
    }

    .btn-pagetop {
        right: 20px;
        bottom: 20px;
    }

    /* Video Grid SP対応 */
    .video-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-video .container {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .section-schedule {
        padding: 100px 15px 60px;
        margin-top: 60px;
    }

    .section-discography,
    .section-video {
        padding: 60px 15px;
    }

    .news-box {
        width: 92%;
        padding: 20px 15px;
    }

    .discography-grid {
        gap: 10px;
    }

    .discography-item {
        width: 100px;
    }

    .discography-image-wrapper {
        width: 100px;
        height: 100px;
    }

    .btn-viewmore {
        font-size: 0.625rem;
    }

    .video-dummy i {
        font-size: 2.5rem;
    }
}


/* ========================================
   BIOGRAPHY PAGE
======================================== */
.bio-page-wrapper {
    position: relative;
}

.bio-hero {
    width: 100%;
    margin-bottom: 60px;
}

.bio-hero-img {
    width: 100%;
    height: auto;
    display: block;
}

.section-biography {
    padding-bottom: 100px;
    position: relative;
    z-index: 10;
}

@media (min-width: 992px) {
    .bio-hero {
        margin-bottom: 0;
    }

    .section-biography {
        position: absolute;
        top: 50%;
        right: 5%;
        transform: translateY(-50%);
        width: 45%;
        padding-bottom: 0;
        max-height: 90vh;
        overflow-y: auto;
    }

    /* カスタムスクロールバー */
    .section-biography::-webkit-scrollbar {
        width: 6px;
    }

    .section-biography::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
    }

    .section-biography::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.3);
        border-radius: 3px;
    }

    .section-biography::-webkit-scrollbar-thumb:hover {
        background: rgba(255, 255, 255, 0.5);
    }

    .biography-container {
        max-width: 750px;
        margin-left: auto;
        background-color: rgba(20, 20, 20, 0.85);
        padding: 50px 60px;
        color: var(--color-white);
        margin-top: 0;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    }

    .biography-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .biography-text p {
        font-size: 0.65rem;
        line-height: 2.5;
        margin-bottom: 20px;
    }

    /* BIOGRAPHYセクション専用アニメーション（中央配置を維持） */
    .section-biography.fade-in-section {
        transform: translateY(-50%);
    }

    .section-biography.fade-in-section.visible {
        opacity: 1;
        transform: translateY(-50%);
    }
}

.biography-container {
    max-width: 530px;
    background-color: rgba(20, 20, 20, 0.85);
    padding: 80px 50px;
    color: var(--color-white);
    margin-top: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.biography-title {
    font-family: var(--font-en);
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 50px;
    color: var(--color-white);
}

.biography-profile {
    margin-bottom: 40px;
}

.artist-name-jp {
    font-family: var(--font-jp);
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 5px;
}

.artist-role {
    font-size: 1rem;
    font-weight: 300;
    margin-left: 10px;
}

.artist-name-en {
    font-family: var(--font-en);
    font-size: 1rem;
    letter-spacing: 0.05em;
    font-weight: 300;
}

.biography-text p {
    font-family: var(--font-jp);
    font-size: 0.75rem;
    line-height: 3;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    text-align: justify;
    font-weight: 300;
}

@media (min-width: 992px) and (max-height: 800px) {
    .biography-container {
        max-width: 500px;
        padding: 40px 60px;
    }

    .biography-text p {
        font-size: 0.65rem;
        line-height: 2.5;
    }
}

@media (max-width: 991px) {
    .biography-container {
        margin: 0 auto;
    }

    .biography-text p {
        line-height: 2;
    }
}


@media (max-width: 768px) {
    .biography-container {
        padding: 50px 30px;
        width: 90%;
        margin-top: -50px;
    }

    .biography-title {
        font-size: 2rem;
        margin-bottom: 30px;
        text-align: center;
    }

    .biography-profile {
        text-align: center;
    }

    .biography-text p {
        font-size: 0.875rem;
        text-align: left;
        line-height: 2;
    }

}


/* ========================================
   DISCOGRAPHY PAGE
======================================== */
.page-title-spacer {
    padding-top: 150px;
    padding-bottom: 50px;
}

.page-main-title {
    font-family: var(--font-en);
    font-size: 2rem;
    font-weight: 300;
    color: var(--color-white);
    border-bottom: none;
    margin-bottom: 0;
    text-align: center;
}

.page-discography {
    padding-bottom: 50px;
}

.page-discography .container {
    max-width: 900px;
}

.disco-section {
    margin-bottom: 120px;
}

.disco-heading {
    font-family: var(--font-en), var(--font-jp);
    font-weight: 300;
    font-size: 1.25rem;
    color: var(--color-gray-light);
    margin-bottom: 40px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--color-white);
    display: flex;
    align-items: baseline;
    gap: 15px;
}

.disco-heading .sub-heading {
    font-size: 0.75rem;
    font-weight: 300;
}

/* Grids */
.disco-grid {
    display: grid;
    gap: 40px;
}

.disco-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.disco-grid-2 {
    grid-template-columns: repeat(2, 1fr);
    /* If we want them centered or specific width */
    display: flex;
    justify-content: center;
}

.disco-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Item Styling */
.disco-item {
    display: flex;
    flex-direction: column;
    max-width: 240px;
    text-align: center;
}

.disco-img-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    max-width: 240px;
    background-color: #d1d5db;
    /* gray-300 placeholder color */
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
    /* transition: var(--transition-smooth); */
}

.disco-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.disco-item:hover .disco-img-wrapper img {
    transform: scale(1.05);
    opacity: 0.9;
}

/* Dummy box style */
.dummy-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #d9d9d9;
}

.dummy-wrapper span {
    font-family: var(--font-en);
    color: #444;
    font-size: 1.2rem;
}

.disco-item-title {
    font-family: var(--font-en);
    font-size: 1rem;
    font-weight: 400;
    color: var(--color-white);
    margin-bottom: 10px;
    line-height: 1.4;
}

.release-year {
    font-size: 0.875rem;
    margin-left: 5px;
    font-weight: 300;
}

.artist-name {
    display: block;
    font-family: var(--font-jp);
    font-size: 0.75rem;
    margin-top: 5px;
}

/* Buttons */
.btn-shop-link {
    display: inline-block;
    padding: 1px 15px;
    background-color: var(--color-primary);
    color: #fff;
    font-size: 0.625rem;
    text-align: center;
    text-decoration: none;
    transition: var(--transition-fast);
    width: fit-content;
    font-family: var(--font-jp);
    margin: 0 auto;
    min-width: 120px;
    border-radius: 3px;
}

.btn-shop-link:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-white);
}

.btn-shop-link.disabled {
    background-color: #767982;
    pointer-events: none;
    color: var(--color-primary);
}

.btn-shop-link.small {
    font-size: 0.625rem;
    padding: 4px 10px;
}


/* Responsive */
@media (max-width: 991px) {
    .disco-grid-4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .page-title-spacer {
        padding-top: 100px;
        padding-bottom: 30px;
    }

    .page-main-title {
        font-size: 2rem;
    }

    .disco-section {
        margin-bottom: 80px;
    }

    .disco-grid-3,
    .disco-grid-2 {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    /* Keep 4-grid as 2 columns on mobile for sideman? or 1 column? 
       Usually sideman items are small, so 2 columns is fine */
    .disco-grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* If screen is very small, 1 column for sideman too */
    @media (max-width: 480px) {
        .disco-grid-4 {
            grid-template-columns: repeat(2, 1fr);
        }
    }
}

@media (max-width: 576px) {

    /* Reset max-width for mobile only (Smartphone), keeping it for Tablet */
    .disco-item,
    .disco-img-wrapper {
        max-width: 100%;
    }
}

/* ========================================
   CONTACT PAGE
======================================== */
.page-contact {
    padding-bottom: 100px;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: rgba(20, 20, 20, 0.85);
    padding: 60px 50px;
    color: var(--color-white);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.contact-intro {
    text-align: center;
    margin-bottom: 40px;
}

.contact-intro p {
    font-family: var(--font-jp);
    font-size: 0.875rem;
    line-height: 2;
    color: rgba(255, 255, 255, 0.9);
}

.contact-form-wrapper {
    margin-top: 30px;
}

.contact-notice {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-bottom: 30px;
}

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

.contact-form label {
    display: block;
    font-family: var(--font-jp);
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--color-white);
}

.contact-form label .required {
    color: #ff6b6b;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    font-family: var(--font-jp);
    font-size: 0.875rem;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--color-white);
    transition: var(--transition-fast);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    background-color: rgba(255, 255, 255, 0.15);
}

.contact-form .form-submit {
    text-align: center;
    margin-top: 30px;
}

.btn-submit {
    display: inline-block;
    padding: 12px 50px;
    font-family: var(--font-en);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--color-white);
    background-color: var(--color-primary);
    border: 1px solid var(--color-white);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-submit:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
}

/* Contact Form 7 Styling */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 textarea {
    width: 100%;
    padding: 12px 15px;
    font-family: var(--font-jp);
    font-size: 0.875rem;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--color-white);
    transition: var(--transition-fast);
}

.wpcf7 input[type="submit"] {
    display: block;
    padding: 12px 50px;
    font-family: var(--font-en);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--color-white);
    background-color: var(--color-primary);
    border: 1px solid var(--color-white);
    cursor: pointer;
    transition: var(--transition-smooth);
    margin: 0 auto;
}

.wpcf7 input[type="submit"]:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
}

@media (max-width: 768px) {
    .contact-container {
        padding: 40px 25px;
        width: 100%;
    }
}

/* ========================================
   NEWS PAGES
======================================== */

/* News Single */
.page-news-single {
    padding-bottom: 100px;
}

.news-article {
    max-width: 700px;
    margin: 0 auto;
    background-color: rgba(20, 20, 20, 0.85);
    padding: 60px 50px;
    color: var(--color-white);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.article-header {
    margin-bottom: 40px;
}

.article-date {
    display: block;
    font-family: var(--font-en);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.article-title {
    font-family: var(--font-jp);
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.6;
}

.article-thumbnail {
    margin-bottom: 40px;
}

.article-thumbnail img {
    width: 100%;
    height: auto;
}

.article-content {
    font-family: var(--font-jp);
    font-size: 0.875rem;
    line-height: 2.2;
    color: rgba(255, 255, 255, 0.9);
}

.article-content p {
    margin-bottom: 25px;
}

.article-content a {
    color: var(--color-accent);
    text-decoration: underline;
}

.article-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-back {
    display: inline-block;
    font-family: var(--font-en);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
}

.btn-back:hover {
    color: var(--color-white);
}

/* News Archive */
.page-news-archive {
    padding-bottom: 100px;
}

.news-archive-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: rgba(20, 20, 20, 0.85);
    padding: 50px;
    color: var(--color-white);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.news-archive-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.news-archive-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.news-archive-link {
    display: block;
    padding: 25px 0;
    transition: var(--transition-fast);
}

.news-archive-link:hover {
    padding-left: 10px;
}

.news-archive-date {
    display: block;
    font-family: var(--font-en);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
}

.news-archive-title {
    font-family: var(--font-jp);
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 8px;
    transition: var(--transition-fast);
}

.news-archive-link:hover .news-archive-title {
    color: var(--color-accent);
}

.news-archive-excerpt {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.archive-pagination {
    margin-top: 40px;
    text-align: center;
}

.archive-pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.archive-pagination a,
.archive-pagination span {
    display: inline-block;
    padding: 8px 15px;
    font-family: var(--font-en);
    font-size: 0.75rem;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition-fast);
}

.archive-pagination a:hover,
.archive-pagination .current {
    background-color: var(--color-white);
    color: var(--color-primary);
}

.archive-back-link {
    max-width: 700px;
    margin: 30px auto 0;
}

.no-posts {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

/* ========================================
   SCHEDULE PAGES
======================================== */

/* Schedule Single */
.page-schedule-single {
    padding-bottom: 100px;
}

.schedule-article {
    max-width: 700px;
    margin: 0 auto;
    background-color: rgba(20, 20, 20, 0.85);
    padding: 60px 50px;
    color: var(--color-white);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.schedule-date-badge {
    display: inline-block;
    font-family: var(--font-en);
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-white);
    background-color: var(--color-accent);
    padding: 5px 20px;
    margin-bottom: 15px;
    line-height: 1.2;
}

.schedule-details {
    margin: 40px 0;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 3px solid var(--color-accent);
}

.detail-row {
    display: flex;
    margin-bottom: 15px;
}

.detail-row:last-child {
    margin-bottom: 0;
}

.detail-label {
    font-family: var(--font-jp);
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    width: 80px;
    flex-shrink: 0;
}

.detail-value {
    font-family: var(--font-jp);
    font-size: 0.875rem;
    line-height: 1.8;
}

.btn-ticket {
    display: inline-block;
    padding: 8px 25px;
    font-family: var(--font-en);
    font-size: 0.625rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--color-white);
    background-color: var(--color-accent);
    transition: var(--transition-fast);
    line-height: 1.2;
}

.btn-ticket:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
}

/* Schedule Archive */
.page-schedule-archive {
    padding-bottom: 100px;
}

.schedule-archive-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: rgba(20, 20, 20, 0.85);
    padding: 50px;
    color: var(--color-white);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.schedule-section {
    margin-bottom: 50px;
}

.schedule-section:last-child {
    margin-bottom: 0;
}

.schedule-section-heading {
    font-family: var(--font-en);
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--color-white);
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.schedule-archive-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.schedule-archive-list.past {
    opacity: 0.7;
}

.schedule-archive-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.schedule-archive-link {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0;
    transition: var(--transition-fast);
}

.schedule-archive-link:hover {
    padding-left: 10px;
}

.schedule-archive-date {
    font-family: var(--font-en);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--color-white);
    flex-shrink: 0;
    min-width: 90px;
}

.schedule-archive-info {
    flex-grow: 1;
}

.schedule-archive-title {
    font-family: var(--font-jp);
    font-size: 0.9375rem;
    font-weight: 400;
    margin-bottom: 5px;
    transition: var(--transition-fast);
}

.schedule-archive-link:hover .schedule-archive-title {
    color: var(--color-accent);
}

.schedule-archive-venue {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {

    .news-article,
    .schedule-article,
    .news-archive-container,
    .schedule-archive-container {
        padding: 40px 25px;
        width: 90%;
        margin: 0 auto;
    }

    .schedule-archive-link {
        flex-direction: column;
        gap: 8px;
    }

    .schedule-details {
        padding: 20px;
    }

    .detail-row {
        flex-direction: column;
        gap: 5px;
    }

    .detail-label {
        width: auto;
    }
}

/* ========================================
   ARCHIVE THUMBNAIL STYLES
======================================== */

/* Category Navigation */
.category-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.category-link {
    display: inline-block;
    padding: 6px 20px;
    font-family: var(--font-en);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition-fast);
}

.category-link:hover,
.category-link.active {
    color: var(--color-white);
    background-color: var(--color-accent);
    border-color: var(--color-accent);
}

/* News Archive with Thumbnail */
.news-archive-link {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px 0;
    transition: var(--transition-fast);
}

.news-archive-link:hover {
    padding-left: 10px;
}

.news-archive-thumb {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.1);
}

.news-archive-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-archive-thumb .no-thumb {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.5rem;
}

.news-archive-content {
    flex-grow: 1;
}

/* Schedule Archive with Thumbnail */
.schedule-archive-link {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0;
    transition: var(--transition-fast);
}

.schedule-archive-link:hover {
    padding-left: 10px;
}

.schedule-archive-thumb {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.1);
}

.schedule-archive-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.schedule-archive-thumb .no-thumb {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.5rem;
}

.schedule-archive-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

@media (max-width: 576px) {

    .news-archive-thumb,
    .schedule-archive-thumb {
        width: 60px;
        height: 60px;
    }

    .news-archive-link,
    .schedule-archive-link {
        gap: 15px;
    }

    .category-nav {
        gap: 8px;
    }

    .category-link {
        padding: 5px 12px;
        font-size: 0.6875rem;
    }
}

/* Article Meta (Date + Category) */
.article-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.article-category {
    display: inline-block;
    padding: 1px 5px;
    font-family: var(--font-en);
    font-size: 0.625rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--color-white);
    background-color: var(--color-accent);
}

/* Current Category Label */
.current-category-label {
    font-family: var(--font-jp);
    font-size: 0.875rem;
    color: var(--color-accent);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* Contact Form Label Styles */
.wpcf7 .form-group label,
.contact-form .form-group label {
    color: var(--color-gray-light);
    font-size: 0.8125rem;
}

/* ========================================
   SCHEDULE PAGINATION
======================================== */
.schedule-pagination {
    margin-top: 40px;
    text-align: center;
}

.schedule-pagination ul.page-numbers {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.schedule-pagination ul.page-numbers li {
    display: inline-block;
}

.schedule-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    font-family: var(--font-en);
    font-size: 0.875rem;
    color: var(--color-white);
    transition: var(--transition-fast);
    text-decoration: none;
}

.schedule-pagination a.page-numbers:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: var(--color-white);
}

.schedule-pagination .page-numbers.current {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-white);
}

.schedule-pagination .page-numbers.prev,
.schedule-pagination .page-numbers.next {
    gap: 5px;
}

.schedule-pagination .page-numbers i {
    font-size: 0.75rem;
}