/* 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('../images/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;
    margin: 0;
}

.site {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.site-content {
    flex: 1 0 auto;
}

.footer-signup {
    flex-shrink: 0;
}


/* 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: 0;
    background: transparent;
    padding: 0;
    border-radius: 0;
    backdrop-filter: none;
    box-shadow: none;
}

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

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

.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;
}

/* Scroll hint arrow */
.hero-scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounceDown 2s ease-in-out infinite;
}

.hero-scroll-hint span {
    font-size: 28px;
    color: #000;
    opacity: 0.4;
    display: block;
}

@keyframes bounceDown {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.4; }
    50% { transform: translateX(-50%) translateY(12px); opacity: 0.8; }
}

.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;
}

/* ========================================
   HOME — Quick Nav Strip (PNG image links)
   ======================================== */
.home-nav-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    padding: 50px 40px;
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
    background: #fff;
    max-width: 100%;
    margin: 0;
}

.strip-link {
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.strip-link:hover {
    transform: translateY(-6px) scale(1.05);
    opacity: 0.75;
}

.strip-img {
    height: 42px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(1px 1px 2px rgba(0,0,0,0.15));
}

/* ========================================
   HOME — About (editorial style)
   ======================================== */
.home-about {
    padding: 100px 40px;
    background: #000;
    color: #fff;
    max-width: 100%;
    margin: 0;
}

.home-about-inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.home-about-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 25px;
}

.home-about-divider {
    width: 50px;
    height: 2px;
    background: #fff;
    margin: 0 auto 35px;
}

.home-about-text {
    font-size: 17px;
    line-height: 2;
    color: #ccc;
    text-align: justify;
    font-weight: 400;
}

/* ========================================
   HOME — Events section
   ======================================== */
.home-events {
    padding: 80px 40px 100px;
    max-width: 900px;
    margin: 0 auto;
}

.home-events-header {
    text-align: center;
    margin-bottom: 50px;
}

.home-events-sub {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888;
    margin-top: 12px;
}

/* ========================================
   HOME — Location CTA
   ======================================== */
.home-location {
    padding: 60px 40px;
    text-align: center;
    border-top: 2px solid #000;
    background: #000;
    max-width: 100%;
    margin: 0;
}

.home-location-link {
    display: inline-block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.home-location-link:hover {
    transform: scale(1.05);
    opacity: 0.8;
}

.home-location-img {
    height: 120px;
    width: auto;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.5));
}

/* Simple Info Section (legacy) */
.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;
}

/* About Section (kept for other pages) */
.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;
}

/* 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;
    position: relative;
    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);
    cursor: pointer;
}

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

.event-item.expanded {
    transform: translateX(0);
}

.event-expand-icon {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 24px;
    font-weight: 700;
    color: #000;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.event-item:hover .event-expand-icon {
    transform: scale(1.2);
}

.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;
}

.event-basic-info {
    margin-bottom: 15px;
}

.event-details {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.event-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 30px;
    background: #000;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
    border: 2px solid #000;
    transition: all 0.3s ease;
}

.event-btn:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* 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%;
}

/* Responsive — Homepage new sections */
@media (max-width: 768px) {
    .home-nav-strip {
        gap: 30px;
        padding: 35px 20px;
    }
    .strip-img {
        height: 32px;
    }
    .home-about {
        padding: 70px 25px;
    }
    .home-about-text {
        font-size: 15px;
        line-height: 1.8;
    }
    .home-events {
        padding: 60px 20px 80px;
    }
    .home-location-img {
        height: 90px;
    }
    .about-section {
        padding: 60px 25px;
    }
    .about-title {
        font-size: 24px;
    }
    .about-text {
        font-size: 15px;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .home-nav-strip {
        gap: 20px;
        padding: 28px 15px;
    }
    .strip-img {
        height: 26px;
    }
    .home-about {
        padding: 50px 20px;
    }
    .home-about-title {
        font-size: 12px;
        letter-spacing: 4px;
    }
    .home-about-text {
        font-size: 14px;
        line-height: 1.7;
        text-align: left;
    }
    .home-events {
        padding: 40px 15px 60px;
    }
    .home-location {
        padding: 40px 20px;
    }
    .home-location-img {
        height: 70px;
    }
    .hero-scroll-hint {
        bottom: 25px;
    }
    .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;
    }
}

/* Event Buttons container */
.event-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 10px;
}

/* Hamburger Menu Toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #000;
    margin: 5px 0;
    transition: all 0.3s ease;
}

.events-page .nav-toggle span,
.contact-page .nav-toggle span {
    background: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        padding: 10px 20px;
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        justify-content: space-between !important;
        align-items: center !important;
        background: rgba(255, 255, 255, 0.98);
        border-bottom: 1px solid rgba(0,0,0,0.1);
        z-index: 1000;
        height: 70px;
    }
    
    .nav-left {
        flex: 0 0 auto !important;
        display: flex !important;
        align-items: center !important;
        margin: 0 !important;
    }
    
    .mini-logo-image {
        height: 50px !important;
        width: auto;
    }
    
    .nav-toggle {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-end !important;
        justify-content: center !important;
        flex: 0 0 auto !important;
        padding: 5px !important;
        margin: 0 !important;
        gap: 4px !important;
        width: auto !important;
        background: none !important;
        border: none !important;
    }
    
    .nav-toggle span {
        width: 25px !important;
        height: 2px !important;
        margin: 0 !important;
    }
    
    .nav-right {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 25px;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        background: rgba(0, 0, 0, 0.95);
        transition: max-height 0.4s ease, padding 0.4s ease;
        z-index: 1000;
        box-shadow: 0 10px 20px rgba(0,0,0,0.5);
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    
    .nav-right.open {
        max-height: 400px;
        padding: 30px 0;
    }
    
    .nav-right .nav-link.text-link {
        color: #fff;
        font-size: 16px;
        letter-spacing: 2px;
    }
    
    .nav-right .nav-link.text-link:hover {
        color: #fff;
        opacity: 0.7;
    }
    
    .nav-right .nav-link.text-link::after {
        background: #fff;
    }
    
    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 999;
    }
    
    .nav-overlay.open {
        display: block;
    }
    
    .mini-logo-image {
        height: 50px;
    }
    
    .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;
    }
    
    .event-item {
        flex-direction: column;
        padding: 25px;
        padding-right: 50px;
    }
    
    .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;
    }

    .event-expand-icon {
        top: 25px;
        right: 20px;
    }

    .event-btn {
        padding: 10px 20px;
        font-size: 11px;
    }
    
    .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;
    }
    
    .events-hero, .contact-hero {
        height: auto;
        padding-top: 100px;
        padding-bottom: 40px;
    }
    
    .events-footer-links {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .nav {
        height: 60px;
        padding: 5px 15px;
    }
    
    .mini-logo-image {
        height: 35px !important;
    }
    
    .nav-link {
        font-size: 11px;
    }
    
    .nav-link.text-link {
        font-size: 9px;
        letter-spacing: 0.5px;
    }
    
    .events-logo, .contact-logo, .merch-logo, .news-logo {
        height: 20px;
        max-width: 60px;
    }
    
    .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) {
    /* Removed conflicting nav styles */
    
    .nav-links {
        display: none;
    }
    
    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(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.popup-card {
    position: relative;
    background: #fff;
    border: 3px solid #000;
    padding: 15px;
    max-width: 380px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    animation: popupSlideIn 0.4s ease-out;
}

.popup-close {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 34px;
    height: 34px;
    background: #000;
    color: #fff;
    border: 2px solid #000;
    font-size: 22px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: all 0.2s ease;
    z-index: 10;
    padding: 0;
}

.popup-close:hover {
    background: #fff;
    color: #000;
    transform: scale(1.1);
}

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

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: scale(0.85) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Responsive Popup */
@media (max-width: 768px) {
    .popup-card {
        max-width: 320px;
    }
}

@media (max-width: 480px) {
    .popup-card {
        max-width: 280px;
        padding: 12px;
    }
    .popup-close {
        top: -14px;
        right: -14px;
        width: 30px;
        height: 30px;
        font-size: 18px;
    }
}

/* Floating Events Button */
.floating-events-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    cursor: pointer;
    transition: transform 0.3s ease;
    text-decoration: none;
    display: block;
}

.floating-events-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    animation: floatingPulse 2s ease-in-out infinite, floatingRotate 3s ease-in-out infinite;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

.floating-events-btn:hover .floating-events-img {
    transform: scale(1.1);
    animation-play-state: paused;
}

/* Floating animations */
@keyframes floatingPulse {
    0%, 100% {
        transform: scale(1) translateY(0);
    }
    50% {
        transform: scale(1.05) translateY(-5px);
    }
}

@keyframes floatingRotate {
    0%, 100% {
        transform: rotate(-3deg);
    }
    50% {
        transform: rotate(3deg);
    }
}

/* Responsive floating button */
@media (max-width: 768px) {
    .floating-events-btn {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-events-img {
        width: 90px;
        height: 90px;
    }
}

@media (max-width: 480px) {
    .floating-events-btn {
        bottom: 15px;
        right: 15px;
    }
    
    .floating-events-img {
        width: 70px;
        height: 70px;
    }
}

/* News Section Styling */
.news-section {
    padding: 60px 20px 120px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.news-card {
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: #000;
}

.news-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-bottom: 1px solid #eee;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.news-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.news-date {
    font-size: 12px;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.news-card-title {
    font-size: 20px;
    font-weight: 800;
    color: #000;
    margin-bottom: 15px;
    line-height: 1.3;
}

.news-excerpt {
    font-size: 14px;
    color: #444;
    margin-bottom: 20px;
    line-height: 1.6;
    flex: 1;
}

.news-read-more {
    font-size: 12px;
    font-weight: 800;
    color: #000;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    padding-bottom: 2px;
    border-bottom: 2px solid #000;
    align-self: flex-start;
    transition: all 0.3s ease;
}

.news-read-more:hover {
    color: #888;
    border-bottom-color: #888;
}

.pagination {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.pagination .page-numbers {
    display: inline-block;
    padding: 10px 15px;
    background: #fff;
    border: 1px solid #ddd;
    color: #000;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background: #000;
    color: #fff;
    border-color: #000;
}

.no-news, .no-events {
    text-align: center;
    grid-column: 1 / -1;
    font-size: 18px;
    font-style: italic;
    color: #666;
    padding: 40px;
}

/* Events Footer Links */
.events-footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.event-btn-outline {
    background: transparent !important;
    color: #000 !important;
    border: 2px solid #000 !important;
}

.event-btn-outline:hover {
    background: #000 !important;
    color: #fff !important;
}

.events-page .event-btn-outline {
    color: #fff !important;
    border-color: #fff !important;
    background: transparent !important;
}

.events-page .event-btn-outline:hover {
    background: #fff !important;
    color: #000 !important;
}

/* Signup Popup Modal (inner pages) */
.signup-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.signup-modal {
    position: relative;
    background: #000;
    border: 3px solid #fff;
    padding: 50px 40px 40px;
    max-width: 440px;
    width: 90%;
    text-align: center;
    color: #fff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: popupSlideIn 0.4s ease-out;
}

.signup-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 30px;
    height: 30px;
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: all 0.2s ease;
    padding: 0;
}

.signup-modal-close:hover {
    background: #fff;
    color: #000;
}

.signup-modal h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.signup-modal p {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 25px;
    line-height: 1.5;
}

.signup-modal .signup-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 15px;
}

.signup-modal .signup-input {
    width: 100%;
    min-width: auto;
    padding: 14px 18px;
    border: 2px solid #fff;
    background: #fff;
    color: #000;
    font-size: 14px;
    font-family: 'Special Elite', 'Courier New', monospace;
}

.signup-modal .signup-btn {
    width: 100%;
    padding: 14px;
    background: #fff;
    color: #000;
    border: 2px solid #fff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    font-family: 'Special Elite', 'Courier New', monospace;
    transition: all 0.3s ease;
}

.signup-modal .signup-btn:hover {
    background: transparent;
    color: #fff;
}

.signup-modal .signup-note {
    font-size: 11px;
    color: #888;
    font-style: italic;
    margin-top: 5px;
}

.signup-modal #modal-thank-you {
    display: none;
}

.signup-modal #modal-thank-you h3 {
    margin-bottom: 10px;
}

.signup-modal #modal-thank-you p {
    color: #fff;
}

/* 404 Error Page */
.error-404-page {
    padding-top: 100px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.error-content {
    max-width: 600px;
    padding: 40px 20px;
}

.error-mascot img {
    height: 180px;
    width: auto;
    animation: float 6s ease-in-out infinite;
    margin-bottom: 20px;
}

.error-title {
    font-size: 100px;
    font-weight: 900;
    margin: 0;
    line-height: 1;
    letter-spacing: -5px;
}

.error-message {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 10px;
}

.error-sub {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.error-actions .btn-primary {
    display: inline-block;
    padding: 15px 30px;
    background: #000;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border: 2px solid #000;
}

.error-actions .btn-primary:hover {
    background: transparent;
    color: #000;
}

@media (max-width: 768px) {
    .error-title {
        font-size: 70px;
    }
    .error-message {
        font-size: 18px;
    }
    .error-mascot img {
        height: 140px;
    }
}


@media (max-width: 480px) {
    .signup-modal {
        padding: 40px 25px 30px;
        max-width: 320px;
    }
    .signup-modal h3 {
        font-size: 18px;
    }
}
