/* ===== KIDS PAGE STYLES ===== */

/* Kids Hero */
.kids-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/kids-hero-bg.jpg') center/cover;
    padding: 100px 0;
    color: var(--white);
    text-align: center;
    background-color: var(--bg-dark);
}

.kids-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-family: var(--heading-font);
}

.kids-hero .subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--white);
    opacity: 0.9;
}

.kids-logo {
    max-width: 200px;
    margin: 0 auto 2rem;
    display: block;
}

/* Age Groups */
.age-groups {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.age-group-card {
    background: var(--bg-card);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s;
    border: 1px solid rgba(255,255,255,0.1);
}

.age-group-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    border-color: var(--primary-color);
}

.age-group-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-family: var(--heading-font);
}

.age-group-card p,
.age-group-card ul li {
    color: var(--white);
    opacity: 0.9;
}

.age-group-card .age-badge {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

/* Policies Section */
.policies-section {
    background: var(--bg-darker);
    padding: 4rem 0;
}

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

.policy-card {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    border: 1px solid rgba(255,255,255,0.1);
}

.policy-card h4 {
    color: var(--white);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    font-family: var(--heading-font);
}

.policy-card h4 i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

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

.policy-card ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--white);
    opacity: 0.9;
}

.policy-card ul li:before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Features Banner */
.features-banner {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    margin: 3rem 0;
    text-align: center;
}

.features-banner h3 {
    margin-bottom: 1rem;
    font-family: var(--heading-font);
}

.features-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-item i {
    font-size: 1.5rem;
}

/* CTA Section */
.cta-section {
    background: var(--bg-darker);
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
    margin-top: 4rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.cta-section h2 {
    margin-bottom: 1rem;
    font-family: var(--heading-font);
}

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

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

.cta-buttons .btn {
    padding: 1rem 2rem;
}

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

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

/* Location Badge */
.location-badge {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    margin-bottom: 2rem;
}

/* Section Utilities */
.section {
    padding: var(--section-padding);
    background: var(--bg-dark);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-family: var(--heading-font);
    color: var(--white);
}

.text-center {
    text-align: center;
}

.max-width-800 {
    max-width: 800px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.lead {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

/* Photo Gallery Styles */
.gallery-section {
    padding: var(--section-padding);
    background: var(--bg-dark);
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 300px;
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border-color: var(--primary-color);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.gallery-item .gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-family: var(--heading-font);
}

.gallery-overlay p {
    color: var(--white);
    opacity: 0.9;
    font-size: 0.9rem;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-card), var(--bg-darker));
    color: var(--white);
    opacity: 0.5;
}

.gallery-placeholder i {
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.5;
}

/* Hours Section Styles */
.hours-section {
    background: var(--bg-darker);
    padding: var(--section-padding);
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.hours-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.hours-card h3 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
    font-family: var(--heading-font);
    font-size: 1.8rem;
}

.hours-grid {
    display: grid;
    gap: 1rem;
}

.hours-item {
    display: grid;
    grid-template-columns: 150px 1fr;
    align-items: center;
    padding: 1rem;
    background: rgba(255,255,255,0.02);
    border-radius: 6px;
    border-left: 3px solid var(--primary-color);
}

.hours-day {
    font-weight: bold;
    color: var(--white);
    font-size: 1.1rem;
}

.hours-time {
    color: var(--white);
    opacity: 0.9;
}

.hours-closed {
    color: var(--primary-color);
    font-style: italic;
}

.hours-note {
    text-align: center;
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(var(--primary-color-rgb), 0.1);
    border-radius: 6px;
    color: var(--white);
    opacity: 0.9;
    font-size: 0.95rem;
}

.hours-note i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* Membership Requirement Notices */
.membership-requirement-banner {
    background: linear-gradient(135deg, rgba(224, 31, 38, 0.15), rgba(224, 31, 38, 0.05));
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    padding: 1.25rem 1.5rem;
    margin: 2rem auto;
    max-width: 700px;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--white);
    font-size: 1.05rem;
}

.membership-requirement-banner i {
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.membership-requirement-banner strong {
    color: var(--primary-color);
}

.members-only-notice {
    background: rgba(224, 31, 38, 0.1);
    border-left: 4px solid var(--primary-color);
    padding: 1rem 1.5rem;
    margin: 1.5rem auto;
    max-width: 600px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-radius: 6px;
}

.members-only-notice i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.members-only-notice span {
    color: var(--white);
    font-size: 1rem;
    opacity: 0.95;
}

.members-only-notice strong {
    color: var(--primary-color);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .membership-requirement-banner {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    .members-only-notice {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
}

/* Kids Club Pricing Section */
.kids-pricing-section {
    background: var(--bg-darker);
    padding: var(--section-padding);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.pricing-header {
    text-align: center;
    margin-bottom: 3rem;
}

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

.pricing-card {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 2rem;
    border: 2px solid rgba(255,255,255,0.1);
    position: relative;
    transition: all 0.3s ease;
    text-align: center;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border-color: var(--primary-color);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, var(--bg-card), rgba(224, 31, 38, 0.05));
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.875rem;
}

.pricing-card h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: var(--heading-font);
}

.pricing-amount {
    margin-bottom: 1rem;
}

.pricing-amount .price {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    font-family: var(--heading-font);
}

.pricing-amount .period {
    font-size: 1.1rem;
    color: var(--white);
    opacity: 0.8;
}

.pricing-details {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.pricing-details p {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.pricing-details p:last-child {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Signup Fee Notice in Cards */
.signup-fee-notice {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin: 1rem 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.signup-fee-notice.priority {
    background: linear-gradient(135deg, rgba(224, 31, 38, 0.1), rgba(224, 31, 38, 0.05));
    border-color: rgba(224, 31, 38, 0.3);
}

.signup-fee-notice .fee-label {
    color: var(--white);
    opacity: 0.8;
    font-size: 0.9rem;
}

.signup-fee-notice .fee-amount {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.pricing-features li {
    color: var(--white);
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pricing-features li i {
    color: var(--primary-color);
    width: 16px;
}


/* Pricing Notes */
.pricing-notes {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 2rem;
    margin-top: 2rem;
}

.pricing-notes h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--heading-font);
}

.pricing-notes ul {
    list-style: none;
    padding: 0;
}

.pricing-notes ul li {
    color: var(--white);
    padding: 0.5rem 0;
    opacity: 0.9;
    padding-left: 1.5rem;
    position: relative;
}

.pricing-notes ul li:before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .pricing-amount .price {
        font-size: 2.5rem;
    }
    
    .signup-fee-notice {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

/* Kids Club Interest Form */
.kids-interest-form-section {
    background: var(--bg-dark);
    padding: var(--section-padding);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-card);
    border-radius: 12px;
    padding: 3rem;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h2 {
    color: var(--white);
    margin-bottom: 1rem;
    font-family: var(--heading-font);
    font-size: 2.2rem;
}

.form-header p {
    color: var(--white);
    opacity: 0.9;
    font-size: 1.1rem;
}

.kids-interest-form {
    display: grid;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255,255,255,0.05);
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 0.875rem 1rem;
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(224, 31, 38, 0.1);
    background: rgba(255,255,255,0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.5);
}

.form-group select option {
    background: var(--bg-darker);
    color: var(--white);
}

.checkbox-group {
    display: grid;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.75rem;
    background: rgba(255,255,255,0.03);
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.checkbox-item:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(224, 31, 38, 0.3);
}

.checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: var(--primary-color);
}

.checkbox-item span {
    color: var(--white);
    font-size: 0.95rem;
}

.btn-submit {
    margin-top: 1rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(224, 31, 38, 0.3);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-loading {
    display: none;
}

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

/* Error states */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #ff4444;
    box-shadow: 0 0 0 3px rgba(255, 68, 68, 0.1);
}

.error-message {
    color: #ff6b6b;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

/* Success message */
.success-message {
    text-align: center;
    padding: 2rem;
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.3);
    border-radius: 8px;
    color: var(--white);
}

.success-message h3 {
    color: #2ecc71;
    margin-bottom: 1rem;
    font-family: var(--heading-font);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .form-container {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-header h2 {
        font-size: 1.8rem;
    }
    
    .checkbox-group {
        gap: 0.5rem;
    }
    
    .checkbox-item {
        padding: 0.5rem;
    }
}