/*
 Theme Name: Panoramic Child
 Template: panoramic
*/
.branding {
    display: flex;
    align-items: center;
    gap: 20px; /* Space between logo and title */
    justify-content: center;
}
.branding .site-logo img {
    max-width: 150px; /* Matches your logo’s width */
    height: auto;
}
.branding .title {
    font-family: 'Roboto Condensed', sans-serif !important;
    font-size: 24px;
    font-weight: 400;
    color: #357F3C; /* Medium green */
    text-decoration: none;
    margin: 0;
}
.branding .description {
    font-family: 'Roboto Condensed', sans-serif !important;
    font-size: 14px;
    color: #0D4F29; /* Dark green */
    margin: 5px 0 0 0;
}
@media (max-width: 768px) {
    .branding {
        flex-direction: column;
        text-align: center;
    }
    .branding .site-logo img {
        max-width: 100px;
    }
    .branding .title {
        font-size: 18px;
    }
    .branding .description {
        font-size: 12px;
    }
}
.search-block {
    float: none !important; /* Remove right float */
    text-align: center; /* Center the search bar */
    margin-left: auto; /* Align within container */
    margin-right: auto;
    max-width: 300px; /* Adjust as needed */
}
.site-header-right {
    float: none !important; /* Ensure right section doesn’t push search */
    display: flex;
    justify-content: center;
    margin-right: auto;
}
@media (max-width: 768px) {
    .search-block {
        max-width: 100%;
        margin: 10px auto;
    }
    .site-header-right {
        flex-direction: column;
        align-items: center;
    }
}
/* Center image widget in footer */
.site-footer .widget_media_image {
    text-align: center;
}
.site-footer .widget_media_image img {
    display: block;
    margin: 0 auto;
    max-width: 100%; /* Ensure responsiveness */
    height: auto;
}
/* Center entire footer widget area if needed */
.site-footer .widget-area {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
@media (max-width: 767px) {
    .site-footer .widget-area {
        flex-direction: column;
        text-align: center;
    }
    .site-footer .widget_media_image img {
        max-width: 80%; /* Adjust for mobile */
    }
}
