/*
Theme Name: GroundControl
Theme URI: https://groundcontrol.net.nz/
Author: Antigravity
Author URI: https://groundcontrol.net.nz/
Description: Custom WordPress theme for GroundControl BJJ & MMA, built with Elementor Free.
Version: 1.0.0
Text Domain: groundcontrol
*/

/* Reset & Basics */
:root {
    --primary-color: #e30b18;
    --text-color: #343434;
    --heading-color: #343434;
    --body-font: 'Lato', sans-serif;
    --heading-font: 'Lato', sans-serif;
}

body {
    margin: 0;
    font-family: var(--body-font);
    font-weight: 400;
    color: var(--text-color);
    background-color: #fff;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    color: var(--heading-color);
    margin-top: 0;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #b30812;
}

img {
    max-width: 100%;
    height: auto;
}

/* Header */
.site-header {
    background: #fff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.site-logo img {
    max-height: 60px;
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

.main-navigation a {
    color: var(--text-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
}

.main-navigation a:hover {
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-color);
}

@media (max-width: 768px) {
    .main-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }
    .main-navigation.active {
        display: flex;
    }
    .mobile-menu-toggle {
        display: block;
    }
    .main-navigation ul {
        flex-direction: column;
        gap: 15px;
    }
}

/* Footer */
.site-footer {
    /* Elementor handles footer styling now */
    padding: 0;
    margin: 0;
}

/* Buttons */
.gc-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: #ffffff !important;
    padding: 12px 24px;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.gc-btn:hover {
    background-color: #b30812;
}

/* FAQ Accordion */
.gc-faq-item {
    border: 1px solid #ddd;
    margin-bottom: 10px;
    border-radius: 4px;
}

.gc-faq-title {
    padding: 15px 20px;
    background: #f9f9f9;
    cursor: pointer;
    font-weight: 700;
    position: relative;
    margin: 0;
}

.gc-faq-title::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 20px;
}

.gc-faq-title.active::after {
    content: '-';
}

.gc-faq-content {
    display: none;
    padding: 15px 20px;
    border-top: 1px solid #ddd;
}
