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

:root {
    /* Color System */
    --primary-500: #7B2A4B;
    --primary-700: #5C1F38;
    --primary-100: #F3E9ED;
    
    --bg-color: #FDFCF9;
    --surface-color: #FFFFFF;
    --text-primary: #1F1A1C;
    --text-secondary: #6B5F63;
    
    --accent-yellow: #FFC700;
    --accent-teal: #00AFA5;
    --accent-red: #E63946;
    --accent-pink: #F4ACB7;
    
    --success-color: #28a745;
    
    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    --spacing-xxl: 64px;
    --spacing-xxxl: 96px;
    
    /* Shadows */
    --shadow: 0 8px 24px rgba(123, 42, 75, 0.1);
    --shadow-hover: 0 12px 32px rgba(123, 42, 75, 0.15);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--bg-color);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: 64px;
    font-weight: 700;
    letter-spacing: -1.5px;
    line-height: 1.1;
}

h2 {
    font-size: 48px;
    font-weight: 600;
    letter-spacing: -1px;
    line-height: 1.2;
}

h3 {
    font-size: 32px;
    font-weight: 600;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

p {
    margin-bottom: var(--spacing-sm);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-lg);
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.5px;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-500);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-700);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(123, 42, 75, 0.2);
}

/* Ensure primary button in hero section has correct background */
.hero .btn-primary {
    background-color: var(--primary-500) !important;
    color: white !important;
}

.hero .btn-primary:hover {
    background-color: var(--primary-700) !important;
}

/* Additional override for any potential conflicts */
.hero-content .btn-primary {
    background-color: var(--primary-500) !important;
    color: white !important;
}

.hero-content .btn-primary:hover {
    background-color: var(--primary-700) !important;
}

/* Force the button to be burgundy no matter what */
section.hero .hero-content a.btn.btn-primary {
    background-color: #7B2A4B !important;
    color: white !important;
}

section.hero .hero-content a.btn.btn-primary:hover {
    background-color: #5C1F38 !important;
}

/* Force navigation "Lid Worden" button to be burgundy in hero section */
section.hero .navbar .cta-nav {
    background-color: var(--primary-500) !important;
    color: white !important;
}

section.hero .navbar .cta-nav:hover {
    background-color: var(--primary-700) !important;
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--primary-500);
    border: 2px solid var(--primary-500);
}

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

.btn-small {
    padding: var(--spacing-xs) var(--spacing-sm);
    font-size: 16px;
}

.cta-nav {
    background-color: var(--primary-500);
    color: white !important;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
}

.cta-nav:hover {
    background-color: var(--primary-700);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(253, 252, 249, 0.85);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid rgba(123, 42, 75, 0.1);
    transition: all 0.3s ease;
}

/* Scrolled state - lighter header */
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* CTA Nav styling for normal header */
.cta-nav {
    background-color: var(--primary-500);
    color: white !important;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* CTA Nav styling for scrolled/light header */
.navbar.scrolled .cta-nav {
    background-color: var(--primary-500);
    color: white !important;
}

.navbar.scrolled .cta-nav:hover {
    background-color: var(--primary-700);
    transform: translateY(-2px);
}

.cta-nav:hover {
    background-color: var(--primary-700);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Images Styling */
.logo-image {
    height: 55px;
    width: auto;
    vertical-align: middle;
}

.logo-hero-image {
    max-width: 250px;
    width: auto;
    height: auto;
    margin-bottom: var(--spacing-md);
}

.hero-logo {
    margin-top: var(--spacing-lg);
}

.logo-footer-image {
    height: 30px;
    width: auto;
    vertical-align: middle;
    margin-bottom: var(--spacing-xs);
}

/* Legacy logo text styling (keeping for reference) */
.logo-text {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-500);
    text-shadow: 2px 2px 0 rgba(123, 42, 75, 0.2);
}

.nav-menu {
    display: flex;
    gap: var(--spacing-lg);
    align-items: center;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--text-primary);
    text-decoration: none;
    transition: color 250ms ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-500);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-500);
    transition: width 250ms ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 10001; /* Higher z-index than menu */
    position: relative;
}

/* Close button inside hamburger menu */
.menu-close-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    color: white;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10002; /* Even higher than hamburger */
    width: 40px;
    height: 40px;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.menu-close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.nav-menu.active .menu-close-btn {
    display: flex;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-500);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-700) 100%);
    color: white;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.musical-staff {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    background-image: 
        /* Musical staff lines */
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 18px,
            rgba(255, 255, 255, 0.3) 18px,
            rgba(255, 255, 255, 0.3) 20px
        ),
        /* Simple music notes - fewer and larger */
        radial-gradient(circle at 15% 25%, rgba(255, 199, 0, 0.4) 8px, transparent 8px),
        radial-gradient(circle at 35% 45%, rgba(255, 199, 0, 0.4) 8px, transparent 8px),
        radial-gradient(circle at 55% 35%, rgba(255, 199, 0, 0.4) 8px, transparent 8px),
        radial-gradient(circle at 75% 25%, rgba(255, 199, 0, 0.4) 8px, transparent 8px),
        radial-gradient(circle at 85% 55%, rgba(255, 199, 0, 0.4) 8px, transparent 8px),
        radial-gradient(circle at 25% 65%, rgba(255, 199, 0, 0.4) 8px, transparent 8px);
    background-size: 
        100% 20px,
        150px 120px,
        150px 120px,
        150px 120px,
        150px 120px,
        150px 120px,
        150px 120px;
    background-repeat: repeat, repeat, repeat, repeat, repeat, repeat, repeat;
    animation: musicalNotes 30s linear infinite;
}

@keyframes musicalNotes {
    0% {
        background-position: 0 0, 0 0, 0 0, 0 0, 0 0, 0 0;
    }
    100% {
        background-position: 0 0, 150px 60px, 150px 30px, 150px 90px, 150px 120px, 150px 150px;
    }
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.logo-chalk {
    font-family: var(--font-heading);
    font-size: 80px;
    font-weight: 700;
    color: white;
    text-shadow: 
        3px 3px 0 rgba(123, 42, 75, 0.3),
        6px 6px 0 rgba(0, 0, 0, 0.1);
    margin-bottom: var(--spacing-md);
    letter-spacing: 2px;
}

.hero-title {
    font-size: 72px;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: var(--spacing-xl);
    opacity: 0.9;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.hero-instagram {
    max-width: 400px;
    margin-left: auto;
}

.instagram-embed {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.instagram-embed h3 {
    font-size: 24px;
    margin-bottom: var(--spacing-xs);
}

.instagram-placeholder {
    text-align: center;
    padding: var(--spacing-lg);
    border: 2px dashed rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-md);
    margin-top: var(--spacing-md);
}

.instagram-icon {
    font-size: 48px;
    margin-bottom: var(--spacing-sm);
}

.instagram-embed p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-md);
}

.instagram-embed a {
    color: var(--primary-300);
    text-decoration: none;
    font-weight: 600;
}

.instagram-embed a:hover {
    color: white;
}

.homepage-photo {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    margin-top: var(--spacing-md);
}

.hero-photo-image {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: contain;
    display: block;
}

/* Sections */
.section {
    padding: var(--spacing-xxxl) 0;
    position: relative;
    overflow: hidden;
}

.section-dark {
    background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-700) 100%);
    color: white;
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
    color: white;
}

.section-dark p {
    color: rgba(255, 255, 255, 0.9);
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    position: relative;
}

.section-subtitle {
    text-align: center;
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-dark .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

/* Confetti Background */
.confetti-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.confetti-bg::before,
.confetti-bg::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
}

.confetti-bg::before {
    background: var(--accent-yellow);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.confetti-bg::after {
    background: var(--accent-teal);
    top: 60%;
    right: 10%;
    animation-delay: 3s;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.about-card {
    background: var(--surface-color);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.about-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.features-list {
    margin-top: var(--spacing-md);
}

.feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.feature-icon {
    font-size: 24px;
    width: 32px;
    text-align: center;
}

.stats {
    display: flex;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-md);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-500);
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-story {
    background: var(--primary-100);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-500);
}

.about-story h3 {
    color: var(--primary-500);
}

/* Rehearsal Section */
.rehearsal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

.rehearsal-info,
.rehearsal-details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.info-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.schedule {
    margin: var(--spacing-md) 0;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.schedule-day {
    font-weight: 600;
    font-size: 18px;
}

.schedule-time {
    font-size: 18px;
    color: var(--accent-yellow);
}

.schedule-break {
    padding: var(--spacing-sm) 0;
    font-style: italic;
    color: var(--accent-teal);
}

.location h4 {
    color: var(--accent-yellow);
    margin-bottom: var(--spacing-sm);
}

.expectations-list,
.requirements-list {
    list-style: none;
    margin: var(--spacing-md) 0;
}

.expectations-list li,
.requirements-list li {
    margin-bottom: var(--spacing-sm);
    padding-left: var(--spacing-sm);
    position: relative;
}

.expectations-list li::before,
.requirements-list li::before {
    content: '•';
    color: var(--accent-yellow);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.small-note {
    font-size: 14px;
    color: var(--accent-teal);
    font-style: italic;
    margin-top: var(--spacing-sm);
}

/* Agenda Section */
.agenda-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.event-card {
    background: var(--surface-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
}

.event-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.event-date {
    background: var(--primary-500);
    color: white;
    padding: var(--spacing-md);
    text-align: center;
    min-width: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-date .day {
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
}

.event-date .month {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-details {
    padding: var(--spacing-md);
    flex: 1;
}

.event-details h3 {
    color: var(--primary-500);
    margin-bottom: var(--spacing-sm);
}

.event-time {
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xs);
}

.event-location {
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.event-description {
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: var(--spacing-md);
}

.agenda-updates {
    text-align: center;
    padding: var(--spacing-lg);
    background: var(--primary-100);
    border-radius: var(--radius-md);
    border: 1px solid var(--primary-500);
}

.agenda-updates a {
    color: var(--primary-500);
    font-weight: 600;
    text-decoration: none;
}

.agenda-updates a:hover {
    text-decoration: underline;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.gallery-item {
    aspect-ratio: 4/3;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover {
    transform: scale(1.03);
}

/* Gallery item images styling */
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: var(--spacing-md);
}

.placeholder-icon {
    font-size: 48px;
    margin-bottom: var(--spacing-sm);
}

.gallery-placeholder p {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

/* Join Section */
.join-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-xl);
}

.join-card {
    background: var(--surface-color);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
}

.join-steps {
    margin: var(--spacing-xl) 0;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    position: relative;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 24px;
    top: 60px;
    width: 2px;
    height: 40px;
    background: var(--primary-100);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--primary-500);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 20px;
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--primary-500);
    margin-bottom: var(--spacing-xs);
}

.contact-info {
    margin-top: var(--spacing-lg);
    padding: var(--spacing-md);
    background: var(--primary-100);
    border-radius: var(--radius-sm);
}

.contact-info h3 {
    color: #2C1810;
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
}

.instruments-needed {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.instruments-needed h3 {
    color: var(--accent-yellow);
    margin-bottom: var(--spacing-md);
}

.instruments-grid {
    display: grid;
    gap: var(--spacing-sm);
}

.instrument-needed {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
}

.instrument-icon {
    font-size: 24px;
}

/* Sponsoring Section */
.sponsor-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
}

.sponsor-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.sponsor-ways {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.sponsor-ways h3 {
    color: var(--accent-yellow);
    margin-bottom: var(--spacing-md);
}

.lottery-info {
    background: rgba(255, 255, 255, 0.1);
    padding: var(--spacing-md);
    border-radius: var(--radius-sm);
    margin: var(--spacing-md) 0;
}

.support-list {
    list-style: none;
    margin: var(--spacing-md) 0;
}

.support-list li {
    margin-bottom: var(--spacing-sm);
    padding-left: var(--spacing-sm);
    position: relative;
}

.support-list li::before {
    content: '•';
    color: var(--accent-teal);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* FAQ Section */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--spacing-lg);
}

.faq-item {
    background: var(--surface-color);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

.faq-item h3 {
    color: var(--primary-500);
    margin-bottom: var(--spacing-sm);
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
}

.contact-form {
    background: #FDFCF9;
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    border: 1px solid #E0D8CF;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
    color: #2C1810;
    font-size: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--spacing-md);
    border: 2px solid #D4C4B0;
    border-radius: var(--radius-md);
    background: #FFFFFF;
    color: #2C1810;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #8B7355;
    font-weight: 400;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #7B2A4B;
    box-shadow: 0 0 0 3px rgba(123, 42, 75, 0.15);
    background: #FFFEFB;
}

/* Submit button styling */
.contact-form .btn {
    background: #7B2A4B;
    color: white;
    border: none;
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: 18px;
    font-weight: 600;
    margin-top: var(--spacing-md);
    transition: all 0.3s ease;
}

.contact-form .btn:hover {
    background: #5C1F38;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(123, 42, 75, 0.3);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.contact-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: var(--spacing-md);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-item h4 {
    color: var(--accent-yellow);
    margin-bottom: var(--spacing-xs);
}

.contact-item a {
    color: var(--accent-teal);
    text-decoration: none;
}

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

/* Footer */
.footer {
    background: var(--text-primary);
    color: white;
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 250ms ease;
}

.footer-links a:hover {
    color: var(--accent-yellow);
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.social-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 250ms ease;
}

.social-link:hover {
    color: var(--accent-teal);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-lg);
    }
    
    .hero-instagram {
        margin: 0 auto;
    }
    
    .rehearsal-grid,
    .sponsor-content,
    .contact-grid,
    .join-content {
        grid-template-columns: 1fr;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* Hide homepage logo on mobile but maintain layout space */
    section.hero .hero-content .hero-logo {
        visibility: hidden !important;
        height: 80px !important; /* Reserve smaller space for logo */
        margin-bottom: var(--spacing-sm);
    }
    
    section.hero .hero-content .hero-logo img {
        visibility: hidden !important;
    }
    
    /* Backup CSS rule using mobile-hidden class */
    .mobile-hidden {
        visibility: hidden !important;
    }
    
    /* Ensure proper spacing for hero content without logo */
    .hero-content {
        padding-top: 80px; /* Add smaller top padding */
    }
    
    /* Typography adjustments */
    h1 {
        font-size: 48px;
    }
    
    h2 {
        font-size: 36px;
    }
    
    h3 {
        font-size: 28px;
    }
    
    /* Navigation */
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
        z-index: 10001; /* Higher z-index than menu */
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--primary-500);
        display: none;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        z-index: 9999;
        padding: 80px var(--spacing-md) var(--spacing-md);
        gap: 6px;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-link {
        color: white !important;
        text-align: center;
        font-size: 24px !important;
        font-weight: 700 !important;
        text-decoration: none !important;
        padding: 16px 32px !important;
        width: 85% !important;
        max-width: 400px !important;
        background: rgba(255, 255, 255, 0.1) !important;
        border-radius: 10px !important;
        margin: 4px 0 !important;
        transition: all 0.3s ease !important;
        border: 2px solid rgba(255, 255, 255, 0.3) !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
        display: block !important;
        line-height: 1.2 !important;
    }
    
    .nav-link:hover {
        color: var(--accent-yellow) !important;
        background: rgba(255, 255, 255, 0.2) !important;
        transform: scale(1.05) !important;
        border-color: var(--accent-yellow) !important;
    }
    
    .nav-link.cta-nav {
        background: var(--accent-yellow) !important;
        color: var(--primary-500) !important;
        border: 3px solid var(--accent-yellow) !important;
        font-weight: 900 !important;
        font-size: 26px !important;
        box-shadow: 0 6px 20px rgba(255, 199, 0, 0.4) !important;
        padding: 18px 36px !important;
        margin: 8px 0 !important;
    }
    
    .nav-link.cta-nav:hover {
        background: white !important;
        color: var(--primary-500) !important;
        border-color: white !important;
        transform: scale(1.05) !important;
    }
        border-bottom-color: var(--accent-yellow);
    }
    
    .nav-link.cta-nav {
        background: rgba(255, 255, 255, 0.2);
        border-radius: var(--radius-md);
        padding: var(--spacing-md);
        margin-top: var(--spacing-md);
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    body.menu-open {
        overflow: hidden;
    }
    
    /* Spacing */
    .section {
        padding: var(--spacing-xxl) 0;
    }
    
    /* Hero */
    .logo-chalk {
        font-size: 64px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    /* Layout adjustments */
    .agenda-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .stats {
        justify-content: space-around;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-md);
    }
    
    .event-card {
        flex-direction: column;
    }
    
    .event-date {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    .btn {
        width: 100%;
        margin-bottom: var(--spacing-sm);
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto;
    }
    
    /* Logo responsive adjustments */
    .logo-image {
        height: 30px;
    }
    
    .logo-hero-image {
        max-width: 160px;
        margin-top: 100px;
    }
    
    .logo-footer-image {
        height: 25px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Print styles */
@media print {
    .navbar,
    .hero-instagram,
    .contact-form,
    .footer {
        display: none;
    }
    
    .section {
        padding: var(--spacing-md) 0;
    }
    
    .hero {
        min-height: auto;
        page-break-after: always;
    }
}