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

body {
    font-family: "DM Sans", sans-serif;
    background-color: #fff6e5;
    color: #3b2f2f;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: "Love Ya Like A Sister", cursive;
    color: #a35c3b;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 2rem;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #f9a875;
}

h4 {
    font-size: 1.25rem;
    color: #a35c3b;
    margin-bottom: 0.5rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #f9a875 0%, #a35c3b 50%, #c1c5a9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    color: #ffffff;
    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="tie-dye" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="8" fill="%23F9A875" opacity="0.1"/><circle cx="5" cy="5" r="3" fill="%23A35C3B" opacity="0.1"/><circle cx="15" cy="15" r="4" fill="%23C1C5A9" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23tie-dye)"/></svg>')
        repeat;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1.5s ease-out;
}

.peace-sign {
    margin-bottom: 2rem;
    animation: float 3s ease-in-out infinite;
}

.peace-sign svg {
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

.festival-title {
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.7);
}

.tagline {
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 500;
    margin-bottom: 2rem;
    color: #ffffff;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

.event-details p {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.event-details a {
    color: #ffffff;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.event-details a:hover {
    text-decoration-color: #ffffff;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}

/* Floating Flowers */
.floating-flowers {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.flower {
    position: absolute;
    font-size: 2rem;
    animation: floatAround 15s linear infinite;
    opacity: 0.7;
}

.flower-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.flower-2 {
    top: 60%;
    right: 15%;
    animation-delay: -5s;
}

.flower-3 {
    top: 80%;
    left: 20%;
    animation-delay: -10s;
}

.flower-4 {
    top: 30%;
    right: 30%;
    animation-delay: -7s;
}

/* Navigation */
.nav-bar {
    background-color: rgba(59, 47, 47, 0.95);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav-link {
    color: #fff6e5;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    background-color: #f9a875;
    color: #3b2f2f;
    transform: translateY(-2px);
}

.get-tickets-btn {
    background-color: #f9a875;
    color: #3b2f2f !important;
    font-weight: 700;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.get-tickets-btn:hover {
    background-color: #a35c3b;
    color: #fff6e5 !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Main Content Sections */
.main-content {
    padding: 4rem 0;
}

section {
    margin-bottom: 4rem;
}

/* About Section */
.about-section {
    background-color: #c1c5a9;
    padding: 4rem 0;
    margin: 0;
    border-radius: 0;
}

.about-section .container {
    background-color: rgba(255, 246, 229, 0.9);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.about-section p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Lineup Section */
.lineup-section {
    background: linear-gradient(45deg, #fff6e5 0%, #f9a875 50%, #fff6e5 100%);
    padding: 4rem 0;
    margin: 0;
}

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

.stage-schedule {
    background-color: rgba(255, 246, 229, 0.95);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border: 3px solid #a35c3b;
}

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

.band-list {
    list-style: none;
    padding: 0;
}

.band-list li {
    background-color: #c1c5a9;
    margin-bottom: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 15px;
    color: #3b2f2f;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: default;
}

.band-list li:hover {
    background-color: #f9a875;
    transform: translateX(5px);
}

.special-events {
    text-align: center;
    margin-top: 3rem;
}

.event-highlight {
    background-color: rgba(163, 92, 59, 0.9);
    color: #ffffff;
    padding: 2rem;
    border-radius: 20px;
    display: inline-block;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    max-width: 600px;
}

.event-highlight h4 {
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.event-highlight p {
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Info Section */
.info-section {
    background-color: #a35c3b;
    color: #fff6e5;
    padding: 4rem 0;
    margin: 0;
}

.info-section h2 {
    color: #fff6e5;
}

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

.info-card {
    background-color: rgba(255, 246, 229, 0.95);
    color: #3b2f2f;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.info-card h3 {
    color: #a35c3b;
    margin-bottom: 1rem;
}

.info-card ul {
    list-style: disc;
    padding: 0 0 0 1.2rem;
}

.info-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(163, 92, 59, 0.2);
}

.volunteer-callout {
    background-color: rgba(249, 168, 117, 0.9);
    color: #3b2f2f;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.volunteer-callout h3 {
    color: #3b2f2f;
}

/* Tickets Section */
.tickets-section {
    background: linear-gradient(135deg, #c1c5a9 0%, #f9a875 100%);
    padding: 4rem 0;
    margin: 0;
    text-align: center;
}

.tickets-content {
    background-color: rgba(255, 246, 229, 0.95);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    margin: 0 auto;
}

.ticket-button {
    display: inline-block;
    background-color: #a35c3b;
    color: #fff6e5;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 25px;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 2rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.ticket-button:hover {
    background-color: #3b2f2f;
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.ticket-info {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #a35c3b;
}

.ticket-info a {
    color: #a35c3b;
    text-decoration: underline;
    text-decoration-color: rgba(163, 92, 59, 0.7);
    transition: all 0.3s ease;
}

.ticket-info a:hover {
    color: #3b2f2f;
    text-decoration-color: #3b2f2f;
}

/* Music Section */
.music-section {
    background-color: #3b2f2f;
    color: #fff6e5;
    padding: 4rem 0;
    margin: 0;
    text-align: center;
}

.music-section h2 {
    color: #f9a875;
}

.playlist-placeholder {
    background-color: rgba(249, 168, 117, 0.2);
    padding: 3rem;
    border-radius: 20px;
    border: 2px dashed #f9a875;
    max-width: 600px;
    margin: 0 auto;
}

/* Footer */
.footer {
    background-color: #3b2f2f;
    color: #fff6e5;
    padding: 2rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.social-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.social-link {
    color: #f9a875;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: #fff6e5;
    transform: translateY(-2px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes floatAround {
    0% {
        transform: translateX(0px) translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateX(30px) translateY(-30px) rotate(120deg);
    }
    66% {
        transform: translateX(-20px) translateY(20px) rotate(240deg);
    }
    100% {
        transform: translateX(0px) translateY(0px) rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        gap: 1rem;
    }

    .nav-link {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }

    .lineup-grid,
    .info-grid {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 2rem 0;
    }

    .stage-schedule,
    .info-card {
        padding: 1.5rem;
    }

    .tickets-content {
        padding: 2rem;
    }

    .social-links {
        flex-direction: column;
        gap: 1rem;
    }

    .floating-flowers {
        display: none; /* Hide on mobile for performance */
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    section {
        margin-bottom: 2rem;
    }

    .about-section .container,
    .stage-schedule,
    .info-card,
    .tickets-content {
        padding: 1rem;
    }
}

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

/* Page Hero (smaller than main hero) */
.page-hero {
    min-height: 40vh;
    background: linear-gradient(135deg, #f9a875 0%, #a35c3b 50%, #c1c5a9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    color: #ffffff;
}

.page-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 0.5rem;
    color: #ffffff;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

.page-tagline {
    font-size: clamp(1rem, 2vw, 1.5rem);
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.breadcrumb {
    font-size: 0.9rem;
    opacity: 0.9;
}

.breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Current page indicator in nav */
.current-page {
    background-color: rgba(249, 168, 117, 0.3) !important;
    border-radius: 15px;
}

/* Quick Navigation */
.quick-nav {
    background-color: #c1c5a9;
    padding: 3rem 0;
}

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

.nav-card {
    background-color: rgba(255, 246, 229, 0.95);
    color: #3b2f2f;
    padding: 1.5rem 1rem;
    border-radius: 15px;
    text-decoration: none;
    text-align: center;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
}

.nav-card:hover {
    background-color: #f9a875;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    border-color: #a35c3b;
}

/* Info Content */
.info-content {
    padding: 4rem 0;
    background-color: #fff6e5;
}

.info-content .info-section {
    margin-bottom: 4rem;
}

.info-content .info-section h2 {
    color: #a35c3b;
    text-align: left;
    margin-bottom: 1.5rem;
    border-bottom: 3px solid #f9a875;
    padding-bottom: 0.5rem;
}

.info-content .info-card {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #f9a875;
}

.info-content .info-card ul {
    list-style: disc;
    padding-left: 1.2rem;
}

.info-content .info-card li {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.info-content .info-card li:last-child {
    margin-bottom: 0;
}

.info-content .info-card ul ul {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.info-content .info-card ul ul li {
    margin-bottom: 0.5rem;
}

/* About Festival Section */
.about-festival {
    background: linear-gradient(45deg, #c1c5a9 0%, #f9a875 100%);
    padding: 3rem 0;
    margin: 0 0 4rem 0;
    border-radius: 0;
}

.about-text {
    background-color: rgba(255, 246, 229, 0.95);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: left;
}

.about-text p:last-child {
    margin-bottom: 0;
}

/* Legal Section */
.legal-section {
    background-color: #3b2f2f;
    color: #fff6e5;
    padding: 3rem 0;
    margin: 4rem 0 0 0;
}

.legal-section h2 {
    color: #f9a875;
    text-align: center;
    margin-bottom: 2rem;
}

.legal-card {
    background-color: rgba(249, 168, 117, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #f9a875;
}

.legal-card p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.legal-card p:last-child {
    margin-bottom: 0;
}

/* Contact Section */
.contact-section {
    background-color: #a35c3b;
    color: #fff6e5;
    padding: 3rem 0;
    margin: 0;
}

.contact-section h2 {
    color: #fff6e5;
    text-align: center;
    margin-bottom: 2rem;
}

.contact-card {
    background-color: rgba(255, 246, 229, 0.95);
    color: #3b2f2f;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.contact-card p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-card ul {
    list-style: none;
    padding: 0;
}

.contact-card li {
    margin-bottom: 1rem;
    padding: 0.75rem;
    background-color: rgba(193, 197, 169, 0.3);
    border-radius: 8px;
    border-left: 4px solid #a35c3b;
}

.contact-card a:not(.ticket-button) {
    color: #a35c3b;
    text-decoration: none;
    font-weight: 500;
}

.contact-card a:not(.ticket-button):hover {
    text-decoration: underline;
    color: #3b2f2f;
}

/* Responsive adjustments for info page */
@media (max-width: 768px) {
    .page-hero {
        min-height: 30vh;
        padding: 2rem 0;
    }

    .nav-grid {
        grid-template-columns: 1fr;
    }

    .info-content .info-card,
    .about-text,
    .legal-card,
    .contact-card {
        padding: 1.5rem;
    }

    .quick-nav {
        padding: 2rem 0;
    }
}

@media (max-width: 480px) {
    .info-content .info-card,
    .about-text,
    .legal-card,
    .contact-card {
        padding: 1rem;
    }

    .nav-card {
        padding: 1rem 0.75rem;
    }
}

/* Focus styles for accessibility */
.nav-link:focus,
.ticket-button:focus,
.social-link:focus,
.nav-card:focus {
    outline: 2px solid #f9a875;
    outline-offset: 2px;
}

/* Sponsors Section */
.sponsors-section {
    background-color: #fff6e5;
    padding: 4rem 0;
    margin: 0;
}

.sponsors-section h2 {
    color: #a35c3b;
}

.sponsor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}

.sponsor-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 246, 229, 0.95);
    border: 3px solid #a35c3b;
    border-radius: 16px;
    padding: 1rem;
    text-decoration: none;
    color: #3b2f2f;
    min-height: 240px;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.sponsor-card:hover {
    background-color: #f9a875;
    color: #3b2f2f;
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
    border-color: #a35c3b;
}

.sponsor-logo {
    display: block;
    height: clamp(80px, 12vw, 140px);
    width: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: center center;
    margin-bottom: 0.75rem;
    padding: 0.5rem;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.sponsor-caption {
    margin: 0;
    font-weight: 600;
    text-align: center;
}

/* Reduce default ticket-button spacing when used as a sponsor CTA */
.ticket-button.sponsor-cta {
    margin: 0;
}

@media (max-width: 480px) {
    .sponsor-card {
        min-height: 200px;
        padding: 0.75rem;
    }
}
