/* ====================================
   GLOBAL STYLES
   ==================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #0a0a0a;
    --secondary-dark: #1a1a1a;
    --accent-gold: #6B3410;
    --accent-light: #f5f5f5;
    --text-primary: #ffffff;
    --text-secondary: #ffffff;
    --border-color: #333333;
}

body {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    letter-spacing: 0.5px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.homepage {
    background-color: var(--primary-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ====================================
   NAVIGATION
   ==================================== */
.navbar {
    background-color: var(--primary-dark);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    width: 100%;
}

.homepage .navbar {
    background-color: transparent;
    position: fixed;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.8rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    position: absolute;
    left: 2rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--accent-gold);
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    transition: all 0.3s ease;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9),
                 0 0 8px rgba(0, 0, 0, 0.8),
                 1px 1px 2px rgba(0, 0, 0, 1);
    -webkit-text-stroke: 0.5px rgba(0, 0, 0, 0.6);
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-gold);
    border-bottom-color: var(--accent-gold);
}

/* ====================================
   HERO SECTION
   ==================================== */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('Bandofficial.9.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero {
        background-image: url('Bandofficial.5.jpg');
        background-attachment: scroll;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-primary);
    text-shadow: 0 8px 16px rgba(0, 0, 0, 0.7);
    line-height: 1.1;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Contact Page Hero */
.contactpage {
    background-color: var(--primary-dark);
}

.contactpage .navbar {
    background-color: transparent;
    position: fixed;
}

.contact-hero {
    background-image: url('Bandofficial.4B&W.jpg');
    background-position: center 40%;
}

.contact-hero .contact-info-simple {
    background-color: transparent;
}

.contact-hero .contact-item {
    background-color: rgba(26, 26, 26, 0.85);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(212, 31, 61, 0.3);
    transition: all 0.3s ease;
}

.contact-hero .contact-item:hover {
    border-color: var(--accent-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 31, 61, 0.3),
                0 0 20px rgba(107, 52, 16, 0.4),
                inset 0 0 30px rgba(255, 255, 255, 0.05);
    animation: lightPulse 2s ease-in-out infinite;
}

@keyframes lightPulse {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(212, 31, 61, 0.3),
                    0 0 20px rgba(107, 52, 16, 0.4),
                    inset 0 0 30px rgba(255, 255, 255, 0.05);
    }
    50% {
        box-shadow: 0 10px 30px rgba(212, 31, 61, 0.5),
                    0 0 30px rgba(107, 52, 16, 0.6),
                    inset 0 0 40px rgba(255, 255, 255, 0.08);
    }
}

.contactpage .footer {
    background-color: transparent;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 100;
}

.contactpage .footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
    z-index: 0;
}

.contactpage .footer .container {
    position: relative;
    z-index: 1;
}

/* ====================================
   ABOUT SECTION
   ==================================== */
.about {
    padding: 5rem 0;
    background-color: var(--primary-dark);
    text-align: center;
    flex: 1;
}

.about h2 {
    font-size: 2.5rem;
    text-transform: uppercase;
    margin-bottom: 2rem;
    color: var(--text-primary);
    letter-spacing: 2px;
}

.about p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* ====================================
   CONTENT PAGES
   ==================================== */
.page-header {
    min-height: 15vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    border-bottom: 2px solid var(--text-primary);
    padding: 2rem 0;
}

.page-header h1 {
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-primary);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.content {
    padding: 4rem 0;
    background-color: var(--primary-dark);
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.content .container {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* ====================================
   MUSIC GRID
   ==================================== */
.music-grid,
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.music-card,
.video-card {
    background-color: var(--secondary-dark);
    border: 1px solid var(--border-color);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.music-card:hover,
.video-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    box-shadow: 0 10px 30px rgba(212, 31, 61, 0.2);
}

.music-placeholder,
.video-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #333333 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.music-card:hover .music-placeholder,
.video-card:hover .video-placeholder {
    border-color: var(--accent-gold);
    background: linear-gradient(135deg, var(--accent-gold) 0%, #8b6f47 100%);
}

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

.music-card .year {
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.music-card .description,
.video-card .description {
    color: var(--text-primary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ====================================
   CONTACT SECTION
   ==================================== */
.contact-info-simple {
    display: flex;
    flex-direction: row;
    gap: 3rem;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    justify-content: center;
}

.contact-item {
    background-color: var(--secondary-dark);
    border: 1px solid var(--border-color);
    padding: 2rem;
}

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

.contact-item p {
    color: var(--text-primary);
    font-size: 1rem;
    line-height: 1.8;
}

.contact-item a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--accent-gold);
}

/* ====================================
   SHOWS SECTION
   ==================================== */
.shows-container h1 {
    font-size: 2.5rem;
    text-transform: uppercase;
    margin-bottom: 3rem;
    color: var(--text-primary);
    letter-spacing: 2px;
    text-align: center;
}

.shows-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    width: 100%;
}

.show-card {
    display: flex;
    background-color: var(--secondary-dark);
    border: 1px solid var(--border-color);
    padding: 2rem;
    transition: all 0.3s ease;
    gap: 2rem;
}

.show-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-5px);
}

.show-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-gold), #ff6b6b);
    padding: 1rem;
    min-width: 70px;
    text-align: center;
}

.date-day {
    font-size: 2rem;
    font-weight: 900;
    color: white;
    line-height: 1;
}

.date-month {
    font-size: 0.9rem;
    color: white;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 0.5rem;
}

.show-details {
    flex: 1;
    display: flex;
    flex-direction: column;
}

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

.show-location {
    color: var(--accent-gold);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.show-time {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.show-link {
    display: inline-block;
    background-color: var(--accent-gold);
    color: white;
    padding: 0.7rem 1.5rem;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: auto;
}

.show-link:hover {
    background-color: #ff6b6b;
    transform: scale(1.05);
}
.homepage .navbar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
    z-index: 0;
}

.homepage .nav-container {
    position: relative;
    z-index: 1;
}

.homepage .footer {
    background-color: transparent;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 100;
}

.homepage .footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
    z-index: 0;
}

.homepage .footer .container {
    position: relative;
    z-index: 1;
}

/* ====================================
   FOOTER
   ==================================== */
.footer {
    background-color: var(--primary-dark);
    padding: 2rem;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.7rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.social-links a {
    color: var(--text-secondary);
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-gold);
    transform: scale(1.1);
}

body:not(.homepage) {
    background-color: var(--primary-dark);
}

/* ====================================
   RESPONSIVE
   ==================================== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        top: 1.2rem;
    }

    .nav-menu {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        flex-direction: column;
        background-color: transparent;
        gap: 2rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease, visibility 0.3s ease;
        z-index: 99;
        text-align: center;
        padding: 0;
        opacity: 0;
        pointer-events: none;
        visibility: hidden;
    }

    .nav-menu.active {
        max-height: 500px;
        background-color: rgba(0, 0, 0, 0.35);
        backdrop-filter: blur(3px);
        padding: 2rem;
        opacity: 1;
        pointer-events: auto;
        visibility: visible;
    }

    .nav-menu li {
        border-bottom: none;
    }

    .nav-link {
        display: block;
        padding: 1rem !important;
        border: none !important;
        font-size: 1.5rem;
    }

    .nav-link:hover,
    .nav-link.active {
        background-color: transparent;
        color: var(--accent-gold);
    }

    .hamburger span {
        width: 25px;
        height: 3px;
        background-color: var(--accent-gold);
        transition: all 0.3s ease;
    }

    .nav-menu.active .hamburger span:nth-child(1) {
        transform: rotate(45deg) translate(10px, 10px);
    }

    .nav-menu.active .hamburger span:nth-child(2) {
        opacity: 0;
    }

    .nav-menu.active .hamburger span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-info-simple {
        flex-direction: column;
        gap: 1.5rem;
    }

    .contact-item {
        max-width: 100%;
    }

    .music-grid,
    .video-grid {
        grid-template-columns: 1fr;
    }

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

    .show-card {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .about h2,
    .page-header h1 {
        font-size: 1.5rem;
    }
}
