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

:root {
    --primary-purple: #8B5A96;
    --light-purple: #B19CD9;
    --dark-purple: #6A4C93;
    --accent-purple: #C8A2C8;
    --background-light: #F5F3F7;
    --background-white: #FFFFFF;
    --text-dark: #333333;
    --text-light: #666666;
    --border-light: #E0E0E0;
    --success-green: #4CAF50;
    --error-red: #F44336;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
}

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

/* Navigation */
.navbar {
    background: var(--background-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-purple);
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-purple);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--background-light) 0%, var(--background-white) 100%);
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-bio {
    margin-top: 2rem;
    max-width: 600px;
}

.hero-bio p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.hero-bio p:last-child {
    margin-bottom: 0;
}

.cta-button {
    display: inline-block;
    background: var(--primary-purple);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 90, 150, 0.3);
}

.cta-button:hover {
    background: var(--dark-purple);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 90, 150, 0.4);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-circle {
    position: relative;
    animation: float 3s ease-in-out infinite;
}

.music-image {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
}

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

/* Registration Section */
.registration-section {
    background: var(--background-white);
    padding: 80px 0;
}

.registration-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

.registration-form {
    max-width: 800px;
    margin: 0 auto;
    background: var(--background-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-light);
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-purple);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Radio and Checkbox Styles */
.pronoun-options,
.radio-options {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.radio-label,
.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: normal;
    padding: 12px 15px;
    border: 2px solid var(--border-light);
    border-radius: 10px;
    transition: all 0.3s ease;
    background: white;
    min-height: 44px; /* Minimum touch target for mobile */
    justify-content: center;
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.radio-label:hover,
.checkbox-label:hover {
    border-color: var(--primary-purple);
    background: rgba(139, 90, 150, 0.05);
}

.radio-label input[type="radio"],
.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    cursor: pointer;
    flex-shrink: 0;
}

/* When radio/checkbox is checked */
.radio-label:has(input:checked),
.checkbox-label:has(input:checked) {
    border-color: var(--primary-purple);
    background: rgba(139, 90, 150, 0.1);
    color: var(--primary-purple);
    font-weight: 600;
}

/* Fallback for browsers that don't support :has() */
.radio-label input[type="radio"]:checked + span,
.checkbox-label input[type="checkbox"]:checked + span {
    color: var(--primary-purple);
    font-weight: 600;
}

.custom-pronouns {
    margin-top: 10px;
}

/* Ensure radio buttons are visible and clickable */
.radio-label input[type="radio"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 2px solid var(--border-light);
    border-radius: 50%;
    background: white;
    position: relative;
}

.radio-label input[type="radio"]:checked {
    border-color: var(--primary-purple);
    background: var(--primary-purple);
}

.radio-label input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}

/* Focus states for accessibility */
.radio-label input[type="radio"]:focus {
    outline: 2px solid var(--primary-purple);
    outline-offset: 2px;
}

.radio-label:focus-within {
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 2px rgba(139, 90, 150, 0.2);
}

.checkbox-group {
    margin: 30px 0;
}

.checkmark {
    margin-left: 8px;
}


/* Submit Button */
.submit-button {
    width: 100%;
    background: var(--primary-purple);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.submit-button:hover {
    background: var(--dark-purple);
    transform: translateY(-2px);
}

/* Pricing Section */
.pricing-section {
    background: var(--background-light);
    padding: 80px 0;
}

.pricing-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

.pricing-card {
    background: var(--background-white);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 40px;
    max-width: 600px;
    margin: 0 auto 40px;
}

.pricing-card h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-purple);
    margin-bottom: 20px;
}

.pricing-details p {
    margin-bottom: 10px;
    color: var(--text-light);
}

.payment-info {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.payment-info h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.payment-info p {
    color: var(--text-light);
    margin-bottom: 10px;
}

.payment-button {
    display: inline-block;
    background: var(--primary-purple);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.payment-button:hover {
    background: var(--dark-purple);
    transform: translateY(-2px);
}

/* FAQ Section */
.faq-section {
    background: var(--background-white);
    padding: 80px 0;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

.faq-item {
    background: var(--background-light);
    margin-bottom: 15px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-dark);
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: rgba(139, 90, 150, 0.1);
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary-purple);
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 25px 20px;
    max-height: 200px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    background: var(--background-light);
    padding: 80px 0;
}

.contact-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contact-section > .container > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.contact-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 600px;
    margin: 0 auto;
}

.contact-method {
    background: var(--background-white);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.contact-method h3 {
    color: var(--text-dark);
    margin-bottom: 20px;
}

.contact-reveal {
    cursor: pointer;
    transition: all 0.3s ease;
}

.reveal-text {
    color: var(--primary-purple);
    font-style: italic;
    font-weight: 500;
}

.contact-info {
    font-weight: 600;
    color: var(--text-dark);
}

.contact-info.hidden {
    display: none;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 50px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.footer-brand h3 {
    color: var(--light-purple);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.footer-brand p {
    line-height: 1.6;
    color: #CCCCCC;
}

.footer-contact h4 {
    color: var(--light-purple);
    margin-bottom: 15px;
}

.footer-contact p {
    margin-bottom: 8px;
    color: #CCCCCC;
}

/* Payment Portal Styles */
.payment-header {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--dark-purple) 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.payment-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.payment-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.payment-methods {
    padding: 80px 0;
    background: var(--background-light);
}

.payment-methods h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.payment-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.payment-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.payment-option {
    background: var(--background-white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.payment-option.preferred {
    border-color: var(--primary-purple);
}

.payment-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-purple);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.payment-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    font-weight: bold;
    color: white;
}

.venmo-icon {
    background: #3D95CE;
}

.paypal-icon {
    background: #0070BA;
}

.payment-option h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.payment-option p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.payment-details h4 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.payment-info-box {
    background: var(--background-light);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 25px;
    border: 2px dashed var(--border-light);
}

.venmo-handle {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-purple);
    margin-bottom: 5px;
}

.real-name {
    color: var(--text-light);
    font-style: italic;
}

.paypal-email-reveal {
    cursor: pointer;
}

.payment-btn {
    background: var(--primary-purple);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.payment-btn:hover {
    background: var(--dark-purple);
    transform: translateY(-2px);
}

.venmo-btn {
    background: #3D95CE;
}

.venmo-btn:hover {
    background: #2E7BA8;
}

.paypal-btn {
    background: #0070BA;
}

.paypal-btn:hover {
    background: #005EA6;
}

/* Payment Amount Selector */
.payment-amount-selector {
    margin: 20px 0;
    text-align: left;
}

.payment-amount-selector label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 1rem;
}

.amount-select {
    width: 100%;
    padding: 10px 15px;
    border: 2px solid var(--border-light);
    border-radius: 10px;
    font-size: 1rem;
    background: white;
    color: var(--text-dark);
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.amount-select:focus {
    outline: none;
    border-color: var(--primary-purple);
}

.custom-amount-input {
    width: 100%;
    padding: 10px 15px;
    border: 2px solid var(--border-light);
    border-radius: 10px;
    font-size: 1rem;
    margin-top: 10px;
    transition: border-color 0.3s ease;
}

.custom-amount-input:focus {
    outline: none;
    border-color: var(--primary-purple);
}

.custom-amount-input::placeholder {
    color: var(--text-light);
}

.payment-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 10px;
    text-align: center;
    font-style: italic;
}

/* Payment Instructions */
.payment-instructions {
    background: var(--background-white);
    padding: 80px 0;
}

.payment-instructions h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

.instruction-steps {
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--background-light);
    border-radius: 15px;
}

.step-number {
    background: var(--primary-purple);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-content h3 {
    color: var(--text-dark);
    margin-bottom: 8px;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.6;
}

.payment-help {
    background: var(--background-light);
    padding: 80px 0;
}

.payment-help h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.payment-help > .container > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--background-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 0 20px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .music-image {
        width: 250px;
        height: 250px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .registration-form {
        padding: 30px 20px;
    }

    .pronoun-options,
    .radio-options {
        flex-direction: column;
        gap: 12px;
    }

    .radio-label,
    .checkbox-label {
        min-height: 50px; /* Larger touch targets on mobile */
        padding: 15px 20px;
        font-size: 1rem;
    }

    .radio-label input[type="radio"],
    .checkbox-label input[type="checkbox"] {
        width: 22px;
        height: 22px;
        margin-right: 12px;
    }

    .contact-methods {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .payment-options {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .payment-header h1 {
        font-size: 2.2rem;
    }

    .step {
        flex-direction: column;
        text-align: center;
    }

    .step-number {
        margin: 0 auto 15px;
    }
}

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

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .music-image {
        width: 200px;
        height: 200px;
    }

    .registration-form {
        padding: 20px 15px;
    }

    .faq-question {
        padding: 15px 20px;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 15px;
    }

    .contact-method {
        padding: 25px 20px;
    }

    .payment-option {
        padding: 30px 20px;
    }
}
