/* location.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.location-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #000;
    color: #fff;
    position: relative;
}

.map-container {
    position: relative;
    width: 100%;
    height: 500px;
}

#map {
    width: 100%;
    height: 100%;
    border: 2px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}


.map-iframe iframe {
    width: 100%; /* Full width */
    height: 400; /* Fixed height */
    border: 0; /* Remove border */
    display: block; /* Ensure it's a block element */
    margin-top: 20px; /* Space above the map */
}

.location-section {
    background-color: #000;
    color: #fff;
    padding: 50px 0;
    position: relative; /* Ensure positioning for the copyright notice */
}

.location-section .copyright {
    text-align: center;
    margin-top: 30px; /* Add space above the copyright notice */
    font-size: 14px;
    color: #fff;
}

.location-section .copyright p {
    margin: 0;
}

.location-section .find-us-details {
    font-size: 30px;
    font-family: 'Roboto', cursive; /* Match the slogan style */
    color: #fff;
    text-align: center;
    margin-top: 20px; /* Add margin as needed */
    margin-bottom: 20px;
    font-weight: 500;
}

.find-us-details .phone-link {
    color: #fff; /* Match the text color */
    text-decoration: none; /* Remove underline from link */
}

.find-us-details .phone-link:hover {
    text-decoration: underline; /* Add underline on hover */
}

/* Footer section */
.footer-section {
    background-color: #000;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-content p {
    margin: 5px 0;
    font-size: 16px;
}

.footer-content .contact-info {
    font-size: 24px;
    margin: 15px 0;
}

.footer-content .contact-info a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .map-container {
        height: 300px;
    }

    .footer-content .contact-info {
        font-size: 20px;
    }
}
