/* ==========================================================================
   Design Tokens (extracted from original Wix site computed styles)
   ========================================================================== */

:root {
    --wp-primary-color: rgb(255, 113, 75);
    --wp-text-color: rgb(7, 8, 31);
    --wp-heading-color: rgb(7, 8, 31);
    --wp-link-color: rgb(7, 8, 31);
    --wp-header-bg: rgb(0, 46, 123);
    --wp-header-text: rgb(255, 255, 255);
    --wp-footer-bg: rgb(1, 103, 234);
    --wp-footer-text: rgb(255, 255, 255);
    --wp-button-bg: rgb(255, 113, 75);
    --wp-button-text: rgb(255, 255, 255);
    --wp-font-body: futura-lt-w01-light, sans-serif;
    --wp-font-heading: avenir-lt-w01_35-light1475496, sans-serif;
}

body {
    font-family: futura-lt-w01-light, sans-serif;
    color: rgb(7, 8, 31);
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: avenir-lt-w01_35-light1475496, sans-serif;
    color: rgb(7, 8, 31);
}

h2 { font-size: 36px; }

a { color: rgb(7, 8, 31); }

/* Site Header */
.site-header {
    background-color: rgb(0, 46, 123);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid rgb(255, 113, 75);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.75rem 1.5rem;
}

.site-branding {
    flex-shrink: 0;
}

.site-title {
    text-decoration: none;
    font-weight: 700;
    font-size: 1.25rem;
    color: rgb(255, 255, 255);
}

.site-logo img {
    max-height: 50px;
    width: auto;
}

/* Navigation */
.primary-navigation .nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.primary-navigation .nav-menu li {
    margin: 0;
}

.primary-navigation .nav-menu a {
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.2s;
    font-family: montserrat, sans-serif;
    font-size: 14px;
    color: rgb(255, 255, 255);
}

.primary-navigation .nav-menu a:hover {
    opacity: 0.7;
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle__bar {
    display: block;
    width: 24px;
    height: 2px;
    background-color: rgb(255, 255, 255);
    transition: transform 0.3s;
}

/* Buttons (from Wix CTA style) */
.wixui-button, a[class*='button'], .wp-block-button__link {
    display: inline-block;
    padding: 0.75rem 2rem;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: opacity 0.2s, transform 0.1s;
    cursor: pointer;
    border: none;
    background-color: rgb(255, 113, 75);
    color: rgb(255, 255, 255);
    border-radius: 0px;
}

.wixui-button:hover, a[class*='button']:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* Site Footer */
.site-footer {
    background-color: rgb(1, 103, 234);
    color: rgb(255, 255, 255);
    padding: 2rem 0;
}

.site-footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
}

.footer-menu {
    list-style: none;
    margin: 0 0 1rem;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-menu a {
    text-decoration: none;
    color: rgb(255, 255, 255);
    opacity: 0.85;
}

.footer-menu a:hover {
    opacity: 1;
}

/* Page content sections */
.site-main {
    overflow-x: hidden;
}

.wix-section {
    width: 100%;
    padding: 3rem 0;
    background-size: cover;
    background-position: center;
}

.wix-section__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Column layouts */
.wix-columns--2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: start;
}

.wix-columns--3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: start;
}

.wix-columns--4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    align-items: start;
}

.wix-columns--5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    align-items: start;
}

.wix-columns--6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    align-items: start;
}

.wix-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.wix-column img {
    max-width: 100%;
    height: auto;
    margin-bottom: 1rem;
    border-radius: 4px;
}

.wix-column svg {
    margin-bottom: 1rem;
}

/* CTA Buttons */
.wix-button {
    display: inline-block;
    padding: 0.85rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: opacity 0.2s, transform 0.1s;
    cursor: pointer;
    border: none;
    margin: 1rem 0;
    background-color: rgb(255, 113, 75);
    color: rgb(255, 255, 255);
    border-radius: 0px;
}

.wix-button:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* Section content */
.wix-section h1, .wix-section h2, .wix-section h3 {
    margin: 0 0 0.75rem;
    line-height: 1.2;
}

.wix-section p {
    margin: 0 0 1rem;
    line-height: 1.6;
}

.wix-section img {
    max-width: 100%;
    height: auto;
    margin-bottom: 1rem;
}

/* Front page */
.front-page-content .wix-section:first-child {
    text-align: center;
}


/* Responsive */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    .primary-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: rgb(0, 46, 123);
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        padding: 1rem;
    }
    .primary-navigation.is-open {
        display: block;
    }
    .primary-navigation .nav-menu {
        flex-direction: column;
        gap: 0.75rem;
    }
    .wix-columns--2 {
        grid-template-columns: 1fr;
    }
    .wix-columns--3 {
        grid-template-columns: 1fr;
    }
    .wix-columns--4 {
        grid-template-columns: 1fr;
    }
    .wix-columns--5 {
        grid-template-columns: 1fr;
    }
    .wix-columns--6 {
        grid-template-columns: 1fr;
    }
    .wix-section {
        padding: 2rem 0;
    }
}
