/* -------------------------------------------------- */
/* GLOBAL BASE                                         */
/* -------------------------------------------------- */

html {
    font-size: 14px;
    min-height: 100%;
}

body {
    margin: 0;
    background-color: #e6e6e6;
    font-family: system-ui, sans-serif;
}

header {
    background: transparent;
}

/* Remove Bootstrap focus glow */
.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

/* NEW — controls width of banner area */
.site-banner-wrapper {
    max-width: 60%;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

/* Your existing banner layout */
.site-banner {
    background-color: #ffffff;
    padding: 15px 0 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}

/* Restore headshot size + position */
.headshot-circle {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background-color: #ffffff;
    overflow: hidden;
    border: 2px solid #d8d8d8;
    position: absolute;
    top: -35px;
    left: 30px;
    z-index: 25;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}


    .headshot-circle img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.banner-text {
    margin-left: 200px; /* 160px headshot + 30px offset + 10px breathing room */
    font-size: 1.75rem; /* matches the 160px circle */
    font-weight: 700;
    line-height: 1.1;
    color: #333;
    position: relative;
    z-index: 10;
}


    .banner-text h1 {
        font-size: 2rem; /* 32px */
        font-weight: 700;
        margin: 0;
        line-height: 1.1;
    }

    .banner-text h2 {
        font-size: 1.25rem; /* 20px */
        font-weight: 600;
        margin: 5px 0 0 0;
        letter-spacing: 0.5px;
    }


/* -------------------------------------------------- */
/* NAVBAR                                              */
/* -------------------------------------------------- */

.navbar-blue {
    background-color: #0058A0;
}

.navbar-nav {
    list-style: none;
    padding-left: 0;
    margin: 0;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
}

    .navbar-nav .nav-item {
        display: flex;
        align-items: center;
    }

    .navbar-nav .nav-link {
        color: #fff !important;
        font-weight: bold;
    }

    .navbar-nav .nav-item:not(:last-child)::after {
        content: "|";
        margin: 0 14px;
        color: #fff;
        opacity: 0.7;
    }

.navbar-wrapper {
    max-width: 60%;
    width: 100%;
    margin: 0 auto;
    padding-bottom: 10px;
}
/* -------------------------------------------------- */
/* PAGE WRAPPER (UNIFIED — 60% WHITE COLUMN)           */
/* -------------------------------------------------- */

.page-wrapper {
    max-width: 60%;
    width: 100%;
    margin: 0 auto;
    background: #ffffff;
    padding-bottom: 30px;
}

#main-content {
    padding: 20px 0 20px 0 !important; /* tight clinical spacing */
    margin: 0 !important;
}

/* -------------------------------------------------- */
/* BANNER                                              */
/* -------------------------------------------------- */

.site-banner {
    align-items: flex-start;
    padding: 40px 0 10px 0 !important;
}



/* -------------------------------------------------- */
/* INDEX PAGE                                          */
/* -------------------------------------------------- */

.index-photo {
    
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

    .index-photo img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        display: block;
    }


/* -------------------------------------------------- */
/* TWO-COLUMN LAYOUT (HOME PAGE)                       */
/* -------------------------------------------------- */

/*.sections-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    width: 100%;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
}*/

.left-section {
    padding-left: 15px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    width: 460px; /* set the exact width you want */
    flex-shrink: 0;
}



    .left-section iframe {
        max-width: 100%;
        width: 400px;
        height: 280px;
        display: block;
        margin: 0 auto;
        border: 1px solid #ccc;
        border-radius: 6px;
    }

.right-column {
    width: 220px; /* or 200px or 240px depending on your design */
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.three-col-wrapper {
    display: grid;
    grid-template-columns: 340px 1fr 400px;
    width: 100%;
    gap: 40px;
}


.col-left iframe {
    width: 100%;
    height: 250px;
    border: 0;
}

.col-left {
    padding-left: 20px;
}

.col-middle {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 0 auto; /* centers the middle column */
    padding: 0 10px; /* adds breathing room */
}

.col-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.clock-icon i {
    color: #0058A0; /* clinical blue */
    font-size: 1.1rem;
    
}

.clock-icon {
    font-weight: 700; /* bold */
    font-size: 1.2rem; /* slightly larger */
    display: block; /* puts it on its own line */
    margin-bottom: 8px; /* spacing below */
    color: #333; /* clean, clinical text color */
}


.hours-card {
    width: 260px;
    padding: 14px 18px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    margin-bottom: 14px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    width: 220px;
    padding: 2px 0;
}

    .hours-row span:first-child {
        font-weight: 500;
        min-width: 60px;
    }

.location-icon {
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
    z-index: 50; /* keeps it above the headshot */
}

    .location-icon i {
        color: #d00;
        position: relative;
        z-index: 50;
    }


.fa-solid {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
}

.button-wrapper {
    width: 260px; /* match Hours card width */
    display: flex;
    justify-content: center; /* center the button inside this width */
}

.appointment-btn {
    cursor: pointer;
    width: 150px;
    height: auto;
    align-items: center;
}

.verify-credentials,
.suggested-reading {
    width: 360px;
}


/*.sections-wrapper {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 30px;
    width: 100%;
}/*/
/* -------------------------------------------------- */
/* ABOUT PAGE                                          */
/* -------------------------------------------------- */
.about-row {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 4px;
}

    .about-left {
        width: 210px;
        padding: 20px 10px 0 10px;
    }

    .about-photo {
        width: 210px;
        height: 210px;
        object-fit: cover;
    }

    .about-right {
        flex: 1;
        padding: 20px;
    }

    .about-text {
        margin-top: 15px;
        line-height: 1.6;
    }
    /* -------------------------------------------------- */
    /* APPOINTMENT PAGE (CLEAN + MOBILE OPTIMIZED)         */
    /* -------------------------------------------------- */

    .appointment-info {
        padding: 20px 0 10px 0;
    }

    .appointment-row {
        display: flex;
        gap: 30px;
        margin-top: 20px;
    }

    .appointment-left {
        flex: 0 0 160px;
    }

    .appointment-right {
        display: flex;
        gap: 30px;
        width: 100%;
    }

    .form-column {
        flex: 0 0 65%;
    }

    .payment-column {
        flex: 0 0 35%;
    }

    .payment-section {
        background: #fff;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    }

    .payment-icons {
        display: flex;
        flex-wrap: wrap;
        gap: 8px 10px;
    }

        .payment-icons i {
            font-size: 18px;
            position: relative;
        }

            .payment-icons i::after {
                content: attr(data-label);
                position: absolute;
                bottom: 125%;
                left: 50%;
                transform: translateX(-50%);
                background: #444;
                color: #fff;
                padding: 4px 8px;
                font-size: 0.75rem;
                border-radius: 4px;
                opacity: 0;
                transition: opacity 0.2s ease;
            }

            .payment-icons i:hover::after {
                opacity: 1;
            }
    /* -------------------------------------------------- */
    /* FOOTER                                              */
    /* -------------------------------------------------- */

    .site-footer {
        max-width: 60%;
        width: 100%;
        margin: 0 auto;
        background: #0058A0;
        color: white;
        padding: 20px 0;
        text-align: center;
        margin-top: 10px;
    }
    /* -------------------------------------------------- */
    /* MOBILE OPTIMIZATION (Option A collapse)             */
    /* -------------------------------------------------- */

@media (max-width: 768px) {

    html {
        font-size: 16px;
    }

    body {
        background: #ffffff !important;
        padding-top: 70px;
    }
    
    .site-header {
        background: #0058A0;
        min-height: 70px; /* taller bar */
        padding: 10px 12px; /* breathing room */
        display: flex;
        align-items: center;
    }

    .site-title {
        color: #ffffff;
        font-size: 1rem;
        line-height: 1.2;
        white-space: normal; /* allow wrapping */
    }

   

    .three-col-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .col-left,
    .col-middle,
    .col-right {
        width: 100%;
        padding: 0;
        margin: 0 auto;
    }

    .col-middle {
        align-items: center;
    }

    .hours-card,
    .button-wrapper,
    .verify-credentials,
    .suggested-reading {
        width: 90%;
        max-width: 360px;
        margin: 0 auto;
    }

    .col-left iframe {
        height: 250px;
    }

    .banner-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .banner-image {
        order: 2; /* moves the image BELOW the text */
        margin-top: 20px;
    }

    .headshot-circle {
        position: static; /* removes absolute positioning */
        margin: 0 auto 10px;
        display: block;
    }

    .site-banner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .banner-text {
        text-align: center;
        width: 100%;
        margin: 0 auto;
        padding: 0;
    }

    .banner-text {
        order: 1; /* text goes ABOVE the image */
        margin-bottom: 10px;
    }

    .banner-image img {
        width: 140px; /* slightly smaller for mobile */
        height: 140px;
    }
}


                .appointment-row {
                flex-direction: column;
                gap: 20px;
            }

            .appointment-right {
                flex-direction: column;
            }

            .form-column,
            .payment-column {
                max-width: 100% !important;
                flex: 1 1 auto !important;
            }

            .hours-and-button,
            .hours-and-button-mobile {
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 20px;
            }
        }
