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

body {
    font-family: 'Neue Einstellung', 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;
}

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

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

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

.performer-grid {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

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

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

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

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .desktop-nav {
        display: none;
    }

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

    .mobile-nav li {
        text-align: center;
    }

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

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

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