﻿/* Redemption Wrestling Academy Custom Styles */

:root {
    --redemption-primary: #c41e3a;
    --redemption-secondary: #1a1a2e;
    --redemption-accent: #ffd700;
    --redemption-light: #f8f9fa;
    --redemption-dark: #0f0f1e;
}

/* Override theme colors */
.id-color {
    color: var(--redemption-primary) !important;
}

.bg-color {
    background-color: var(--redemption-primary) !important;
}

.bg-dark-2 {
    background-color: var(--redemption-secondary) !important;
}

/* Typography */
.scripture-quote {
    font-style: italic;
    color: var(--redemption-accent);
    border-left: 3px solid var(--redemption-primary);
    padding-left: 20px;
    margin: 20px 0;
}

    .scripture-quote footer {
        font-size: 0.9em;
        margin-top: 10px;
        color: #ccc;
    }

.scripture-quote-box {
    background: rgba(196, 30, 58, 0.1);
    border: 2px solid var(--redemption-primary);
}

/* Buttons */
.btn-main {
    background: var(--redemption-primary);
    border-color: var(--redemption-primary);
}

    .btn-main:hover {
        background: #a01829;
        border-color: #a01829;
    }

.btn-line {
    background: transparent;
    border: 2px solid var(--redemption-primary);
    color: var(--redemption-primary);
}

    .btn-line:hover {
        background: var(--redemption-primary);
        color: #fff;
    }

/* Pricing Tables */
.pricing-table {
    background: var(--redemption-secondary);
    border: 2px solid #2a2a3e;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

    .pricing-table:hover {
        border-color: var(--redemption-primary);
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(196, 30, 58, 0.3);
    }

    .pricing-table.pricing-featured {
        border-color: var(--redemption-primary);
        position: relative;
    }

    .pricing-table .ribbon,
    .pricing-table .ribbon-small {
        background: var(--redemption-accent);
        color: var(--redemption-dark);
        position: absolute;
        top: 15px;
        right: -5px;
        padding: 5px 15px;
        font-weight: bold;
        font-size: 0.85em;
        z-index: 1;
    }

        .pricing-table .ribbon::after {
            content: '';
            position: absolute;
            right: 0;
            bottom: -5px;
            border-left: 5px solid #d4af37;
            border-bottom: 5px solid transparent;
        }

.pricing-head {
    background: linear-gradient(135deg, var(--redemption-primary) 0%, #a01829 100%);
    padding: 30px 20px;
    text-align: center;
}

    .pricing-head h4 {
        color: #fff;
        margin-bottom: 5px;
    }

    .pricing-head .age-range {
        color: var(--redemption-accent);
        font-weight: bold;
    }

.pricing-price {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
}

    .pricing-price .price {
        font-size: 3em;
        color: var(--redemption-primary);
        font-weight: bold;
    }

        .pricing-price .price span {
            font-size: 0.4em;
            color: #aaa;
        }

.pricing-body {
    padding: 20px;
}

    .pricing-body ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .pricing-body ul li {
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

            .pricing-body ul li:last-child {
                border-bottom: none;
            }

            .pricing-body ul li i {
                margin-right: 10px;
            }

.pricing-footer {
    padding: 20px;
}

/* Program Cards */
.de-box-a {
    background: var(--redemption-secondary);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

    .de-box-a:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(196, 30, 58, 0.4);
    }

    .de-box-a.de-box-featured {
        border: 2px solid var(--redemption-primary);
    }

    .de-box-a .badge-featured {
        background: var(--redemption-accent);
        color: var(--redemption-dark);
        padding: 5px 15px;
        border-radius: 20px;
        font-weight: bold;
        font-size: 0.85em;
        display: inline-block;
        margin-bottom: 10px;
    }

    .de-box-a .program-age {
        color: var(--redemption-accent);
        font-weight: bold;
        margin-bottom: 10px;
    }

    .de-box-a .price {
        font-size: 2em;
        color: var(--redemption-primary);
        font-weight: bold;
        margin: 15px 0;
    }

        .de-box-a .price span {
            font-size: 0.5em;
            color: #aaa;
        }

/* Feature Boxes */
.de-feature-box,
.de-feature-box-s1 {
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

    .de-feature-box:hover,
    .de-feature-box-s1:hover {
        background: rgba(196, 30, 58, 0.1);
        transform: translateY(-5px);
    }

    .de-feature-box .d-icon,
    .de-feature-box-s1 .d-icon {
        font-size: 3em;
        margin-bottom: 20px;
    }

/* Schedule Table */
.schedule-table {
    background: var(--redemption-secondary);
    border-radius: 10px;
    overflow: hidden;
    padding: 20px;
}

    .schedule-table table {
        margin: 0;
    }

    .schedule-table th {
        background: var(--redemption-primary);
        color: #fff;
        padding: 15px;
        text-align: center;
    }

    .schedule-table td {
        padding: 15px;
        text-align: center;
        border-color: rgba(255, 255, 255, 0.1);
    }

        .schedule-table td.time {
            font-weight: bold;
            color: var(--redemption-accent);
        }

        .schedule-table td.junior-beginner {
            background: rgba(76, 175, 80, 0.2);
        }

        .schedule-table td.junior-intermediate {
            background: rgba(33, 150, 243, 0.2);
        }

        .schedule-table td.youth-advanced {
            background: rgba(156, 39, 176, 0.2);
        }

/* Contact Form */
.contact-form-wrapper {
    background: var(--redemption-secondary);
    padding: 40px;
    border-radius: 10px;
    border: 2px solid rgba(196, 30, 58, 0.3);
}

.contact-info h5 {
    color: var(--redemption-primary);
    margin-bottom: 5px;
}

.contact-info a {
    color: var(--redemption-light);
    text-decoration: none;
}

    .contact-info a:hover {
        color: var(--redemption-primary);
    }

/* Membership Form */
.membership-form-wrapper {
    background: var(--redemption-secondary);
    padding: 40px;
    border-radius: 10px;
}

.form-step {
    display: none;
}

    .form-step.active {
        display: block;
    }

.plan-card {
    position: relative;
    border: 3px solid #2a2a3e;
    border-radius: 10px;
    padding: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .plan-card:hover {
        border-color: var(--redemption-primary);
        background: rgba(196, 30, 58, 0.05);
    }

    .plan-card.featured {
        border-color: var(--redemption-primary);
    }

    .plan-card input[type="radio"] {
        position: absolute;
        opacity: 0;
    }

        .plan-card input[type="radio"]:checked + label {
            border-color: var(--redemption-primary);
        }

            .plan-card input[type="radio"]:checked + label .plan-check {
                opacity: 1;
            }

    .plan-card label {
        cursor: pointer;
        margin: 0;
    }

    .plan-card .plan-check {
        position: absolute;
        top: 10px;
        right: 10px;
        font-size: 2em;
        color: var(--redemption-primary);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .plan-card .plan-description {
        color: #aaa;
        font-size: 0.9em;
        margin: 10px 0;
    }

    .plan-card .plan-price {
        font-size: 2em;
        color: var(--redemption-primary);
        font-weight: bold;
        margin-top: 15px;
    }

        .plan-card .plan-price span {
            font-size: 0.5em;
            color: #aaa;
        }

/* Gallery */
.gallery-grid {
    margin-top: 30px;
}

.btn-filter {
    background: transparent;
    border: 2px solid var(--redemption-primary);
    color: var(--redemption-primary);
    padding: 10px 25px;
    margin: 5px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .btn-filter:hover,
    .btn-filter.active {
        background: var(--redemption-primary);
        color: #fff;
    }

.de-image-hover {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

    .de-image-hover:hover .dih-overlay {
        opacity: 1;
    }

    .de-image-hover:hover img {
        transform: scale(1.1);
    }

    .de-image-hover img {
        transition: transform 0.5s ease;
    }

.dih-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(196, 30, 58, 0.9);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dih-title-wrap {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 2;
}

.dih-title {
    color: #fff;
    font-size: 1.2em;
    font-weight: bold;
}

/* Policy Pages */
.policy-content h3 {
    color: var(--redemption-primary);
    margin-top: 30px;
    margin-bottom: 15px;
}

.policy-content h5 {
    color: var(--redemption-accent);
    margin-top: 20px;
    margin-bottom: 10px;
}

.policy-content ul {
    margin-bottom: 20px;
}

/* Confirmation Page */
.confirmation-wrapper {
    padding: 40px;
}

.success-icon {
    animation: scaleIn 0.5s ease-in-out;
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.confirmation-details {
    text-align: left;
}

/* Accordion */
.accordion-item {
    background: var(--redemption-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 10px;
    border-radius: 5px;
    overflow: hidden;
}

.accordion-button {
    background: rgba(196, 30, 58, 0.1);
    color: #fff;
    font-weight: bold;
}

    .accordion-button:not(.collapsed) {
        background: var(--redemption-primary);
        color: #fff;
    }

    .accordion-button:focus {
        box-shadow: 0 0 0 0.25rem rgba(196, 30, 58, 0.25);
    }

.accordion-body {
    background: var(--redemption-secondary);
    color: #aaa;
}

/* Responsive */
@media (max-width: 991px) {
    .pricing-table {
        margin-bottom: 20px;
    }

    .plan-card {
        margin-bottom: 15px;
    }
}

@media (max-width: 767px) {
    .pricing-price .price {
        font-size: 2.5em;
    }

    .schedule-table {
        overflow-x: auto;
    }
}