/* Custom CSS for Frame Construction */

/* Header Responsiveness */
@media (max-width: 991px) {
    .ltn__header-transparent {
        position: relative !important;
        background-color: #fff !important;
        /* Force white background on mobile */
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }

    .ltn__header-transparent .site-logo a {
        color: var(--ltn__heading-color) !important;
    }

    /* Ensure menu toggle button is visible */
    .ltn__utilize-toggle svg path {
        stroke: #000;
        /* Make hamburger icon dark on white background */
        fill: #000;
    }

    .ltn__header-middle-area {
        padding-top: 15px;
        padding-bottom: 15px;
    }
}

/* Footer Responsiveness */
@media (max-width: 767px) {
    .footer-widget {
        margin-bottom: 30px;
    }

    .footer-title {
        margin-bottom: 20px;
    }
}

/* General Fixes */
.ltn__header-5 .ltn__header-middle-area {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    /* Subtle border for separation */
}

/* Ensure Logo aspect ratio */
.site-logo img {
    height: auto;
    max-height: 60px;
    /* Limit height */
    width: auto;
    /* Allow width to adjust */
}

/* Google Map Improvements */
.google-map {
    position: relative;
    padding-bottom: 50%;
    /* Aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    /* Rounded corners */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    /* Soft shadow */
    margin-bottom: 80px;
    /* Adjust margin */
}

.google-map iframe,
.google-map #gmap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    border: 0;
}

@media (max-width: 768px) {
    .google-map {
        padding-bottom: 75%;
        /* Taller map on mobile */
    }
}