/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    color: #303030;
    background-color: #f2f0ea;
    padding-top: 140px; /* Account for fixed header with larger logo */
}

/* Header and Navigation */
header {
    background-color: rgba(242, 240, 234, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 120px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.desktop-nav {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.mobile-nav {
    display: none;
    list-style: none;
    position: fixed;
    top: 140px;
    left: 0;
    right: 0;
    background: rgba(242, 240, 234, 0.98);
    backdrop-filter: blur(10px);
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 999;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.mobile-nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-nav.active {
    transform: translateY(0);
}

.mobile-nav li {
    margin-bottom: 1.5rem;
    text-align: center;
}

.mobile-nav a {
    font-size: 1.2rem;
    font-weight: 600;
    color: #303030;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    padding: 0.5rem 0;
}

.mobile-nav a:hover {
    color: #bc3b25;
}

.hamburger-menu {
    display: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1000;
}

.hamburger-icon {
    width: 30px;
    height: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger-icon span {
    display: block;
    width: 100%;
    height: 3px;
    background: #303030;
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

nav a {
    text-decoration: none;
    color: #303030;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

nav a:hover {
    color: #bc3b25;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #bc3b25;
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, #9bc1af 0%, #bc3b25 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 2rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero h1 {
    font-size: 5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
    line-height: 1.1;
    position: relative;
    z-index: 2;
}

.hero .date {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.hero .location {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    opacity: 0.8;
    position: relative;
    z-index: 2;
}

/* Sections */
section {
    padding: 8rem 2rem;
}

section h2 {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 4rem;
    color: #303030;
    letter-spacing: -1px;
    line-height: 1.2;
}

/* About Section */
.about {
    background: linear-gradient(135deg, #f2f0ea 0%, #e8e6e0 100%);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 20px;
    padding: 6rem 4rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.about p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #303030;
    max-width: 700px;
    margin: 0 auto;
}

/* Schedule Section */
.schedule {
    background: white;
    position: relative;
}

.schedule::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #bc3b25, transparent);
}

.schedule-container {
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 3rem;
}

.schedule-day {
    background: linear-gradient(135deg, #f2f0ea 0%, #e8e6e0 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.schedule-day:hover {
    transform: translateY(-5px);
}

.events-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.schedule-day h3 {
    color: #bc3b25;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    border-bottom: 2px solid #bc3b25;
    padding-bottom: 0.5rem;
}

.event {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.event:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.event:last-child {
    margin-bottom: 0;
}

.event-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.event-image:hover {
    transform: scale(1.02);
}

.event h4 {
    color: #303030;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.event .time {
    color: #bc3b25;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
}

.event .venue {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.event-link {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: linear-gradient(135deg, #bc3b25 0%, #a0331f 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(188, 59, 37, 0.3);
}

.event-link:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(188, 59, 37, 0.4);
}

.schedule-cta {
    text-align: center;
    background: linear-gradient(135deg, #f2f0ea 0%, #e8e6e0 100%);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
    max-width: 800px;
    margin: 0 auto;
}

.schedule-cta p {
    font-size: 1.2rem;
    color: #303030;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.coming-soon {
    font-size: 1.4rem;
    color: #6c757d;
    text-align: center;
    font-weight: 500;
    background: linear-gradient(135deg, #f2f0ea 0%, #e8e6e0 100%);
    padding: 3rem;
    border-radius: 15px;
    border: 2px dashed #dee2e6;
    max-width: 600px;
    margin: 0 auto;
}

/* Festival Pass Section */
.festival-pass {
    background: linear-gradient(135deg, #9bc1af 0%, #bc3b25 100%);
    position: relative;
    color: white;
}

.festival-pass::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.festival-pass h2 {
    color: white;
    position: relative;
    z-index: 2;
}

.festival-pass-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.pass-hero {
    text-align: center;
    position: relative;
}

.pass-badge {
    position: absolute;
    top: -20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    z-index: 10;
}

.pass-hero h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
    letter-spacing: -1px;
}

.pass-price {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.pass-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.pass-features {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.pass-features h4 {
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.pass-benefits {
    list-style: none;
    margin-bottom: 2rem;
    padding: 0;
}

.pass-benefits li {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    padding-left: 0;
}

.pass-note {
    background: rgba(255, 255, 255, 0.15);
    border-left: 4px solid rgba(255, 255, 255, 0.5);
    padding: 1rem 1.5rem;
    border-radius: 5px;
    margin-bottom: 2rem;
}

.pass-note p {
    color: white;
    font-size: 1rem;
    margin: 0;
    font-style: italic;
}

.pass-cta {
    text-align: center;
}

.pass-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.festival-pass-button {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    font-size: 1.2rem;
    padding: 1rem 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.festival-pass-button:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.pass-availability {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-top: 1rem;
    font-style: italic;
}

/* Performers Section */
.performers {
    background: linear-gradient(135deg, #f2f0ea 0%, #e8e6e0 100%);
}

.performer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    padding: 2rem 0;
}

.performer {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    text-align: center;
}

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

.performer-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.performer:hover .performer-image {
    transform: scale(1.05);
}

.performer h3 {
    color: #bc3b25;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.performer p {
    color: #303030;
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

.headliner {
    position: relative;
    border: 2px solid #bc3b25;
}

.headliner-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #bc3b25 0%, #a0331f 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(188, 59, 37, 0.3);
    z-index: 10;
}

/* Performer Page Styles */
.performer-hero {
    height: 60vh;
    background: linear-gradient(135deg, #9bc1af 0%, #bc3b25 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.performer-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    color: white;
}

.performer-hero-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 2rem;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    border: 4px solid rgba(255,255,255,0.3);
}

.performer-details h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.performer-social {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.social-link {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: rgba(255,255,255,0.2);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.3);
}

.social-link:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

.performer-bio {
    background: white;
    padding: 4rem 2rem;
}

.bio-content {
    max-width: 800px;
    margin: 0 auto;
}

.bio-content h2 {
    color: #bc3b25;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.bio-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #303030;
    margin-bottom: 1.5rem;
}

.performer-appearance {
    background: linear-gradient(135deg, #f2f0ea 0%, #e8e6e0 100%);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 3rem;
    border: 1px solid rgba(0,0,0,0.05);
}

.performer-appearance h3 {
    color: #bc3b25;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.performer-appearance p {
    color: #303030;
    font-size: 1.1rem;
    margin: 0;
}

.performer-link {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #bc3b25 0%, #a0331f 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(188, 59, 37, 0.3);
}

.performer-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(188, 59, 37, 0.4);
    background: linear-gradient(135deg, #a0331f 0%, #8a2a1a 100%);
}

/* Tickets Section */
.tickets {
    background: white;
    position: relative;
}

.tickets::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #bc3b25, transparent);
}

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

.tickets-content > p {
    font-size: 1.3rem;
    color: #303030;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.tickets-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature {
    background: linear-gradient(135deg, #f2f0ea 0%, #e8e6e0 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

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

.feature h3 {
    color: #bc3b25;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature p {
    color: #303030;
    font-size: 1rem;
    line-height: 1.6;
}

/* Buttons */
.button, .cta-button {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, #bc3b25 0%, #a0331f 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(188, 59, 37, 0.3);
    position: relative;
    overflow: hidden;
}

.button::before, .cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.button:hover::before, .cta-button:hover::before {
    left: 100%;
}

.button:hover, .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(188, 59, 37, 0.4);
}

.cta-button {
    font-size: 1.3rem;
    margin-top: 2rem;
    padding: 1.5rem 3rem;
}

/* Visit Section */
.visit {
    background: white;
    padding: 8rem 2rem;
    position: relative;
}

.visit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #bc3b25, transparent);
}

.visit-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.accommodations, .explore {
    background: linear-gradient(135deg, #f2f0ea 0%, #e8e6e0 100%);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
}

.visit h3 {
    color: #bc3b25;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.visit p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #303030;
    margin-bottom: 1.5rem;
}

.visit-link {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #bc3b25 0%, #a0331f 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(188, 59, 37, 0.3);
}

.visit-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(188, 59, 37, 0.4);
}

.explore-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .visit-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .visit h3 {
        font-size: 1.4rem;
    }

    .visit p {
        font-size: 1.1rem;
    }

    .explore-links {
        flex-direction: column;
    }

    .visit-link {
        width: 100%;
        text-align: center;
    }
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #f2f0ea 0%, #e8e6e0 100%);
    text-align: center;
    border-radius: 20px;
    margin: 0 2rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.contact p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #303030;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #303030 0%, #404040 100%);
    color: white;
    text-align: center;
    padding: 3rem 2rem;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #bc3b25, transparent);
}

.footer-links {
    margin-top: 1.5rem;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #bc3b25;
}

.footer-links .separator {
    color: #7f8c8d;
    margin: 0 1rem;
    font-size: 0.9rem;
}

/* Showcase Banner Styles */
.showcase-banner {
    width: 100%;
    height: 150px;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.showcase-banner:hover {
    transform: scale(1.02);
}

.showcase-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.showcase-banner h4 {
    position: relative;
    z-index: 2;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.showcase-banner .banner-time {
    position: relative;
    z-index: 2;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.3rem 0;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.showcase-banner .banner-venue {
    position: relative;
    z-index: 2;
    font-size: 0.85rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.showcase-banner.red {
    background: linear-gradient(135deg, #bc3b25 0%, #a0331f 100%);
}

.showcase-banner.green {
    background: linear-gradient(135deg, #9bc1af 0%, #7ba898 100%);
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 2rem;
    }

    .desktop-nav {
        display: none;
    }

    .hamburger-menu {
        display: block;
    }

    .mobile-nav {
        display: block;
    }

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

    .hero .date, .hero .location {
        font-size: 1.2rem;
    }

    section {
        padding: 3rem 1rem;
    }

    section h2 {
        font-size: 2rem;
    }

    .about {
        padding: 3rem 2rem;
        margin: 0 1rem;
    }

    .about p {
        font-size: 1.1rem;
    }

    .schedule-container {
        margin-bottom: 2rem;
    }

    .schedule-day {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .schedule-day h3 {
        font-size: 1.2rem;
    }

    .events-row {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 1rem;
    }

    .event {
        padding: 1rem;
    }

    .event-image {
        height: 120px;
    }

    .event h4 {
        font-size: 1rem;
    }

    .schedule-cta {
        padding: 2rem 1.5rem;
    }

    .schedule-cta p {
        font-size: 1.1rem;
    }

    .tickets-content > p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .tickets-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .feature {
        padding: 1.5rem;
    }

    .feature h3 {
        font-size: 1.1rem;
    }

    .performer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1rem 0;
    }

    .performer {
        padding: 2rem;
    }

    .performer-image {
        width: 150px;
        height: 150px;
    }

    .performer h3 {
        font-size: 1.4rem;
    }

    .performer p {
        font-size: 1rem;
    }

    .headliner-badge {
        top: -8px;
        right: 15px;
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
    }

    /* Festival Pass Mobile Styles */
    .festival-pass-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pass-hero h3 {
        font-size: 2rem;
    }

    .pass-price {
        font-size: 2.5rem;
    }

    .pass-description {
        font-size: 1.1rem;
    }

    .pass-features {
        padding: 2rem;
    }

    .pass-badge {
        top: -15px;
        right: 15px;
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }

    .festival-pass-button {
        font-size: 1.1rem;
        padding: 0.9rem 1.8rem;
    }
}

/* Sponsor Banner */
.sponsor-banner {
    margin-bottom: 2rem;
    text-align: center;
}

.sponsor-banner-img {
    max-width: 100%;
    height: auto;
    max-height: 120px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    background: rgba(255,255,255,0.1);
    padding: 10px;
    backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
    .sponsor-banner-img {
        max-height: 80px;
        padding: 5px;
    }
}

/* Submission Page Styles */
.submit-hero {
    height: 50vh;
    background: linear-gradient(135deg, #9bc1af 0%, #bc3b25 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 2rem;
    position: relative;
}

.submit-hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.deadline-notice {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    padding: 1rem 2rem;
    margin-top: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
}

.deadline-notice p {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.process-steps {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    padding: 3rem 0;
}

.step {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

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

.step h3 {
    color: #bc3b25;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.step p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #303030;
}

.step ul {
    list-style-position: inside;
    margin-top: 1.5rem;
    text-align: left;
}

.step li {
    margin-bottom: 0.5rem;
    color: #303030;
}

.tips-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 4rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
}

.tips-content h3 {
    color: #bc3b25;
    margin: 2rem 0 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.tips-content ul {
    list-style-position: inside;
    margin-bottom: 2rem;
}

.tips-content li {
    margin-bottom: 0.5rem;
    color: #303030;
}

.submit-cta {
    text-align: center;
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f2f0ea 0%, #e8e6e0 100%);
    border-radius: 20px;
    margin: 0 2rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.submit-cta p {
    max-width: 700px;
    margin: 1rem auto 2rem;
    font-size: 1.2rem;
    color: #303030;
}

/* FAQ Section */
.submission-faq {
    background: white;
    padding: 6rem 2rem;
    position: relative;
}

.faq-content {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, #f2f0ea 0%, #e8e6e0 100%);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item h3 {
    color: #303030;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.faq-item p {
    color: #303030;
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Grant Page Styles */
.grant-hero {
    height: 50vh;
    background: linear-gradient(135deg, #9bc1af 0%, #bc3b25 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 2rem;
    position: relative;
}

.grant-hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.grant-announcement {
    background: linear-gradient(135deg, #f2f0ea 0%, #e8e6e0 100%);
    padding: 6rem 2rem;
    border-radius: 20px;
    margin: 0 2rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

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

.announcement-content p {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    line-height: 1.8;
    color: #303030;
}

.grant-details {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    text-align: left;
    border: 1px solid rgba(0,0,0,0.05);
}

.grant-details h3 {
    color: #bc3b25;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 700;
}

.grant-details ul {
    list-style-position: inside;
    margin-left: 1rem;
}

.grant-details li {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    color: #303030;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.partner {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

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

.partner h3 {
    color: #bc3b25;
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    font-weight: 700;
}

.partner p {
    line-height: 1.7;
    font-size: 1.1rem;
    color: #303030;
}

.impact-content, .credibility-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 4rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
}

.impact-content p, .credibility-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #303030;
}

.impact-content ul, .credibility-content ul {
    list-style-position: inside;
    margin-left: 1rem;
}

.impact-content li, .credibility-content li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
    font-size: 1.1rem;
    color: #303030;
}

@media (max-width: 768px) {
    .grant-hero h1 {
        font-size: 2rem;
    }
    
    .partner-grid {
        grid-template-columns: 1fr;
    }
    
    .announcement-content p {
        font-size: 1.1rem;
    }
    
    .submit-hero h1 {
        font-size: 2rem;
    }

    .deadline-notice {
        padding: 0.8rem 1.5rem;
        margin-top: 1.5rem;
    }

    .deadline-notice p {
        font-size: 1rem;
    }

    .performer-hero {
        height: auto;
        min-height: 50vh;
        padding: 2rem 1rem;
    }

    .performer-hero-image {
        width: 150px;
        height: 150px;
    }

    .performer-details h1 {
        font-size: 2rem;
    }

    .performer-social {
        gap: 0.5rem;
    }

    .social-link {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .performer-bio {
        padding: 2rem 1rem;
    }

    .bio-content h2 {
        font-size: 2rem;
    }

    .bio-content p {
        font-size: 1.1rem;
    }

    .performer-link {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
        margin-top: 0.8rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .faq-item {
        padding: 1.5rem;
    }
}

/* Sponsorship Page Styles */
.sponsorship-hero {
    height: auto;
    min-height: 40vh;
    background: linear-gradient(135deg, #9bc1af 0%, #bc3b25 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 2rem;
    position: relative;
}

.sponsorship-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.overview {
    background: linear-gradient(135deg, #f2f0ea 0%, #e8e6e0 100%);
    padding: 4rem 2rem;
    border-radius: 20px;
    margin: 2rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.overview p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #303030;
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.stat {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
}

.stat h3 {
    color: #bc3b25;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.stat p {
    font-size: 1.1rem;
    color: #303030;
    margin: 0;
}

.packages {
    background: white;
    padding: 4rem 2rem;
    position: relative;
    margin: 2rem 0;
}

.packages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #bc3b25, transparent);
}

.package {
    background: linear-gradient(135deg, #f2f0ea 0%, #e8e6e0 100%);
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.package:last-child {
    margin-bottom: 0;
}

.package h3 {
    color: #303030;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.package-subtitle {
    color: #bc3b25;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-style: italic;
}

.package h4 {
    color: #303030;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 2rem 0 1rem;
}

.package ul {
    list-style-position: inside;
    margin-bottom: 1.5rem;
}

.package li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
    color: #303030;
}

.package ul ul {
    margin-left: 2rem;
    margin-top: 0.5rem;
}

.package ul ul li {
    margin-bottom: 0.3rem;
}

.why-sponsor {
    background: linear-gradient(135deg, #f2f0ea 0%, #e8e6e0 100%);
    padding: 4rem 2rem;
    border-radius: 20px;
    margin: 2rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.audience-demo, .marketing-value, .community-impact {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
}

.audience-demo h3, .marketing-value h3, .community-impact h3 {
    color: #bc3b25;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.audience-demo ul, .marketing-value ul, .community-impact ul {
    list-style-position: inside;
}

.audience-demo li, .marketing-value li, .community-impact li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
    color: #303030;
}

.comparison {
    background: white;
    padding: 4rem 2rem;
    position: relative;
    margin: 2rem 0;
}

.comparison::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #bc3b25, transparent);
}

.comparison-table {
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.comparison-table th {
    background: linear-gradient(135deg, #bc3b25 0%, #a0331f 100%);
    color: white;
    padding: 1.5rem 1rem;
    text-align: left;
    font-weight: 700;
    font-size: 1.1rem;
}

.comparison-table td {
    padding: 1.5rem 1rem;
    border-bottom: 1px solid #e9ecef;
    color: #303030;
}

.comparison-table tr:hover {
    background-color: #f2f0ea;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.customization {
    background: linear-gradient(135deg, #f2f0ea 0%, #e8e6e0 100%);
    padding: 4rem 2rem;
    border-radius: 20px;
    margin: 2rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    text-align: center;
}

.customization p {
    font-size: 1.2rem;
    color: #303030;
    margin-bottom: 2rem;
}

.customization ul {
    list-style-position: inside;
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.customization li {
    margin-bottom: 0.8rem;
    color: #303030;
    font-size: 1.1rem;
}

.next-steps {
    background: white;
    padding: 4rem 2rem;
    position: relative;
    margin: 2rem 0;
}

.next-steps::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #bc3b25, transparent);
}

.next-steps h3 {
    color: #bc3b25;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.next-steps ol {
    max-width: 600px;
    margin: 0 auto 3rem;
    padding-left: 2rem;
}

.next-steps li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #303030;
    line-height: 1.7;
}

.contact-info, .timeline {
    background: linear-gradient(135deg, #f2f0ea 0%, #e8e6e0 100%);
    padding: 2.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info h3, .timeline h3 {
    color: #bc3b25;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.contact-info p, .timeline li {
    margin-bottom: 0.8rem;
    color: #303030;
    font-size: 1.1rem;
}

.timeline ul {
    list-style-position: inside;
}

.festival-details {
    background: linear-gradient(135deg, #f2f0ea 0%, #e8e6e0 100%);
    padding: 4rem 2rem;
    border-radius: 20px;
    margin: 2rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    text-align: center;
}

.festival-details ul {
    list-style-position: inside;
    max-width: 600px;
    margin: 0 auto 2rem;
    text-align: left;
}

.festival-details li {
    margin-bottom: 0.8rem;
    color: #303030;
    font-size: 1.1rem;
}

.festival-details p {
    font-size: 1.3rem;
    color: #303030;
    font-weight: 600;
}

@media (max-width: 768px) {
    .sponsorship-hero h1 {
        font-size: 2rem;
    }
    
    .stats {
        grid-template-columns: 1fr;
    }
    
    .package {
        padding: 2rem;
    }
    
    .package h3 {
        font-size: 1.5rem;
    }
    
    .comparison-table {
        font-size: 0.9rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 1rem 0.5rem;
    }
} 