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

body {
    font-family: 'Special Elite', 'Courier New', monospace;
    line-height: 1.6;
    background-color: #ffffff;
    background-image: 
        url('white-marble-texture-with-natural-pattern-background-design-art-work-high-resolution.jpg'),
        radial-gradient(circle at 20% 80%, rgba(0,0,0,0.03) 1px, transparent 1px),
        radial-gradient(circle at 80% 20%, rgba(0,0,0,0.02) 1px, transparent 1px),
        radial-gradient(circle at 40% 40%, rgba(0,0,0,0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.005) 1px, transparent 1px),
        linear-gradient(180deg, rgba(0,0,0,0.005) 1px, transparent 1px);
    background-size: contain, 200px 200px, 300px 300px, 150px 150px, 50px 50px, 50px 50px;
    background-position: center, 0 0, 50px 50px, 100px 100px, 0 0, 0 0;
    background-repeat: no-repeat, repeat, repeat, repeat, repeat, repeat;
    background-blend-mode: soft-light, normal, normal, normal, normal, normal;
    color: #333;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: transparent;
    backdrop-filter: none;
    border-bottom: none;
    box-shadow: none;
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-left {
    display: flex;
    gap: 40px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
}

.nav-link.text-link {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 8px 0;
}

.nav-link.text-link:hover {
    color: #000;
    transform: translateY(-2px);
}

.nav-link.text-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #333;
    transition: width 0.3s ease;
}

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

.nav-link:hover {
    color: #000;
    opacity: 0.7;
}

.nav-link.active {
    color: #000;
    font-weight: 700;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #000;
}

/* Events logo styling */
.events-logo {
    height: 32px;
    max-width: 110px;
    width: auto;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.nav-link:hover .events-logo {
    opacity: 0.7;
}

/* Contact logo styling */
.contact-logo {
    height: 32px;
    max-width: 110px;
    width: auto;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.nav-link:hover .contact-logo {
    opacity: 0.7;
}

/* Merch logo styling */
.merch-logo {
    height: 32px;
    max-width: 110px;
    width: auto;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.nav-link:hover .merch-logo {
    opacity: 0.7;
}

/* News logo styling */
.news-logo {
    height: 32px;
    max-width: 110px;
    width: auto;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.nav-link:hover .news-logo {
    opacity: 0.7;
}

/* Mini logo for navigation */
.mini-logo {
    display: block;
    transition: opacity 0.3s ease;
}

.mini-logo:hover {
    opacity: 0.7;
}

.mini-logo-image {
    height: 70px;
    width: auto;
    animation: float-subtle 8s ease-in-out infinite;
}

@keyframes float-subtle {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-top: 80px;
}

/* Large logo in center with hover effect */
.hero-logo {
    position: relative;
    cursor: pointer;
    margin-bottom: 40px;
    background: transparent;
    padding: 0;
    border-radius: 0;
    backdrop-filter: none;
    box-shadow: none;
}

.hero-logo-image {
    height: 450px;
    width: auto;
    transition: opacity 0.3s ease;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-30px);
    }
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    background: transparent;
    padding: 0;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.hero-text-logo {
    margin-bottom: 10px;
}

.hero-text-logo-image {
    height: 100px;
    width: auto;
    display: block;
}

.hero-address {
    background: transparent;
    padding: 0;
    border-radius: 0;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.hero-address:hover {
    transform: scale(1.05);
    opacity: 0.8;
}

.hero-address-image {
    height: 140px;
    width: auto;
    display: block;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.8));
}

.hero-logo:hover .hero-logo-image {
    opacity: 0;
}

.hero-logo:hover .hero-overlay {
    opacity: 1;
}

.hero-title {
    font-size: clamp(4rem, 12vw, 10rem);
    font-weight: 900;
    letter-spacing: -5px;
    margin: 0;
    color: #000;
    text-shadow: 2px 2px 0px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 3px;
    margin: 20px 0 15px 0;
    color: #000;
    text-transform: uppercase;
}

.hero-description {
    font-size: 20px;
    font-weight: 400;
    color: #333;
    margin-top: 20px;
    font-style: italic;
}

/* Simple Info Section */
.simple-info {
    padding: 100px 40px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.info-container {
    background: rgba(255, 255, 255, 0.8);
    padding: 60px;
    border: 1px solid #ddd;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.main-text {
    font-size: 20px;
    line-height: 1.8;
    color: #333;
    font-weight: 400;
}

/* Events Page Styles */
.events-hero, .contact-hero {
    height: 30vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 100px;
}

.page-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    letter-spacing: -2px;
    color: #000;
    text-shadow: 1px 1px 0px rgba(0,0,0,0.1);
}

.events-section {
    padding: 40px 40px 120px;
    max-width: 900px;
    margin: 0 auto;
}

.events-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.event-item {
    display: flex;
    padding: 30px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #ddd;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.event-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border-color: #000;
}

.event-date {
    font-size: 14px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 80px;
    padding-right: 30px;
    border-right: 2px solid #ddd;
    margin-right: 30px;
}

.event-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-info p {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* Contact Page Styles */
.contact-section {
    padding: 80px 40px 120px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

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

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-block {
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #ddd;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.contact-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border-color: #000;
}

.contact-block h3 {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-block p {
    color: #666;
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: 500;
}

.contact-notes {
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border: 1px solid #ddd;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-notes h3 {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-notes ul {
    list-style: none;
}

.contact-notes li {
    color: #666;
    font-size: 14px;
    margin-bottom: 8px;
    font-weight: 500;
    position: relative;
    padding-left: 20px;
}

.contact-notes li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #000;
    font-weight: 900;
}

/* Social Icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0 20px 0;
    padding: 0;
}

.social-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    color: #fff;
    border: 2px solid #000;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: #fff;
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.email-copy {
    position: relative;
}

.email-copy svg {
    transition: all 0.3s ease;
}

/* Map Container */
.map-container {
    margin: 20px 0 40px 0;
    border: 2px solid #ddd;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

.map-container iframe {
    display: block;
    width: 100%;
}

/* About Section */
.about-section {
    padding: 80px 40px;
    background-color: #ffffff;
    border-top: 2px solid #000000;
}

.about-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-title {
    font-size: 28px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    color: #000000;
}

.about-text {
    font-size: 16px;
    line-height: 1.8;
    color: #333333;
    text-align: justify;
    font-weight: 400;
}

/* Responsive About Section */
@media (max-width: 768px) {
    .about-section {
        padding: 60px 25px;
    }
    
    .about-title {
        font-size: 24px;
    }
    
    .about-text {
        font-size: 15px;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 50px 20px;
    }
    
    .about-title {
        font-size: 20px;
        letter-spacing: 1.5px;
    }
    
    .about-text {
        font-size: 14px;
        line-height: 1.6;
        text-align: left;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        padding: 12px 15px;
    }
    
    .nav-left {
        gap: 0;
    }
    
    .nav-right {
        gap: 15px;
        display: flex;
        align-items: center;
        flex-wrap: nowrap;
    }
    
    .nav-link {
        font-size: 14px;
        letter-spacing: 1px;
    }
    
    .nav-link.text-link {
        font-size: 12px;
    }
    
    .events-logo, .contact-logo, .merch-logo, .news-logo {
        height: 26px;
        max-width: 85px;
    }
    
    .mini-logo-image {
        height: 50px;
    }
    
    .hero-logo {
        padding: 0;
        border-radius: 0;
    }
    
    .hero-logo-image {
        height: 300px;
    }
    
    .hero-text-logo-image {
        height: 80px;
    }
    
    .hero-address-image {
        height: 120px;
    }
    
    .section-title-image {
        height: 38px;
    }
    
    .simple-info, .events-section, .contact-section {
        padding: 40px 20px;
    }
    
    .info-container {
        padding: 40px 25px;
    }
    
    .main-text {
        font-size: 18px;
    }
    
    .event-item {
        flex-direction: column;
        padding: 25px;
    }
    
    .event-date {
        border-right: none;
        border-bottom: 2px solid #ddd;
        margin-right: 0;
        margin-bottom: 15px;
        padding-bottom: 15px;
        padding-right: 0;
        min-width: auto;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .social-icons {
        gap: 20px;
        padding: 0;
        margin: 30px 0 20px 0;
    }
    
    .social-icon {
        width: 50px;
        height: 50px;
    }
    
    .social-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .map-container iframe {
        height: 350px;
    }
    
    .merch-section, .news-section {
        padding: 60px 20px;
    }
    
    .merch-grid, .news-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .nav {
        padding: 10px 12px;
    }
    
    .nav-left {
        gap: 0;
    }
    
    .nav-right {
        gap: 10px;
        flex-wrap: nowrap;
        justify-content: flex-end;
    }
    
    .nav-link {
        font-size: 12px;
    }
    
    .nav-link.text-link {
        font-size: 10px;
        letter-spacing: 0.5px;
    }
    
    .events-logo, .contact-logo, .merch-logo, .news-logo {
        height: 22px;
        max-width: 70px;
    }
    
    .mini-logo-image {
        height: 40px;
    }
    
    .hero {
        min-height: 80vh;
    }
    
    .hero-logo {
        padding: 0;
        border-radius: 0;
    }
    
    .hero-logo-image {
        height: 240px;
    }
    
    .hero-text-logo-image {
        height: 65px;
    }
    
    .hero-address-image {
        height: 100px;
    }
    
    .hero-subtitle {
        font-size: 12px;
        letter-spacing: 1.5px;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .page-title {
        font-size: 1.8rem;
    }
    
    .main-text {
        font-size: 16px;
    }
    
    .info-container {
        padding: 30px 20px;
    }
    
    .contact-block, .contact-notes {
        padding: 25px 20px;
    }
    
    .contact-block h3 {
        font-size: 14px;
    }
    
    .contact-block p {
        font-size: 13px;
    }
    
    .social-icons {
        gap: 12px;
        padding: 0;
        margin: 25px 0 15px 0;
    }
    
    .social-icon {
        width: 44px;
        height: 44px;
    }
    
    .social-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .map-container {
        margin: 15px 0 30px 0;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .section-title-image {
        height: 32px;
    }
    
    .merch-section, .news-section {
        padding: 50px 15px;
    }
    
    .merch-item, .news-item {
        padding: 20px;
    }
    
    .merch-item h3, .news-item h3 {
        font-size: 16px;
    }
    
    .merch-item p, .news-item p {
        font-size: 13px;
    }
    
    .merch-btn {
        padding: 10px 20px;
        font-size: 12px;
    }
    
    .events-section {
        padding: 30px 15px;
    }
    
    .event-item {
        padding: 20px;
    }
    
    .event-info h3 {
        font-size: 16px;
    }
    
    .event-info p {
        font-size: 13px;
    }
    
    .footer-signup {
        padding: 40px 15px;
    }
    
    .signup-container h3 {
        font-size: 20px;
    }
    
    .signup-container p {
        font-size: 14px;
    }
    
    .signup-form {
        flex-direction: column;
        gap: 12px;
    }
    
    .signup-input {
        width: 100%;
        font-size: 14px;
        padding: 12px 18px;
    }
    
    .signup-btn {
        width: 100%;
        padding: 12px 25px;
        font-size: 13px;
    }
    
    .signup-note {
        font-size: 11px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 0;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* Section Styles */
section {
    padding: 100px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 50px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ff6b6b;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 2px;
    background: #ff6b6b;
}

/* Info Section */
.info-section {
    padding: 120px 40px;
    background: #111;
}

.info-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.tagline {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 40px;
    line-height: 1.3;
    color: #ff6b6b;
}

.description {
    font-size: 17px;
    line-height: 1.8;
    color: #ccc;
}

.info-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    filter: grayscale(30%) contrast(110%);
}

/* Tour/Events Section */
.tour-section {
    padding: 100px 40px;
    background: #0a0a0a;
}

.tour-dates {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 80px;
}

.tour-date {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    text-decoration: none;
    padding: 25px 30px;
    border: 1px solid #333;
    border-radius: 0;
    transition: all 0.3s ease;
    font-weight: 500;
    background: linear-gradient(90deg, transparent 0%, #111 100%);
}

.tour-date:hover {
    border-color: #ff6b6b;
    background: linear-gradient(90deg, #ff6b6b 0%, #ff5252 100%);
    color: #000;
    transform: translateX(10px);
}

.tour-date span {
    font-size: 14px;
    font-weight: 600;
}

.venue-image {
    margin: 80px 0;
    text-align: center;
}

.venue-image img {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 0;
    filter: grayscale(50%) contrast(120%);
}

/* Community Section */
.community-section {
    padding: 120px 40px;
    background: #111;
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
}

.community-item {
    padding: 40px 30px;
    border: 1px solid #333;
    background: #0a0a0a;
    transition: all 0.3s ease;
}

.community-item:hover {
    border-color: #ff6b6b;
    background: #1a1a1a;
}

.community-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ff6b6b;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.community-item p {
    color: #ccc;
    line-height: 1.7;
}

/* Gallery Section */
.gallery-section {
    padding: 100px 40px;
    background: #0a0a0a;
}

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

.gallery-item {
    overflow: hidden;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    filter: grayscale(70%) contrast(110%);
    transition: filter 0.3s ease;
}

.gallery-item:hover img {
    filter: grayscale(20%) contrast(120%);
}

/* Footer */
.footer {
    padding: 100px 40px 60px;
    background: #111;
    border-top: 2px solid #ff6b6b;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    margin-bottom: 80px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.venue-info h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ff6b6b;
    letter-spacing: 2px;
}

.venue-info p {
    color: #ccc;
    margin-bottom: 10px;
    font-size: 16px;
}

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

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-item strong {
    font-weight: 600;
    font-size: 14px;
    color: #ff6b6b;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item span {
    color: #ccc;
    font-size: 14px;
}

.footer-bottom {
    text-align: center;
    padding-top: 50px;
    border-top: 1px solid #333;
}

.footer-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    letter-spacing: -3px;
    color: #333;
    margin-bottom: 10px;
}

.footer-subtitle {
    font-size: 16px;
    color: #666;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        padding: 15px 20px;
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-links {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    section {
        padding: 80px 20px;
    }
    
    .info-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .tour-dates {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .community-grid {
        grid-template-columns: 1fr;
    }

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

    .section-title {
        font-size: 24px;
    }

    .tagline {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .tagline {
        font-size: 20px;
    }

    .tour-date {
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .community-item {
        padding: 30px 20px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 0;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* Additional DIY aesthetic elements */
.section-title::before {
    content: '//';
    color: #666;
    margin-right: 10px;
    font-weight: 400;
}

/* Glitch effect for hero title on hover */
.hero-title:hover {
    animation: glitch 0.5s ease-in-out;
}

@keyframes glitch {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
}

/* New Sections Styles */

/* Merch Section */
.merch-section {
    padding: 100px 40px;
    background-color: transparent;
}

.merch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.merch-item {
    background: transparent;
    border: none;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: none;
}

.merch-item:hover {
    transform: translateY(-5px);
}

.merch-item img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    margin-bottom: 20px;
    border: none;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
}

.merch-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.merch-item p {
    color: #333;
    font-size: 14px;
    margin-bottom: 15px;
}

.merch-price {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
}

.merch-btn {
    background: #333;
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Special Elite', 'Courier New', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.merch-btn:hover {
    background: #000;
    transform: translateY(-2px);
}

/* Playlist Section */
.playlist-section {
    padding: 100px 40px;
    background-color: #ffffff;
}

.playlist-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.playlist-embed {
    width: 100%;
    height: 400px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    margin-bottom: 30px;
}

.playlist-description {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 30px;
}

.playlist-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.playlist-link {
    background: #333;
    color: white;
    text-decoration: none;
    padding: 12px 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid #333;
}

.playlist-link:hover {
    background: white;
    color: #333;
    transform: translateY(-2px);
}

/* News Section */
.news-section {
    padding: 100px 40px;
    background-color: #f8f8f8;
}

.news-container {
    max-width: 1000px;
    margin: 0 auto;
}

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

.news-item {
    background: white;
    border: 2px solid #e0e0e0;
    padding: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.news-item:hover {
    border-color: #333;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.news-date {
    font-size: 12px;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.news-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
    line-height: 1.3;
}

.news-item p {
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
}

.news-link {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.news-link:hover {
    border-bottom-color: #333;
}

/* Section Titles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 20px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-header p {
    font-size: 16px;
    color: #333;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.section-title-image {
    height: 45px;
    width: auto;
    display: inline-block;
    margin: 0 auto;
}

/* Footer Signup */
.footer-signup {
    background: #000000;
    padding: 60px 40px;
    color: white;
}

.signup-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.signup-container h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
}

.signup-container p {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.6;
}

.signup-form {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.signup-input {
    flex: 1;
    min-width: 250px;
    padding: 15px 20px;
    border: 2px solid #ffffff;
    background: #ffffff;
    color: #000000;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
}

.signup-input:focus {
    border-color: #000000;
}

.signup-input::placeholder {
    color: #000000;
}

.signup-btn {
    background: #ffffff;
    color: #000000;
    border: 2px solid #ffffff;
    padding: 15px 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.signup-btn:hover {
    background: #000000;
    color: #ffffff;
}

.signup-note {
    font-size: 12px;
    color: #ffffff;
    font-style: italic;
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
    .merch-grid, .news-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .signup-form {
        flex-direction: column;
        align-items: center;
    }
    
    .signup-input {
        width: 100%;
        max-width: 400px;
    }
    
    .playlist-links {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .merch-section, .playlist-section, .news-section {
        padding: 60px 20px;
    }
    
    .footer-signup {
        padding: 40px 20px;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .merch-item, .news-item {
        padding: 20px;
    }
}

/* Adjust scroll position for fixed header */
section[id] {
    scroll-margin-top: 120px;
}

/* Black and White Theme for Events and Contact Pages */
.events-page, .contact-page {
    background-color: #000000 !important;
    background-image: none !important;
    color: #ffffff;
}

.events-page .nav, .contact-page .nav {
    background: transparent;
    backdrop-filter: none;
    border-bottom: none;
    box-shadow: none;
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
}

.contact-page .nav.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-page .nav.scrolled .nav-link {
    color: #ffffff;
}

.contact-page .nav.scrolled .nav-link:hover {
    color: #ffffff;
    opacity: 0.7;
}

.contact-page .nav.scrolled .events-logo,
.contact-page .nav.scrolled .contact-logo,
.contact-page .nav.scrolled .merch-logo,
.contact-page .nav.scrolled .news-logo,
contact-page .nav.scrolled .mini-logo-image {
    filter: invert(1);
}

.events-page .nav-link, .contact-page .nav-link {
    color: #ffffff;
}

.events-page .nav-link:hover, .contact-page .nav-link:hover {
    color: #ffffff;
    opacity: 0.7;
}

.events-page .nav-link.text-link, .contact-page .nav-link.text-link {
    color: #ffffff;
}

.events-page .nav-link.text-link:hover, .contact-page .nav-link.text-link:hover {
    color: #ffffff;
    opacity: 0.7;
}

.events-page .events-logo, .events-page .contact-logo, .events-page .merch-logo, .events-page .news-logo,
.contact-page .events-logo, .contact-page .contact-logo, .contact-page .merch-logo, .contact-page .news-logo,
.events-page .mini-logo-image, .contact-page .mini-logo-image {
    filter: invert(1);
}

.events-page .page-title, .contact-page .page-title {
    color: #ffffff;
}

.events-page .event-item, .contact-page .contact-block {
    background: #ffffff;
    border: 2px solid #000000;
    color: #000000;
}

.events-page .event-item:hover, .contact-page .contact-block:hover {
    background: #ffffff;
    border-color: #000000;
    transform: translateY(-5px);
}

.events-page .merch-section, .contact-page .merch-section {
    background-color: #ffffff;
}

.events-page .playlist-section, .contact-page .playlist-section {
    background-color: #000000;
}

.events-page .news-section, .contact-page .news-section {
    background-color: #ffffff;
}

.events-page .merch-section .section-header h2, .contact-page .merch-section .section-header h2,
.events-page .news-section .section-header h2, .contact-page .news-section .section-header h2 {
    color: #000000;
}

.events-page .merch-section .section-header p, .contact-page .merch-section .section-header p,
.events-page .news-section .section-header p, .contact-page .news-section .section-header p {
    color: #000000;
}

.events-page .playlist-section .section-header h2, .contact-page .playlist-section .section-header h2 {
    color: #ffffff;
}

.events-page .playlist-section .section-header p, .contact-page .playlist-section .section-header p {
    color: #ffffff;
}

.events-page .merch-item, .contact-page .merch-item,
.events-page .news-item, .contact-page .news-item {
    background: #ffffff;
    border: 2px solid #000000;
    color: #000000;
}

.events-page .merch-item:hover, .contact-page .merch-item:hover,
.events-page .news-item:hover, .contact-page .news-item:hover {
    background: #ffffff;
    border-color: #000000;
    transform: translateY(-5px);
}

.events-page .merch-btn, .contact-page .merch-btn {
    background: #000000;
    color: #ffffff;
    border: 2px solid #000000;
}

.events-page .merch-btn:hover, .contact-page .merch-btn:hover {
    background: #ffffff;
    color: #000000;
    border: 2px solid #000000;
}

.events-page .playlist-description, .contact-page .playlist-description {
    color: #ffffff;
}

.events-page .playlist-link, .contact-page .playlist-link {
    background: #ffffff;
    color: #000000;
    border: 2px solid #ffffff;
}

.events-page .playlist-link:hover, .contact-page .playlist-link:hover {
    background: #000000;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.events-page .footer-signup, .contact-page .footer-signup {
    background: #000000;
    border-top: 2px solid #ffffff;
}

.events-page .footer-signup h3, .contact-page .footer-signup h3 {
    color: #ffffff;
}

.events-page .footer-signup p, .contact-page .footer-signup p {
    color: #ffffff;
}

.events-page .signup-input, .contact-page .signup-input {
    background: #ffffff;
    color: #000000;
    border: 2px solid #ffffff;
}

.events-page .signup-input:focus, .contact-page .signup-input:focus {
    border-color: #ffffff;
}

.events-page .signup-input::placeholder, .contact-page .signup-input::placeholder {
    color: #000000;
}

.events-page .signup-btn, .contact-page .signup-btn {
    background: #ffffff;
    color: #000000;
    border: 2px solid #ffffff;
}

.events-page .signup-btn:hover, .contact-page .signup-btn:hover {
    background: #000000;
    color: #ffffff;
    border: 2px solid #ffffff;
}

/* Popup Overlay */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    cursor: pointer;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.popup-content {
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: popupFadeIn 0.5s ease-out;
}

.popup-image {
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
}

@keyframes popupFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Popup */
@media (max-width: 768px) {
    .popup-content {
        max-width: 95%;
    }
    
    .popup-image {
        max-height: 85vh;
    }
}

@media (max-width: 480px) {
    .popup-content {
        max-width: 98%;
    }
    
    .popup-image {
        max-height: 80vh;
    }
}
