:root {
    --primary-color: #eeff00;
    --accent-color: #ff3e6c;
    --text-color: #f5f5dc;
    --bg-dark: #1e1e1e;
    --cta-orange: #ff4500;
    --shadow-color: rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background: linear-gradient(to bottom, #3b0764, #9d174d, #ea580c);
    background-attachment: fixed;
    background-size: cover;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 8px 8px;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    color: var(--text-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body::before, body::after {
    display: none;
}

html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

main {
    width: 100%;
    display: block;
    position: relative;
    overflow: visible; /* Prevent clipping */
    z-index: 2;
    background: #9d174d; /* Deep pink from body gradient to fill gaps */
}

header, footer {
    position: relative;
    z-index: 2;
}

header {
    position: sticky;
    top: 0;
    background: rgba(59, 7, 100, 0.8);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    z-index: 1000;
}



.logo {
    position: absolute;
    left: 70%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    max-width: 180px;
}

.logo img {
    max-width: 150%;
    height: auto;
}

.date-text {
    color: var(--text-color);
    font-size: 0.9rem;
    margin-right: 2rem;
    margin-left: 1rem;
}

nav {
    box-sizing: border-box;
}

nav ul {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
    justify-content: center;
    gap: 1rem;
}

nav ul li {
    margin: 0;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    white-space: nowrap;
    padding: 0.5rem 0.8rem;
    font-size: 1rem;
}

nav ul li a:visited,
nav ul li a:hover {
    color: #fff;
}

.hero {
    width: 100vw;
    height: 100vh;
    background: url('assets/page1.png') top center/100% auto no-repeat;
    display: block;
    position: relative;
    filter: brightness(1.2) saturate(1.1);
    overflow: visible;
    z-index: 5;
    margin: 0;
    padding: 0;
    left: 0;
    right: 0;
    box-sizing: border-box;
    line-height: 1;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 26, 0.3);
    z-index: 0;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 1;
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    line-height: 1;
}

.hero h1 {
    font-family: 'Permanent Marker', cursive;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--primary-color);
    margin: 0;
    padding: 0;
    animation: pulse 2s infinite;
    letter-spacing: 1px;
    line-height: 1;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--cta-orange);
    color: #1a1a1a;
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 700;
    text-decoration: none;
    border-radius: 5px;
    border: none;
    transition: var(--transition);
    margin: 0;
    line-height: 1;
}

.stage-cta-link {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: var(--cta-orange);
    color: #1a1a1a;
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 5px;
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    transition: background 0.3s ease, transform 0.2s ease;
}

.stage-cta-link:hover {
    background: #e07b00;
    transform: scale(1.05);
}

.stage-cta-link:visited {
    color: #1a1a1a;
}

.poster-page2 {
    width: 100%;
    margin: 20px auto;
    margin-bottom: 0px;
    display: block;
    position: relative;
    z-index: 5;
}

.poster-page2 > div {
    width: 100%;
    height: 0;
    padding-bottom: 141.43%;
    background: url('assets/page2.png') top center/100% auto no-repeat;
}

.tickets-section {
    width: 100%;
    margin: 0px;
    padding: 20px;
    background: linear-gradient(to top, var(--accent-color), #ff00e6d1);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    z-index: 10;
    box-sizing: border-box;
}

.tickets-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
}

.section-title {
    font-family: 'Permanent Marker', cursive;
    font-size: clamp(2rem, 5vw, 3rem);
    margin: 0px;
    text-align: center;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.ticket-card-link {
    text-decoration: none;
    display: block;
    width: fit-content;
    margin: 0 auto;
}

.ticket-card {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 8px var(--shadow-color);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 300px;
    width: 100%;
    transition: var(--transition);
    cursor: pointer;
}

.ticket-card-link:hover .ticket-card {
    transform: translateY(-5px);
    background: rgba(0, 0, 0, 0.5);
}

.ticket-icon {
    font-size: 50px;
    margin-bottom: 20px;
    color: #333;
}

.ticket-title {
    font-family: 'Georgia';
    font-size: 24px;
    margin-bottom: 15px;
    color: white;
    line-height: 1.5;
    letter-spacing: 1px;
}

.ticket-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: #eee;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.eventbrite-widget-wrapper {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
}

.barn-image-link {
    text-decoration: none;
    display: block;
    text-align: center;
}

.tickets-section img {
    width: 70vw;
    max-width: 1000px;
    min-width: 600px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.ticket-info {
    background: none;
    border: none;
    box-shadow: none;
    padding: 0;
    border-radius: 0;
}

.activities-section,
.partners-section,
.sponsors-section,
.faq-section,
.about-section,
.contact-section {
    padding: 20px;
    min-height: auto;
    margin: 0;
    position: relative;
    backdrop-filter: brightness(1.15) saturate(1.3);
    z-index: 20;
    pointer-events: auto;
}

.activities-section {
    background: linear-gradient(to bottom, #7b2cbf, #ff8787);
    margin-bottom: 0px;
}

.partners-section {
    background: linear-gradient(to bottom, #ff8787, #ff4500);
    margin-bottom: -0px;
}

.sponsors-section {
    background: linear-gradient(to top, #ff8787, #ff4500);
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 0;
    filter: brightness(1.2);
}

.partners-grid,
.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 240px));
    gap: 15px;
    justify-content: center;
    align-content: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
    filter: brightness(1.2);
}

.activity-card,
.partners-card,
.sponsors-card {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 4px 8px var(--shadow-color);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(231, 95, 11, 0.585);
}

.activity-card:hover,
.partners-card:hover,
.sponsors-card:hover {
    transform: translateY(-5px);
    background: rgba(0, 0, 0, 0.5);
}

.activity-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.activity-title {
    font-family: 'Georgia';
    font-size: 24px;
    margin-bottom: 15px;
    color: white;
    line-height: 1.5;
    letter-spacing: 1px;
}

.activity-desc {
    color: #eee;
    font-size: 15px;
    line-height: 1.5;
}

.partners-card,
.sponsors-card {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 240px;
    height: 120px;
    padding: 0;
}

.partners-card img,
.sponsors-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.partners-card:hover img,
.sponsors-card:hover img {
    filter: grayscale(0%);
    transform: scale(0.95);
}

.partners-grid .partners-card:nth-child(-n+12),
.sponsors-grid .sponsors-card:nth-child(-n+3) {
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: none;
}

.partners-grid .partners-card:nth-child(-n+8) img,
.sponsors-grid .sponsors-card:nth-child(-n+3) img {
    filter: grayscale(0%);
}

.partners-grid .partners-card:nth-child(-n+8):hover,
.sponsors-grid .sponsors-card:nth-child(-n+3):hover {
    background: #000;
    transform: translateY(-5px);
}

.partners-grid .partners-card:nth-child(-n+8):hover img,
.sponsors-grid .sponsors-card:nth-child(-n+3):hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.faq-section {
    background: linear-gradient(to bottom, #ff8787, #7b2cbf);
}

.faq-section * {
    pointer-events: auto;
}

.faq-item {
    cursor: pointer;
    margin-bottom: 10px;
    position: relative;
    z-index: 21;
}

.faq-item a,
.faq-item button {
    z-index: 22;
    position: relative;
    pointer-events: auto;
    cursor: pointer;
}

.about-section {
    background: linear-gradient(to bottom, #ff8787, #ff4500);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    position: relative;
    z-index: 21;
}

.social-links a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.5rem;
    z-index: 22;
    position: relative;
    pointer-events: auto;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-color);
}

.social-link {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 20px;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    z-index: 22;
    pointer-events: auto;
}

.social-link:hover, .social-link:focus {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.social-link img {
    width: 20px;
    height: 20px;
}

.contact-section {
    background: linear-gradient(to bottom, var(--bg-dark), #000);
    text-align: center;
    padding: 20px;
    z-index: 20;
}

.contact-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 700;
    z-index: 21;
    pointer-events: auto;
}

.contact-link:hover, .contact-link:focus {
    color: var(--cta-orange);
}

footer {
    padding: 40px 20px;
    background: #000;
    text-align: center;
    color: #666;
    z-index: 20;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    margin: 0 10px;
    font-size: 14px;
    transition: var(--transition);
    z-index: 21;
    pointer-events: auto;
}

.footer-links a:hover, .footer-links a:focus {
    color: var(--primary-color);
}





@media (max-width: 768px) {
    /* Header and Navigation */
    header {
        padding: 0.2rem;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    .logo {
        display: none;
    }
    .date-text {
        font-size: 0.8rem;
        margin: 0;
        text-align: center;
        color: #fff;
    }
    nav {
        max-width: 100%;
        width: 100%;
    }
    nav ul {
        gap: 0.3rem;
        max-width: 100%;
        width: 100%;
        justify-content: center;
    }
    nav ul li a {
        font-size: 0.8rem;
        padding: 0.2rem 0.3rem;
        color: #fff;
    }
    nav ul li a:visited,
    nav ul li a:hover {
        color: #fff;
    }
    .stage-cta-link {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    /* Hero Section */
    .hero {
        height: 0;
        padding-bottom: 50%;
        margin: 0;
        background: url('assets/page1.png') top center/100% auto no-repeat;
        background-size: 100% auto;
        background-position: top center;
        width: 100vw;
        width: -webkit-fill-available;
        position: relative;
        overflow: visible;
        display: block;
        box-sizing: border-box;
        line-height: 1;
    }
    .hero-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        margin: 0;
        padding: 0;
        width: 100%;
        box-sizing: border-box;
        line-height: 1;
    }
    .hero h1 {
        margin: 0;
        padding: 0;
        font-size: clamp(1.5rem, 4vw, 2rem);
        animation: none;
        line-height: 1;
    }
    .cta-button {
        margin: 0;
        padding: 0.8rem 1.5rem;
        line-height: 1;
    }

    /* Poster and Tickets Sections */
    .poster-page2 {
        width: 100vw;
        margin: 10px 0 0; /* 10px gap above, 0 below */
        display: block;
        position: relative;
        z-index: 5;
    }
    .poster-page2 > div {
        width: 100%;
        height: 0;
        padding-bottom: 141.43%;
        background: url('assets/page2.png') top center/100% auto no-repeat;
    }
    .tickets-section {
        width: 100vw;
        margin: 0;
        padding: 15px;
        min-height: 100vh;
    }
    .tickets-section img {
        min-width: 300px;
    }

    /* Grid Sections */
    .activities-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .partners-grid,
    .sponsors-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 200px));
        gap: 20px;
        padding: 0 15px;
    }
    .partners-card,
    .sponsors-card {
        max-width: 200px;
        height: 100px;
        padding: 15px;
    }

    /* Content Sections */
    .activities-section {
        background: linear-gradient(to bottom, #7b2cbf, #ff8787);
        margin: 0;
        margin-top: -1px;
        min-height: auto;
        backdrop-filter: brightness(1.15) saturate(1.3);
        z-index: 20;
        pointer-events: auto;
    }
    .partners-section {
        background: linear-gradient(to bottom, #ff8787, #ff4500);
        margin: 0;
        margin-top: -1px;
        min-height: auto;
        backdrop-filter: brightness(1.15) saturate(1.3);
        z-index: 20;
        pointer-events: auto;
    }
    .sponsors-section {
        background: linear-gradient(to top, #ff8787, #ff4500);
        margin: 0;
        margin-top: -1px;
        min-height: auto;
        backdrop-filter: brightness(1.15) saturate(1.3);
        z-index: 20;
        pointer-events: auto;
    }
    .faq-section {
        background: linear-gradient(to bottom, #ff8787, #7b2cbf);
        padding: 15px;
        margin: 0;
        margin-top: -1px;
        min-height: auto;
        backdrop-filter: brightness(1.15) saturate(1.3);
        z-index: 20;
        pointer-events: auto;
    }
    .about-section {
        background: linear-gradient(to bottom, #ff8787, #ff4500);
        padding: 15px;
        margin: 0;
        margin-top: -1px;
        min-height: auto;
        backdrop-filter: brightness(1.15) saturate(1.3);
        z-index: 20;
        pointer-events: auto;
    }
    .contact-section {
        background: linear-gradient(to bottom, var(--bg-dark), #000);
        padding: 15px;
        margin: 0;
        margin-top: -1px;
        min-height: auto;
        backdrop-filter: brightness(1.15) saturate(1.3);
        z-index: 20;
        pointer-events: auto;
    }

    /* Social Links */
    .social-links a {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    /* Header and Navigation */
    .date-text {
        font-size: 0.7rem;
        color: #fff;
    }
    nav ul {
        gap: 0.2rem;
        max-width: 100%;
        width: 100%;
    }
    nav ul li a {
        font-size: 0.7rem;
        padding: 0.15rem 0.25rem;
        color: #fff;
    }
    nav ul li a:visited,
    nav ul li a:hover {
        color: #fff;
    }
    .stage-cta-link {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
    }

    /* Tickets Section */
    .ticket-card {
        max-width: 250px;
    }

    /* Poster and Tickets Sections */
    .poster-page2 {
        width: 100vw;
        margin: 10px 0 0;
        display: block;
        position: relative;
        z-index: 5;
    }
    .poster-page2 > div {
        width: 100%;
        height: 0;
        padding-bottom: 141.43%;
        background: url('assets/page2.png') top center/100% auto no-repeat;
    }
    .tickets-section {
        width: 100vw;
        margin: 0;
        min-height: 100vh;
    }

    /* Content Sections */
    .activities-section {
        background: linear-gradient(to bottom, #7b2cbf, #ff8787);
        padding: 15px;
        margin: 0;
        margin-top: -1px;
        min-height: auto;
        backdrop-filter: brightness(1.15) saturate(1.3);
        z-index: 20;
        pointer-events: auto;
    }
    .partners-section {
        background: linear-gradient(to bottom, #ff8787, #ff4500);
        margin: 0;
        margin-top: -1px;
        min-height: auto;
        backdrop-filter: brightness(1.15) saturate(1.3);
        z-index: 20;
        pointer-events: auto;
    }
    .sponsors-section {
        background: linear-gradient(to top, #ff8787, #ff4500);
        margin: 0;
        margin-top: -1px;
        min-height: auto;
        backdrop-filter: brightness(1.15) saturate(1.3);
        z-index: 20;
        pointer-events: auto;
    }
    .faq-section {
        background: linear-gradient(to bottom, #ff8787, #7b2cbf);
        margin: 0;
        margin-top: -1px;
        min-height: auto;
        backdrop-filter: brightness(1.15) saturate(1.3);
        z-index: 20;
        pointer-events: auto;
    }
    .about-section {
        background: linear-gradient(to bottom, #ff8787, #ff4500);
        padding: 15px;
        margin: 0;
        margin-top: -1px;
        min-height: auto;
        backdrop-filter: brightness(1.15) saturate(1.3);
        z-index: 20;
        pointer-events: auto;
    }
    .contact-section {
        background: linear-gradient(to bottom, var(--bg-dark), #000);
        padding: 15px;
        margin: 0;
        margin-top: -1px;
        min-height: auto;
        backdrop-filter: brightness(1.15) saturate(1.3);
        z-index: 20;
        pointer-events: auto;
    }
}
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}