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

/* Color Variables */
:root {
    --primary-green: #5A7B4B;
    --primary-purple: #8E6DBA;
    --light-beige: #f8f7f2;
    --text-gray: #333;
    --text-light: #666;
    --white: #fff;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-gray);
    background: var(--light-beige);
    overflow-x: hidden;
    margin-top: 160px;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--light-beige);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(90, 123, 75, 0.08);
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.navbar::before {
    display: none;
}

.nav-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 160px;
    flex-wrap: wrap;
    overflow: visible;
}

.nav-logo {
    flex: 0 0 auto;
    align-self: flex-start;
    margin-top: 20px;
    max-width: 30%;
}

.nav-logo h2 {
    color: var(--primary-green);
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: 1px;
    text-shadow: none;
    margin-top: 10px;
}

.nav-logo a {
    text-decoration: none;
}

.nav-logo a:hover {
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 1rem;
    z-index: 1;
    flex-wrap: wrap;
    justify-content: flex-end;
    max-width: 70%;
    align-self: center;
    margin-top: 0;
    overflow: visible;
    position: relative;
    min-height: 120px;
}

.nav-item {
    position: relative;
    margin-bottom: 0.5rem;
}

.nav-link {
    text-decoration: none;
    color: var(--primary-green);
    font-weight: 700;
    font-size: 0.85rem;
    transition: color 0.3s ease, background 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.6rem;
    border-radius: 20px;
    text-shadow: none;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-purple) !important;
    background: rgba(142, 109, 186, 0.10);
}

.btn-don {
    background: var(--primary-purple);
    color: var(--white) !important;
    padding: 0.3rem 0.6rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 900;
    border: none;
    font-size: 0.8rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    white-space: nowrap;
}

.btn-don:hover {
    background: var(--primary-green);
    color: var(--white) !important;
    border: 2px solid var(--primary-green);
    transform: translateY(-2px);
}

/* Language Switcher */
.language-switcher {
    background: var(--primary-purple);
    border: 2px solid var(--primary-purple);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    min-width: 50px;
    box-shadow: 0 2px 8px rgba(142, 109, 186, 0.20);
    position: relative;
    z-index: 10;
    /* Debug properties to ensure visibility */
    display: inline-block;
    visibility: visible !important;
    opacity: 1 !important;
    overflow: visible;
}

.language-switcher:hover {
    background: var(--primary-green);
    border-color: var(--primary-green);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(90, 123, 75, 0.25);
}

.language-switcher:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(142, 109, 186, 0.15);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--light-beige);
    box-shadow: 0 10px 30px rgba(90, 123, 75, 0.08);
    border-radius: 8px;
    padding: 1rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 0.5rem 1.5rem;
    color: var(--primary-green);
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
    border-radius: 8px;
}

.dropdown-menu li a:hover {
    background: var(--primary-purple);
    color: var(--white);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    margin-top: 15px;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary-green);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: var(--primary-green);
    color: var(--white);
    padding: 100px 0 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-container.event-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.hero-logo-block {
    flex: 0 0 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-logo {
    width: 260px;
    max-width: 90vw;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 8px 32px rgba(90, 123, 75, 0.12);
    background: var(--white);
    padding: 1rem;
}

.hero-content {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

.event-dates {
    display: block;
    font-size: 1.3rem;
    color: var(--white);
    font-weight: 700;
    margin-top: 0.5rem;
    margin-bottom: 0;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--white);
    opacity: 0.95;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-green);
    color: var(--white);
    border: 2px solid var(--primary-green);
}

.btn-primary:hover {
    background: var(--primary-purple);
    border-color: var(--primary-purple);
    color: var(--white);
}

.btn-secondary {
    background: var(--primary-purple);
    color: var(--white);
    border: 2px solid var(--primary-purple);
}

.btn-secondary:hover {
    background: var(--primary-green);
    border-color: var(--primary-green);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-green);
    border-color: var(--primary-green);
}

/* Accessibility: High contrast for buttons and text */
.btn, .btn-primary, .btn-secondary, .btn-outline {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    outline: none;
}

.btn:focus, .btn-primary:focus, .btn-secondary:focus, .btn-outline:focus {
    outline: 3px solid var(--primary-purple);
    outline-offset: 2px;
}

/* Sections */
section {
    padding: 60px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--primary-green);
    text-align: center;
}

.section-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #666;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about {
    background: #f8f9fa;
}

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

.about-quote {
    background: var(--primary-green);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    font-size: 1.2rem;
    font-weight: 600;
    font-style: italic;
}

/* Team Section */
.team {
    background: white;
}

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

/* News Section */
.news {
    background: #f8f9fa;
}

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

.news-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.news-date {
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 1rem;
}

.news-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.news-link {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.news-link:hover {
    color: var(--primary-purple);
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-purple) 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-green);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--primary-green);
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-purple);
    transform: translateY(-2px);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 25px;
    background: var(--primary-green);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--primary-purple);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
    color: #ccc;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .section-title {
        font-size: 2rem;
    }
    .news-grid {
        grid-template-columns: 1fr;
    }
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .newsletter-form {
        flex-direction: column;
    }
    .language-switcher {
        margin-top: 1rem;
        font-size: 1rem;
        padding: 0.6rem 1.2rem;
        min-width: 60px;
        background: var(--primary-purple);
        color: var(--white);
        box-shadow: 0 3px 10px rgba(142, 109, 186, 0.25);
    }
    .bar {
        background: var(--primary-green);
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

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

/* Responsive Hero */
@media (max-width: 900px) {
    .hero-container.event-hero {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }
    .hero-content {
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 1.5rem;
    }
    .event-logo {
        width: 180px;
    }
}

/* Donation Form Styles */
.donate-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    background: none;
}

.donation-form {
    background: var(--white);
    border-radius: 18px;
    box-shadow: 0 4px 32px rgba(90, 123, 75, 0.08), 0 1.5px 8px rgba(142, 109, 186, 0.04);
    padding: 2.5rem 2rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin: 0 auto;
}

.donation-form label {
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 0.3rem;
    font-size: 1.05rem;
}

.donation-form input[type="text"],
.donation-form input[type="email"],
.donation-form input[type="number"] {
    padding: 0.85rem 1rem;
    border: 1.5px solid var(--primary-green);
    border-radius: 8px;
    font-size: 1.08rem;
    background: #f8f7f2;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    transition: border 0.2s;
}

.donation-form textarea {
    padding: 0.85rem 1rem;
    border: 1.5px solid var(--primary-green);
    border-radius: 8px;
    font-size: 1.08rem;
    background: #f8f7f2;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    transition: border 0.2s;
    font-family: 'Inter', sans-serif;
    resize: vertical;
    min-height: 100px;
}

.donation-form input:focus,
.donation-form textarea:focus {
    border-color: var(--primary-purple);
    outline: none;
    background: #f3edfa;
}

.donation-form button[type="submit"] {
    background: var(--primary-purple);
    color: var(--white);
    font-weight: 800;
    font-size: 1.15rem;
    border: none;
    border-radius: 25px;
    padding: 1rem 0;
    margin-top: 1.5rem;
    box-shadow: 0 2px 8px rgba(142, 109, 186, 0.10);
    transition: background 0.2s, color 0.2s;
}

.donation-form button[type="submit"]:hover {
    background: var(--primary-green);
    color: var(--white);
}

.donate-section .container {
    background: none;
    box-shadow: none;
    padding: 0;
}

.donate-section h1.section-title {
    color: var(--primary-green);
    font-size: 2.1rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.donate-section .donate-subtitle {
    color: var(--primary-purple);
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 500;
}

@media (max-width: 600px) {
    .donation-form {
        padding: 1.2rem 0.5rem 1.5rem 0.5rem;
    }
    .donate-section h1.section-title {
        font-size: 1.3rem;
    }
}

/* Sponsor Page Styles */
.sponsor-section {
    padding: 2rem 0;
    background: var(--white);
}

.sponsor-content {
    max-width: 1000px;
    margin: 0 auto;
}

.sponsor-intro,
.sponsor-audience,
.sponsor-why {
    margin-bottom: 3rem;
}

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

.sponsor-card {
    background: var(--light-beige);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(90, 123, 75, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.sponsor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(90, 123, 75, 0.12);
    border-color: var(--primary-purple);
}

.sponsor-card h4 {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-green);
}

.sponsor-card ul li {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-gray);
}

.sponsor-btn {
    width: 100%;
    margin-top: 1rem;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.sponsor-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(142, 109, 186, 0.3);
}

.sponsor-contact {
    border: 2px solid var(--primary-green);
    box-shadow: 0 4px 20px rgba(90, 123, 75, 0.08);
}

.contact-info a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .sponsor-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .sponsor-card {
        padding: 1.5rem;
    }
    
    .sponsor-content h3 {
        font-size: 1.3rem;
    }
    
    .sponsor-content h4 {
        font-size: 1.1rem;
    }
}

/* Intro Text Section */
.intro-text {
    background: var(--white);
    padding: 60px 0;
}

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

.intro-content .french-version {
    margin-bottom: 3rem;
}

.intro-content .english-version {
    border-top: 2px solid var(--primary-green);
    padding-top: 2rem;
}

.intro-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.intro-content sup {
    font-size: 0.8em;
    vertical-align: super;
}

/* Responsive design for intro text */
@media (max-width: 768px) {
    .intro-text {
        padding: 40px 0;
    }
    
    .intro-content p {
        font-size: 1.1rem;
        line-height: 1.7;
    }
    
    .intro-content .french-version {
        margin-bottom: 2rem;
    }
    
    .intro-content .english-version {
        padding-top: 1.5rem;
    }
}

@media (max-width: 600px) {
    .intro-content p {
        font-size: 1rem;
        line-height: 1.6;
    }
}

/* Schedule Section */
.schedule {
    background: var(--light-beige);
    padding: 20px 0 80px;
}

.schedule-content {
    max-width: 1000px;
    margin: 0 auto;
}

.schedule-french {
    margin-bottom: 4rem;
}

.schedule-english {
    border-top: 2px solid var(--primary-green);
    padding-top: 3rem;
}

.schedule-days {
    display: grid;
    gap: 2rem;
}

.schedule-day {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(90, 123, 75, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.schedule-day:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(90, 123, 75, 0.12);
}

.schedule-day h4 {
    margin-bottom: 1rem;
    font-weight: 600;
}

.schedule-day ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.schedule-day li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.schedule-day li span {
    font-weight: 600;
}

/* Responsive design for schedule */
@media (max-width: 768px) {
    .schedule {
        padding: 60px 0;
    }
    
    .schedule-days {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .schedule-day {
        padding: 1.5rem;
    }
    
    .schedule-french {
        margin-bottom: 3rem;
    }
    
    .schedule-english {
        padding-top: 2rem;
    }
}

@media (max-width: 600px) {
    .schedule-day {
        padding: 1rem;
    }
    
    .schedule-day h4 {
        font-size: 1.1rem;
    }
    
    .schedule-day li {
        font-size: 0.95rem;
        padding-left: 1rem;
    }
}

/* Additional responsive adjustments for navbar */
@media (max-width: 1200px) {
    .nav-menu {
        gap: 0.8rem;
        max-width: 60%;
    }
    .nav-link {
        font-size: 0.9rem;
        padding: 0.3rem 0.6rem;
    }
    .btn-don {
        font-size: 0.85rem;
        padding: 0.3rem 0.6rem;
    }
}

@media (max-width: 1100px) {
    body {
        margin-top: 80px;
    }
    .nav-container {
        height: 80px;
        align-items: center;
    }
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--light-beige);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(90, 123, 75, 0.08);
        padding: 2rem 0;
        gap: 1rem;
        max-width: 100%;
        margin-top: 0;
    }
    .nav-menu.active {
        left: 0;
    }
    .nav-menu .language-switcher {
        margin: 0.5rem auto;
        display: inline-block;
        background: var(--primary-purple);
        color: var(--white);
        font-size: 1.1rem;
        padding: 0.7rem 1.4rem;
        min-width: 70px;
        box-shadow: 0 3px 10px rgba(142, 109, 186, 0.25);
    }
    .hamburger {
        display: flex;
        margin-top: 0;
        align-self: center;
    }
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    .nav-link {
        font-size: 1rem;
        padding: 0.5rem 1rem;
    }
    .btn-don {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
    .nav-logo {
        margin-top: 0;
        max-width: none;
        align-self: center;
    }
    .nav-logo h2 {
        margin-top: 15px;
        font-size: 1.1rem;
        line-height: 1.2;
        white-space: normal;
        max-width: 200px;
    }
    .hero-logo-block {
        margin: 0;
    }
    .event-logo {
        margin: 0;
    }
    .hero {
        padding: 40px 0 30px;
    }
    .hero-container.event-hero {
        gap: 1.5rem;
    }
}

@media (max-width: 600px) {
    .nav-logo h2 {
        font-size: 1rem;
        margin-top: 12px;
        line-height: 1.2;
        white-space: normal;
        max-width: 180px;
    }
    .hamburger {
        margin-top: 0;
        align-self: center;
    }
    .hero-logo-block {
        margin: 0;
    }
    .event-logo {
        margin: 0;
    }
    .hero {
        padding: 30px 0 20px;
    }
    .hero-container.event-hero {
        gap: 1rem;
    }
}

/* Ticket Purchase Form Specific Styles */
.ticket-form-section {
    background: var(--light-beige);
    padding: 60px 0;
}

.ticket-form-container {
    max-width: 600px;
    margin: 0 auto;
}

.ticket-form {
    background: var(--white);
    border-radius: 18px;
    box-shadow: 0 4px 32px rgba(90, 123, 75, 0.08), 0 1.5px 8px rgba(142, 109, 186, 0.04);
    padding: 2.5rem 2rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.ticket-form h3 {
    color: var(--primary-green);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.ticket-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.ticket-form label {
    font-weight: 600;
    color: var(--primary-green);
    font-size: 1.05rem;
}

.ticket-form input[type="number"],
.ticket-form input[type="text"],
.ticket-form input[type="email"] {
    padding: 0.85rem 1rem;
    border: 1.5px solid var(--primary-green);
    border-radius: 8px;
    font-size: 1.08rem;
    background: #f8f7f2;
    color: var(--primary-green);
    transition: border 0.2s;
}

.ticket-form textarea {
    padding: 0.85rem 1rem;
    border: 1.5px solid var(--primary-green);
    border-radius: 8px;
    font-size: 1.08rem;
    background: #f8f7f2;
    color: var(--primary-green);
    transition: border 0.2s;
    font-family: 'Inter', sans-serif;
    resize: vertical;
    min-height: 100px;
}

.ticket-form input:focus,
.ticket-form textarea:focus {
    border-color: var(--primary-purple);
    outline: none;
    background: #f3edfa;
}

.ticket-form button[type="submit"] {
    background: var(--primary-purple);
    color: var(--white);
    font-weight: 800;
    font-size: 1.15rem;
    border: none;
    border-radius: 25px;
    padding: 1rem 0;
    margin-top: 1.5rem;
    box-shadow: 0 2px 8px rgba(142, 109, 186, 0.10);
    transition: background 0.2s, color 0.2s;
    cursor: pointer;
}

.ticket-form button[type="submit"]:hover {
    background: var(--primary-green);
    color: var(--white);
}

.ticket-info {
    background: var(--primary-green);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    text-align: center;
}

.ticket-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.ticket-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ticket-info li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.ticket-info li:before {
    content: "✓ ";
    color: var(--primary-purple);
    font-weight: bold;
}

.payment-info {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2rem;
    box-shadow: 0 2px 12px rgba(90, 123, 75, 0.08);
    text-align: center;
}

.payment-info p {
    margin-bottom: 0.8rem;
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
}

.payment-info p:last-child {
    margin-bottom: 0;
}

@media (max-width: 600px) {
    .ticket-form {
        padding: 1.5rem 1rem;
    }
    
    .ticket-form h3 {
        font-size: 1.1rem;
    }
    
    .ticket-info {
        padding: 1rem;
    }
    
    .ticket-info h4 {
        font-size: 1.1rem;
    }
} 