/* ==================== SCOUTING FORM STYLES ==================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #ffb13b 0%, #00fffd 100%);
    min-height: 100vh;
    padding: 20px;
    line-height: 1.6;
}

.scouting-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.scouting-header {
    background: linear-gradient(135deg, #ffb13b 0%, #00fffd 100%);
    color: white;
    padding: 2rem;
    text-align: center;
    position: relative;
}

.back-button {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.back-button:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateX(-5px);
}

.scouting-header h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.scouting-header p {
    font-size: 1rem;
    opacity: 0.95;
}

.scouting-form {
    padding: 2rem;
}

/* Form Sections */
.form-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #f0f0f0;
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section h2 {
    font-size: 1.3rem;
    color: #004f53;
    margin-bottom: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Form Groups */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.form-group input[type="text"],
.form-group input[type="number"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffb13b;
    box-shadow: 0 0 0 3px rgba(255, 177, 59, 0.1);
}

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

/* Radio Groups */
.radio-group {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.radio-group label,
.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    font-size: 0.95rem;
}

.radio-group input[type="radio"],
.checkbox-group input[type="checkbox"] {
    cursor: pointer;
    width: 18px;
    height: 18px;
    accent-color: #ffb13b;
}

/* Checkbox Groups */
.checkbox-group {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.8rem;
}

@media (min-width: 600px) {
    .checkbox-group {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Range Slider */
.form-group input[type="range"] {
    width: calc(100% - 50px);
    margin-right: 10px;
    vertical-align: middle;
}

.form-group #ratingValue {
    font-weight: bold;
    color: #ffb13b;
    font-size: 1.1rem;
}

/* Photo Capture */
.photo-capture {
    border: 3px dashed #ffb13b;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.photo-capture:hover {
    background: #fff9f0;
    border-color: #00fffd;
}

.photo-capture input[type="file"] {
    display: none;
}

.photo-preview {
    margin-top: 1rem;
}

.photo-preview img {
    max-width: 100%;
    max-height: 300px;
    border-radius: 8px;
    margin-top: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.btn {
    flex: 1;
    min-width: 150px;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit {
    background: linear-gradient(135deg, #ffb13b 0%, #00fffd 100%);
    color: white;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 177, 59, 0.3);
}

.btn-submit:active {
    transform: translateY(0);
}

.btn-reset {
    background: #f0f0f0;
    color: #333;
}

.btn-reset:hover {
    background: #e0e0e0;
}

/* Success Message */
.success-message {
    padding: 2rem;
    text-align: center;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-radius: 10px;
    margin: 2rem;
}

.success-message h3 {
    color: #2e7d32;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.success-message p {
    color: #558b2f;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.success-message button {
    padding: 12px 30px;
    background: #2e7d32;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.success-message button:hover {
    background: #1b5e20;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 600px) {
    .scouting-container {
        border-radius: 0;
    }

    .scouting-header {
        padding: 1.5rem;
    }

    .scouting-header h1 {
        font-size: 1.5rem;
    }

    .scouting-form {
        padding: 1.5rem;
    }

    .form-section {
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .radio-group {
        gap: 1rem;
    }

    .form-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}

/* Loading State */
.form-actions button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
/* ==================== DONATION TIERS SECTION ==================== */

.donation-section {
    padding: 2.5rem;
    background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
    border-bottom: 3px solid #ffb13b;
}

.donation-section h2 {
    text-align: center;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 2rem;
}

.donation-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

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

.tier-card {
    background: white;
    border-radius: 12px;
    padding: 1.8rem;
    text-align: center;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.tier-card h3 {
    color: #333;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.tier-price {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1.2rem;
}

.tier-card.bronze {
    border-color: #CD7F32;
    background: linear-gradient(135deg, #fff9f0 0%, #ffe8d6 100%);
}

.tier-card.bronze h3 {
    color: #CD7F32;
}

.tier-card.bronze .tier-price {
    color: #CD7F32;
}

.tier-card.silver {
    border-color: #C0C0C0;
    background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
}

.tier-card.silver h3 {
    color: #696969;
}

.tier-card.silver .tier-price {
    color: #696969;
}

.tier-card.gold {
    border-color: #FFD700;
    background: linear-gradient(135deg, #fffef0 0%, #fff9e6 100%);
}

.tier-card.gold h3 {
    color: #FFB800;
}

.tier-card.gold .tier-price {
    color: #FFB800;
}

.tier-card.platinum {
    border-color: #00fffd;
    background: linear-gradient(135deg, #f0fffe 0%, #e0fffd 100%);
}

.tier-card.platinum h3 {
    color: #00b4cc;
}

.tier-card.platinum .tier-price {
    color: #00b4cc;
}

.tier-card.featured {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(255, 184, 59, 0.2);
}

.tier-benefits {
    list-style: none;
    margin: 1.5rem 0;
    text-align: left;
    font-size: 0.95rem;
    color: #555;
}

.tier-benefits li {
    padding: 0.6rem 0;
    border-bottom: 1px solid #eee;
}

.tier-benefits li:last-child {
    border-bottom: none;
}

.donation-contact {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    border: 2px solid #ffb13b;
}

.donation-contact p {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    font-weight: 500;
}

.donate-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ffb13b 0%, #ff9000 100%);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.donate-btn:hover {
    background: linear-gradient(135deg, #ff9000 0%, #ff7700 100%);
    box-shadow: 0 6px 16px rgba(255, 176, 59, 0.3);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .donation-tiers {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .tier-card.featured {
        transform: scale(1);
        grid-column: 1 / -1;
    }

    .tier-card {
        padding: 1.2rem;
    }

    .tier-card h3 {
        font-size: 1.1rem;
    }

    .tier-price {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .donation-tiers {
        grid-template-columns: 1fr;
    }

    .tier-card.featured {
        grid-column: 1;
    }

    .donation-section {
        padding: 1.5rem;
    }

    .donation-section h2 {
        font-size: 1.5rem;
    }
}