/* Header Styles */
.site-header {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 100%;
    z-index: 1000;
}

/* Front page specific styles */
.front-page-blocks {
    width: 100%;
    max-width: var(--wp--style--global--content-size, 1200px);
    margin: 0 auto;
    padding: 0 20px;
}

.front-page-content {
    width: 100%;
}

body.home .site-header {
    margin-bottom: 0;
}

.site-header .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    flex: 0 0 auto;
}

.logo-link {
    display: block;
}

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
}

.primary-navigation {
    order: 1;
    width: 100%;
    max-width: 100%;
}

.main-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.main-menu li a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-menu li a:hover {
    color: #4ECDC4;
}

/* Footer Styles */
.site-footer {
    background: #f8f9fa;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.footer-logo {
    flex: 0 0 auto;
}

.footer-site-logo {
    height: 40px;
    width: auto;
}

.footer-navigation {
    flex: 1;
    margin-left: 4rem;
}

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

.footer-menu li a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-menu li a:hover {
    color: #007bff;
}

.footer-bottom {
    border-top: 1px solid #ddd;
    padding-top: 2rem;
    text-align: center;
}

.copyright {
    color: #666;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {

    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-navigation {
        margin: 2rem 0 0;
        width: 100%;
    }

    .footer-menu {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

/* Main content styles */
main#content {
    margin-top: 0;
}

@media (max-width: 1050px) {
  .primary-navigation {
    display: none;
  }
}