/* /Components/ContactMethod.razor.rz.scp.css */

.contact-method[b-zlv1hl4v0v] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-secondary);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.5rem 1.25rem;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(31,38,135,0.10);
    transition: background 0.2s, color 0.2s;
    border: none;
    border-radius: 12px;
    position: relative;
}

.contact-icon[b-zlv1hl4v0v] {
    display: flex;
    align-items: center;
    justify-content: center;
}


.contact-message[b-zlv1hl4v0v] {
    display: inline;
    white-space: nowrap;
}

.insta-link[b-zlv1hl4v0v] {
    background: #e50000;
}

    .insta-link:hover[b-zlv1hl4v0v] {
        background: #b80000;
        text-decoration: underline;
    }

.whatsapp-link[b-zlv1hl4v0v] {
    background: #25d366;
}

    .whatsapp-link:hover[b-zlv1hl4v0v] {
        background: #1ebe5d;
        text-decoration: underline;
    }


.email-link[b-zlv1hl4v0v] {
    background: #0072c6;
}

    .email-link:hover[b-zlv1hl4v0v] {
        background: #005fa3;
        text-decoration: underline;
    }

@media (max-width: 600px) {
    .contact-message[b-zlv1hl4v0v] {
        display: none;
    }

    .contact-method[b-zlv1hl4v0v] {
        padding: 0.5rem; 
    }
}
/* /Components/SiteFooter.razor.rz.scp.css */
.site-footer[b-8em5mo6jrx] {
    background: var(--color-primary);
    color: var(--color-secondary);
    padding: 1rem;
    text-align: center;
}
/* /Components/SiteHeader.razor.rz.scp.css */
.site-header[b-5ce8fqx8ls] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--color-primary);
    color: var(--color-secondary);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    text-align: center;
    z-index: 1001; /* Ensure header is above overlay */
}

    .site-header .navbar-brand[b-5ce8fqx8ls] {
        height: 40px;
    }

.nav-menu[b-5ce8fqx8ls] {
    display: flex;
    gap: 1.5rem;
    margin-right: 2rem;
}

.nav-menu-item[b-5ce8fqx8ls] {
    color: var(--color-secondary);
    font-size: 1rem;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.2s;
    font-family: 'Montserrat', 'Inter', Arial, sans-serif;
}

    .nav-menu-item:hover[b-5ce8fqx8ls],
    .nav-menu-item.active[b-5ce8fqx8ls] {
        font-size: 1.2rem;
        font-weight: 700;
    }

.hamburger[b-5ce8fqx8ls] {
    font-size: 2rem;
    background: none;
    border: none;
    color: var(--color-secondary);
    cursor: pointer;
    display: none; /* Hide by default, show on small screens*/
}

/* Mobile styles: less than 700px */
@media (max-width: 699px) {
    .nav-menu[b-5ce8fqx8ls] {
        display: none;
    }

    .hamburger[b-5ce8fqx8ls] {
        display: block;
    }
}

.menu-overlay[b-5ce8fqx8ls] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(24,24,24,0.98);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000; /* Below header */
}

.overlay-nav[b-5ce8fqx8ls] {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
}

.overlay-menu-item[b-5ce8fqx8ls] {
    color: var(--color-secondary);
    font-size: 2.5rem;
    font-weight: 700;
    text-decoration: none !important;
    transition: color 0.2s;
    font-family: 'Montserrat', 'Inter', Arial, sans-serif;
}

    .overlay-menu-item:hover[b-5ce8fqx8ls],
    .overlay-menu-item.active[b-5ce8fqx8ls] {
        text-decoration: underline !important;
    }

/* When viewport height is small, start the overlay content below the fixed header */
@media (max-height: 420px) {
    .menu-overlay[b-5ce8fqx8ls] {
        justify-content: flex-start; 
        padding-top: calc(64px + 1rem); 
    }

    .overlay-nav[b-5ce8fqx8ls] {
        gap: 1.25rem; 
    }

    .overlay-menu-item[b-5ce8fqx8ls] {
        font-size: 2rem; 
    }
}

@keyframes slideDownOverlay-b-5ce8fqx8ls {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.menu-overlay.slide-down[b-5ce8fqx8ls] {
    animation: slideDownOverlay-b-5ce8fqx8ls 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
/* /Pages/ContactUs.razor.rz.scp.css */
.contactus-container[b-znqflmv2c2] {
    background: var(--color-primary);
    color: var(--color-secondary);
    max-width: 800px;
    width: 100%;
    margin: 3rem auto;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    box-sizing: border-box;
}

.contactus-content[b-znqflmv2c2] {
    display: flex;
    padding: 2rem 1rem;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.contact-methods[b-znqflmv2c2] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (max-width: 600px) {
    .display-content.contactus-content[b-znqflmv2c2] {
        margin: 1rem 0.5rem;
        padding: 1rem 0.5rem;
        max-width: 100%;
    }

    .contact-methods[b-znqflmv2c2] {
        flex-direction: row;
        gap: 0.5rem;
    }
}
/* /Pages/FindUs.razor.rz.scp.css */
.findus-container[b-sivfxam28u] {
    background: var(--color-primary);
    color: var(--color-secondary);
    max-width: 800px;
    width: 100%;
    margin: 3rem auto;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    box-sizing: border-box;
    padding: 3rem 1rem;
}

@media (max-width: 700px) {
    .findus-content[b-sivfxam28u] {
        margin: 1rem 0.5rem;
        padding: 1rem 0.5rem;
    }
}

@media (max-height: 850px) {
    .findus-content[b-sivfxam28u] {
        margin: 1rem 0.5rem;
        padding: 1rem 0.5rem;
    }
}

.location-icon[b-sivfxam28u] {
    margin-bottom: 0.5rem;
}

.address[b-sivfxam28u] {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 500;
}

.map-container[b-sivfxam28u] {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

    .map-container iframe[b-sivfxam28u] {
        width: 100%;
        max-width: 700px;
        height: 300px;
        border-radius: 8px;
        border: none;
        background: #222;
    }

.map-spinner[b-sivfxam28u] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4rem;
    height: 4rem;
}

.spinner-background[b-sivfxam28u] {
    fill: none;
    stroke: rgba(255,255,255,0.2); /* faint circle */
    stroke-width: 4;
}

.spinner-arc[b-sivfxam28u] {
    fill: none;
    stroke: var(--color-secondary);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-dasharray: 90 150; /* 90 visible, 150 invisible → partial arc */
    transform-origin: 50% 50%;
    animation: spin-b-sivfxam28u 1s linear infinite;
}

@keyframes spin-b-sivfxam28u {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
/* /Pages/home.razor.rz.scp.css */
.home-flex-table[b-h0fz3cf9zq] {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    align-items: flex-start;
    margin: 2rem auto;
    max-width: 900px;
}

.home-flex-item[b-h0fz3cf9zq] {
    flex: 1 1 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 250px;
    max-width: 400px;
}

.home-img[b-h0fz3cf9zq] {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(31,38,135,0.18);
    object-fit: cover;
}

/*This is a parallax background effect css to go with the JS commented out on the Home.razor page*/
/*.page-background::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);*/ /* Adjust opacity for desired darkness */
    /*z-index: 1;
    pointer-events: none;
}
.page-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background-image: url('/images/brazilflagoverlay.jpg');
    background-repeat: repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: 300px 200px;
}*/

/* /Pages/Timetable.razor.rz.scp.css */
.timetable-container[b-lx76a7wpml] {
    background: var(--color-primary);
    color: var(--color-secondary);
    max-width: 800px;
    width: 100%;
    margin: 3rem auto;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    box-sizing: border-box;
}

/*
.timetable-container {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.timetable-table-wrapper {
    background: #1A1A1A;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    overflow-x: auto;
}*/

.timetable-table[b-lx76a7wpml] {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    color: var(--color-secondary);
}

    /* Header gradient � using lighter/darker versions of primary */
    .timetable-table thead[b-lx76a7wpml] {
        background: var(--color-ba)
    }

        .timetable-table thead th[b-lx76a7wpml] {
            padding: 1.25rem 1.5rem;
            text-align: left;
            font-weight: 600;
            font-size: 1.1rem;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            border: none;
        }

            .timetable-table thead th:first-child[b-lx76a7wpml] {
                border-top-left-radius: 12px;
            }

            .timetable-table thead th:last-child[b-lx76a7wpml] {
                border-top-right-radius: 12px;
            }

    .timetable-table tbody tr[b-lx76a7wpml] {
        transition: all 0.2s ease;
    }

        .timetable-table tbody tr:hover[b-lx76a7wpml] {
            background: var(--color-background);
        }

        .timetable-table tbody tr:nth-child(4n-3)[b-lx76a7wpml],
        .timetable-table tbody tr:nth-child(4n-2)[b-lx76a7wpml] {
            background: #80807a; /* slightly darker than --color-background */
        }

        .timetable-table tbody tr:nth-child(4n-1)[b-lx76a7wpml],
        .timetable-table tbody tr:nth-child(4n)[b-lx76a7wpml] {
            background: #6f706a; /* slightly darker band */
        }

    .timetable-table tbody td[b-lx76a7wpml] {
        padding: 1rem 1.5rem;
        border-bottom: 1px solid var(--color-secondary);
    }

.day-cell[b-lx76a7wpml] {
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--accent-1);
    vertical-align: middle;
    border-right: 3px solid var(--accent-1);
}

.class-type[b-lx76a7wpml] {
    font-weight: 500;
    position: relative;
    padding-left: 2rem;
}

    .class-type[b-lx76a7wpml]::before {
        content: '';
        position: absolute;
        left: 0.5rem;
        top: 50%;
        transform: translateY(-50%);
        width: 8px;
        height: 8px;
        border-radius: 50%;
    }

    .class-type.kids[b-lx76a7wpml]::before {
        background: var(--accent-2);
        box-shadow: 0 0 8px var(--accent-2);
    }

    .class-type.adults[b-lx76a7wpml]::before {
        background: var(--accent-1);
        box-shadow: 0 0 8px var(--accent-1);
    }

    .class-type.warriors[b-lx76a7wpml]::before {
        background: var(--accent-3);
        box-shadow: 0 0 8px var(--accent-3);
    }

.age-badge[b-lx76a7wpml] {
    font-size: 0.85rem;
    opacity: 0.8;
    font-weight: 400;
}

.time-cell[b-lx76a7wpml] {
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    color: var(--color-secondary);
}

@media (max-width: 768px) {
    .timetable-title[b-lx76a7wpml] {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .timetable-table-wrapper[b-lx76a7wpml] {
        padding: 1rem;
    }

    .timetable-table thead th[b-lx76a7wpml],
    .timetable-table tbody td[b-lx76a7wpml] {
        padding: 0.75rem 0.5rem;
        font-size: 0.9rem;
    }

    .day-cell[b-lx76a7wpml] {
        font-size: 1rem;
    }

    .class-type[b-lx76a7wpml] {
        padding-left: 0;
    }

        .class-type[b-lx76a7wpml]::before {
            display: none; /* remove the dot on small screens */
            content: none;
        }

    .time-cell[b-lx76a7wpml] {
        font-size: 0.85rem;
    }
}
