/* components.css - Componentes adicionales de Forge */


/* Navbar Styling */

.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 30px rgba(220, 53, 69, 0.2);
}

.navbar-brand {
    font-family: var(--font-title);
    font-size: 1.8rem;
    font-weight: 900;
    color: white !important;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.navbar-brand i {
    color: var(--primary-red);
    font-size: 2rem;
    animation: flame 2s ease-in-out infinite;
}

.brand-text {
    background: linear-gradient(135deg, #ffffff 0%, var(--primary-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-red) !important;
}

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

.navbar-toggler {
    border: 2px solid var(--primary-red);
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(220, 53, 69, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@keyframes flame {
    0%,
    100% {
        transform: scale(1) rotate(0deg);
        filter: drop-shadow(0 0 5px var(--glow-color));
    }
    50% {
        transform: scale(1.1) rotate(5deg);
        filter: drop-shadow(0 0 15px var(--glow-color));
    }
}


/* Mobile Menu */

@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(0, 0, 0, 0.98);
        padding: 1.5rem;
        margin-top: 1rem;
        border-radius: 10px;
        border: 1px solid rgba(220, 53, 69, 0.3);
    }
    .nav-item {
        margin: 0.5rem 0;
    }
    .nav-link::after {
        display: none;
    }
}


/* Submodalidades List (para Katas) */

.submodalidades-list {
    margin: 1rem 0;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border: 1px solid rgba(220, 53, 69, 0.2);
}

.submodalidad-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 600;
}

.submodalidad-badge i {
    color: var(--primary-red);
    font-size: 0.8rem;
}

.discipline-card:hover .submodalidades-list {
    border-color: var(--primary-red);
    background: rgba(220, 53, 69, 0.1);
}


/* Discipline Cards */

.discipline-card {
    background: var(--light-gray);
    border: 1px solid rgba(220, 53, 69, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
    height: 100%;
}

.discipline-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-red);
    box-shadow: 0 15px 40px var(--shadow-color);
}

.discipline-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px var(--shadow-color);
    transition: all 0.4s ease;
}

.discipline-card:hover .discipline-icon {
    transform: scale(1.1) rotate(360deg);
}

.discipline-icon i {
    font-size: 3rem;
    color: white;
}

.discipline-title {
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.discipline-description {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.discipline-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(220, 53, 69, 0.2);
}

.discipline-stats span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 600;
}

.discipline-stats i {
    color: var(--primary-red);
}


/* Advantages List */

.advantages-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.advantage-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--dark-gray);
    border: 1px solid rgba(220, 53, 69, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.advantage-item:hover {
    border-color: var(--primary-red);
    transform: translateX(10px);
    box-shadow: 0 10px 30px var(--shadow-color);
}

.advantage-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 5px 20px var(--shadow-color);
}

.advantage-content h5 {
    font-family: var(--font-title);
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.advantage-content p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.6;
}


/* About Visual - Martial Arts */

.about-visual-martial {
    position: relative;
    height: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.martial-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    width: 100%;
}

.martial-stat-box {
    background: var(--dark-gray);
    border: 1px solid rgba(220, 53, 69, 0.3);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.martial-stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--shadow-color) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.martial-stat-box:hover::before {
    opacity: 1;
}

.martial-stat-box:hover {
    transform: translateY(-10px);
    border-color: var(--primary-red);
    box-shadow: 0 15px 40px var(--shadow-color);
}

.impact-number {
    font-family: var(--font-title);
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.impact-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}


/* CTA Section Enhancements */

.cta-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, var(--dark-red) 0%, var(--black) 100%);
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.cta-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    animation: float 25s ease-in-out infinite;
}

.cta-shape-1 {
    width: 600px;
    height: 600px;
    background: rgba(220, 53, 69, 0.3);
    top: -20%;
    left: -10%;
}

.cta-shape-2 {
    width: 500px;
    height: 500px;
    background: rgba(220, 53, 69, 0.2);
    bottom: -20%;
    right: -10%;
    animation-delay: 5s;
}

.cta-icon {
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
}

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

.cta-buttons .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.trust-item i {
    font-size: 2rem;
    color: white;
    margin-bottom: 0.5rem;
}

.trust-item span {
    font-weight: 600;
    font-size: 0.95rem;
}


/* Background Light Effects */

.bg-light-custom {
    background: var(--dark-gray) !important;
}


/* Process Timeline (si se añade) */

.process-timeline {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    position: relative;
}

.process-step {
    flex: 1;
    min-width: 250px;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 900;
    font-family: var(--font-title);
    color: white;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px var(--shadow-color);
    position: relative;
    z-index: 2;
}

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

.step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 10px 25px var(--shadow-color);
}

.step-icon i {
    font-size: 2rem;
    color: white;
}

.step-content h4 {
    font-family: var(--font-title);
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.step-content p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}


/* Glow Effects */

.glow-effect {
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%,
    100% {
        box-shadow: 0 0 20px var(--shadow-color);
    }
    50% {
        box-shadow: 0 0 40px var(--glow-color);
    }
}


/* Text Animations */

.text-warning-custom {
    color: var(--primary-red) !important;
    font-weight: 700;
}


/* Footer Styling */

.footer {
    background: linear-gradient(180deg, var(--dark-gray) 0%, var(--black) 100%);
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0;
}

.footer-main {
    padding: 80px 0 40px;
    border-bottom: 1px solid rgba(220, 53, 69, 0.2);
}

.footer-brand {
    font-family: var(--font-title);
    font-size: 2rem;
    font-weight: 900;
    color: white;
    display: flex;
    align-items: center;
}

.footer-brand i {
    color: var(--primary-red);
    font-size: 2.5rem;
}

.footer-brand .brand-text {
    background: linear-gradient(135deg, #ffffff 0%, var(--primary-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin: 0;
}

.footer-title {
    font-family: var(--font-title);
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-red);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-red);
    transform: translateX(5px);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact i {
    color: var(--primary-red);
    margin-right: 1rem;
    margin-top: 0.2rem;
    font-size: 1.1rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--primary-red);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-link:hover {
    background: var(--primary-red);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 5px 20px var(--shadow-color);
}

.footer-newsletter {
    background: var(--dark-gray);
    border: 1px solid rgba(220, 53, 69, 0.3);
    border-radius: 15px;
    padding: 2rem;
}

.newsletter-title {
    font-family: var(--font-title);
    color: white;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.newsletter-text {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form-footer {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form-footer .form-control {
    flex: 1;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(220, 53, 69, 0.3);
    color: white;
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
}

.newsletter-form-footer .form-control:focus {
    background: rgba(0, 0, 0, 0.7);
    border-color: var(--primary-red);
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
    color: white;
}

.newsletter-form-footer .form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-form-footer .btn {
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
}

.footer-bottom {
    padding: 2rem 0;
    background: var(--black);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary-red);
}


/* Responsive Adjustments */

@media (max-width: 992px) {
    .martial-stats-grid {
        grid-template-columns: 1fr;
    }
    .discipline-stats {
        gap: 1rem;
    }
    .advantages-list {
        gap: 1rem;
    }
    .advantage-item {
        padding: 1rem;
    }
    .cta-buttons {
        flex-direction: column;
    }
    .cta-buttons .btn {
        width: 100%;
    }
    .trust-indicators {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .discipline-icon {
        width: 80px;
        height: 80px;
    }
    .discipline-icon i {
        font-size: 2.5rem;
    }
    .impact-number {
        font-size: 2.5rem;
    }
}