#main-header {
    background: #fff;
    height: 80px !important;
    position: relative;
    z-index: 100;
    box-shadow: none;
}

/* Support WordPress Admin Bar when header becomes fixed by Divi */
.admin-bar #main-header.et-fixed-header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar #main-header.et-fixed-header {
        top: 46px; /* taller admin bar on small screens */
    }
}

.zwolsche-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    display: flex;
    align-items: space-between;
    height: 80px;
}

.zwolsche-nav-container-inner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    gap: 20px;
    flex-flow: row nowrap;
}

/* Logo Section - Left side (takes up ~13.48% based on Figma) */
.zwolsche-logo-section {
    position: relative;
    left: 20px;
    top: 0;
    bottom: 0;
    width: calc(13.48% - 20px);
    display: flex;
    align-items: center;
}

.zwolsche-logo-link {
    display: block;
    height: 100%;
    display: flex;
    align-items: center;
}

.zwolsche-logo {
    height: 40px;
    max-height: 40px;
    width: auto;
    max-width: 100%;
}

/* Contact Section - Center-right area */
.zwolsche-contact-section {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.zwolsche-phone {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 25px;
    color: #204d6b;
    line-height: 1;
    white-space: nowrap;
    text-decoration: none;
    transition: all 0.3s ease;
}

.zwolsche-phone:hover {
    color: #d4bf5f;
}

/* Action Section - Far right */
.zwolsche-action-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zwolsche-cta-button {
    background: #e1cc6b;
    color: #000;
    padding: 8px 16px;
    border-radius: 30px;
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 19px;
    line-height: 1;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.zwolsche-cta-button:hover {
    background: #d4bf5f;
    color: #000;
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .zwolsche-contact-section {
        right: 18%;
        left: 60%;
    }

    .zwolsche-action-section {
        left: 80%;
    }

    .zwolsche-phone {
        font-size: 22px;
    }

    .zwolsche-cta-button {
        font-size: 17px;
        padding: 7px 14px;
    }
}

@media (max-width: 768px) {
    .zwolsche-nav-container {
        padding: 0 15px;
    }

    .zwolsche-logo-section {
        width: calc(20% - 15px);
    }

    .zwolsche-contact-section {
        display: none; /* Hide phone on tablets */
    }

    .zwolsche-action-section {
        left: 70%;
        right: 15px;
    }

    .zwolsche-cta-button {
        font-size: 16px;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .zwolsche-logo-section {
        width: calc(25% - 15px);
    }

    .zwolsche-action-section {
        left: 60%;
    }

    .zwolsche-cta-button {
        font-size: 14px;
        padding: 5px 10px;
    }
}
