﻿/* ========================================================= */
/* ===== COLMAR VET: MODERN RESPONSIVE HEADER ============== */
/* ========================================================= */

header {
    background-color: #fff;
    padding: 20px 0;
    border-bottom: 2px solid #efefef;
}

.header-flex-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* --- Left Side: Logo --- */
.header-logo-container {
    flex: 0 1 40%;
    min-width: 250px;
}

.header-logo-img {
    max-width: 275px;
    height: auto;
    margin-top: 5px;
}

/* --- Right Side: Contact & Button --- */
.header-contact-container {
    flex: 0 1 55%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 30px;
}

.contact-text {
    text-align: left;
}

    .contact-text p {
        margin: 0 0 5px 0;
        line-height: 1.4em;
        font-size: 15px;
    }

/* --- The Booking Button --- */
.make-appt-btn {
    display: inline-block;
    background-color: #3b5998; /* Professional Blue matching North Penn */
    color: #ffffff !important;
    font-family: 'Oswald', Verdana, sans-serif;
    font-size: 18px;
    font-weight: normal;
    text-transform: uppercase;
    padding: 12px 24px;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    white-space: nowrap;
    letter-spacing: 1px;
}

    .make-appt-btn:hover {
        background-color: #2d4373;
        box-shadow: 0 6px 12px rgba(0,0,0,0.25);
        text-decoration: none;
    }

/* ======================================= */
/* ====== RESPONSIVE / MOBILE RULES ====== */
/* ======================================= */
@media screen and (max-width: 850px) {
    .header-flex-wrapper {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 20px;
    }

    .header-logo-container {
        text-align: center;
    }

    .header-logo-img {
        max-width: 80%;
    }

    .header-contact-container {
        flex-direction: column;
        justify-content: center;
        width: 100%;
        gap: 15px;
    }

    .contact-text {
        text-align: center;
    }

        /* Center text block and strip background icons for clean mobile view */
        .contact-text p {
            display: inline-block;
            margin: 0 10px;
            background: none;
            padding: 0;
        }

    .make-appt-btn {
        display: block;
        width: 90%;
        max-width: 350px;
        margin: 0 auto;
        padding: 15px 0;
        font-size: 20px;
    }
}
