/* ============================================
   PAGES SPECIFIC STYLES - BLACK & WHITE
   ============================================ */

/* ============================================
   HERO SECTIONS
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(50%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-white);
    padding: 0 20px;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 72px;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: 5px;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    animation: hero-title-fade 1s ease forwards;
}

.hero-content p {
    font-size: 24px;
    margin-bottom: 40px;
    color: var(--color-light-gray);
    animation: hero-text-fade 1s ease 0.3s forwards;
    opacity: 0;
}

@keyframes hero-title-fade {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes hero-text-fade {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    animation: hero-button-fade 1s ease 0.6s forwards;
    opacity: 0;
}

.cta-button:hover {
    background: var(--color-white);
    color: var(--color-black);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

@keyframes hero-button-fade {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.slider-nav {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 3;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid var(--color-white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--color-white);
    transform: scale(1.2);
}

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header {
    padding: 150px 0 80px;
    text-align: center;
    background: var(--gradient-bg);
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 900;
    color: var(--color-white);
    margin-bottom: 20px;
    letter-spacing: 3px;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

.page-header p {
    font-size: 18px;
    color: var(--color-light-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   NEWS SECTION
   ============================================ */
.news-section {
    padding: 80px 0;
    background: var(--gradient-bg);
}

.news-filters {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 30px;
    background: transparent;
    color: var(--color-light-gray);
    border: 2px solid var(--color-medium-gray);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--color-white);
    color: var(--color-black);
    border-color: var(--color-white);
}

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

.news-card {
    background: var(--gradient-card);
    border: 1px solid var(--color-medium-gray);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-white-glow);
    border-color: var(--color-white);
}

.news-card-image {
    width: 100%;
    height: 200px;
    background: var(--color-medium-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%);
    transition: transform 0.3s ease;
}

.news-card:hover .news-card-image img {
    transform: scale(1.1);
}

.news-card-content {
    padding: 25px;
}

.news-category {
    display: inline-block;
    padding: 5px 15px;
    background: var(--color-black);
    color: var(--color-white);
    border: 1px solid var(--color-white);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.news-date {
    font-size: 14px;
    color: var(--color-medium-light-gray);
    margin-bottom: 10px;
}

.news-card h3 {
    font-size: 20px;
    color: var(--color-white);
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.news-card p {
    font-size: 14px;
    color: var(--color-light-gray);
    line-height: 1.6;
}

/* ============================================
   SCHEDULE SECTION
   ============================================ */
.schedule-section {
    padding: 80px 0;
    background: var(--gradient-bg);
}

.schedule-grid {
    display: grid;
    gap: 30px;
}

.schedule-card {
    background: var(--gradient-card);
    border: 1px solid var(--color-medium-gray);
    border-radius: 10px;
    padding: 30px;
    display: grid;
    grid-template-columns: 150px 1fr auto;
    gap: 30px;
    align-items: center;
    transition: all 0.3s ease;
}

.schedule-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-white-glow);
    border-color: var(--color-white);
}

.schedule-date {
    text-align: center;
    border-right: 2px solid var(--color-medium-gray);
    padding-right: 30px;
}

.schedule-date .month {
    font-size: 16px;
    color: var(--color-light-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.schedule-date .day {
    font-size: 48px;
    font-weight: 900;
    color: var(--color-white);
    font-family: var(--font-heading);
    line-height: 1;
}

.schedule-date .year {
    font-size: 14px;
    color: var(--color-medium-light-gray);
}

.schedule-info h3 {
    font-size: 24px;
    color: var(--color-white);
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.schedule-info .venue {
    font-size: 16px;
    color: var(--color-light-gray);
    margin-bottom: 10px;
}

.schedule-status {
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.schedule-status.on-sale {
    background: var(--color-white);
    color: var(--color-black);
}

.schedule-status.sold-out {
    background: var(--color-medium-gray);
    color: var(--color-light-gray);
}

.schedule-actions {
    display: flex;
    gap: 15px;
}

.schedule-btn {
    padding: 12px 25px;
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.schedule-btn:hover {
    background: var(--color-white);
    color: var(--color-black);
}

/* ============================================
   PROFILE / TIMELINE
   ============================================ */
.profile-section {
    padding: 80px 0;
    background: var(--gradient-bg);
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--color-white);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-content {
    width: calc(50% - 40px);
    background: var(--gradient-card);
    border: 1px solid var(--color-medium-gray);
    border-radius: 10px;
    padding: 25px;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-white-glow);
    border-color: var(--color-white);
}

.timeline-year {
    font-size: 24px;
    font-weight: 900;
    color: var(--color-white);
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.timeline-content p {
    font-size: 15px;
    color: var(--color-light-gray);
    line-height: 1.8;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--color-white);
    border: 4px solid var(--color-black);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

/* ============================================
   DISCOGRAPHY
   ============================================ */
.discography-section {
    padding: 80px 0;
    background: var(--gradient-bg);
}

.tabs {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    border-bottom: 2px solid var(--color-medium-gray);
}

.tab-btn {
    padding: 15px 40px;
    background: transparent;
    color: var(--color-light-gray);
    border: none;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--color-white);
    transition: width 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
    color: var(--color-white);
}

.tab-btn.active::after {
    width: 100%;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.discography-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.album-card {
    background: var(--gradient-card);
    border: 1px solid var(--color-medium-gray);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.album-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-white-glow);
    border-color: var(--color-white);
}

.album-cover {
    width: 100%;
    aspect-ratio: 1;
    background: var(--color-medium-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.album-card:hover .album-cover img {
    transform: scale(1.1);
}

.album-info {
    padding: 20px;
}

.album-title {
    font-size: 18px;
    color: var(--color-white);
    margin-bottom: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
}

.album-year {
    font-size: 14px;
    color: var(--color-medium-light-gray);
}

/* ============================================
   STORE
   ============================================ */
.store-section {
    padding: 80px 0;
    background: var(--gradient-bg);
}

.store-banner {
    background: var(--gradient-card);
    border: 2px solid var(--color-white);
    border-radius: 15px;
    padding: 60px;
    text-align: center;
    margin-bottom: 60px;
}

.store-banner h2 {
    font-size: 48px;
    color: var(--color-white);
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.store-banner p {
    font-size: 18px;
    color: var(--color-light-gray);
    margin-bottom: 30px;
}

.store-btn {
    display: inline-block;
    padding: 15px 40px;
    background: var(--color-white);
    color: var(--color-black);
    border: 2px solid var(--color-white);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.store-btn:hover {
    background: transparent;
    color: var(--color-white);
}

/* ============================================
   CONTACT
   ============================================ */
.contact-section {
    padding: 80px 0;
    background: var(--gradient-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.contact-card {
    background: var(--gradient-card);
    border: 1px solid var(--color-medium-gray);
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-white-glow);
    border-color: var(--color-white);
}

.contact-icon {
    font-size: 48px;
    color: var(--color-white);
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 24px;
    color: var(--color-white);
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

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

.contact-link {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: var(--color-white);
    color: var(--color-black);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 56px;
    }

    .schedule-card {
        grid-template-columns: 120px 1fr auto;
        gap: 20px;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: row;
    }

    .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px;
    }

    .timeline-dot {
        left: 30px;
    }
}

@media (max-width: 768px) {
    /* Hero Section - Mobile Optimization */
    .hero {
        height: 100vh;
        min-height: 100vh;
    }

    .hero-slide img {
        object-fit: cover;
        object-position: center center;
    }

    .hero-overlay {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.8) 100%);
    }

    .hero-content {
        padding: 0 30px;
    }

    .hero-content h1 {
        font-size: 36px;
        letter-spacing: 3px;
    }

    .hero-content p {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 14px;
    }

    .slider-nav {
        bottom: 30px;
    }

    .page-header h1 {
        font-size: 36px;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .schedule-card {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .schedule-date {
        border-right: none;
        border-bottom: 2px solid var(--color-medium-gray);
        padding-right: 0;
        padding-bottom: 20px;
    }

    .schedule-actions {
        justify-content: center;
    }

    .discography-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

    .store-banner {
        padding: 40px 20px;
    }

    .store-banner h2 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    /* Extra small mobile devices */
    .hero {
        height: 100vh;
        min-height: 100vh;
    }

    .hero-slide img {
        object-fit: cover;
        object-position: center center;
    }

    .hero-content h1 {
        font-size: 28px;
        letter-spacing: 2px;
        margin-bottom: 15px;
    }

    .hero-content p {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .cta-button {
        padding: 10px 25px;
        font-size: 13px;
        letter-spacing: 1px;
    }

    .slider-nav {
        bottom: 20px;
        gap: 10px;
    }

    .slider-dot {
        width: 10px;
        height: 10px;
    }
}
