/* Full-Width Map Section */
#apartment-map-fullwidth {
    margin: 0;
    padding: 0;
    width: 100vw; /* Full viewport width */
    overflow: hidden; /* Ensures no overflow content */
}

#apartment-map {
    width: 100%; /* Ensures the map spans the full width of the screen */
    height: 500px; /* Adjust height to design preference */
    border: none; /* Removes borders */
}

/* Location Details Section */
.apartment-location-details {
    background-color: #f9f9f9; /* Light background for contrast */
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow effect */
}

.map-title {
    font-size: 2rem;
    font-weight: bold;
    color: #222;
    margin-bottom: 20px;
    font-family: "Playfair Display", serif;
}

.map-address, .map-distance {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin: 10px 0;
}

.map-distance i {
    color: #b29600; /* Gold accent for location icon */
    margin-right: 5px;
}

/* Button Styling */
.map-view-btn {
    display: inline-block;
    margin-top: 20px;
    background-color: transparent;
    color: #333;
    border: 2px solid #333;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
}

.map-view-btn:hover {
    background-color: #333;
    color: #fff;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    #apartment-map {
        height: 300px; /* Reduced height for smaller screens */
    }

    .map-title {
        font-size: 1.6rem;
    }

    .map-address, .map-distance {
        font-size: 1rem;
    }

    .map-view-btn {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
}
