/* General Page Styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000000;
    color: #333;
}

@font-face {
    font-family: 'Airstream';
    src: url('../fonts/Wanderlust.ttf');
    font-weight: normal;
    font-style: normal;
}

/* Header Styling */
header {
    text-align: center;
    background-color: #000000;
    padding: 20px 0;
    font-family: 'Airstream';
}

.page-title {
    color: #f5f5dc;
    font-size: 3.5rem;
    text-transform: uppercase;
    margin: 10px;
    font-family: 'Airstream', sans-serif;
    text-align: center;
    color: transparent;
    color: #ffffff; /* White text */
    background-clip: text; /* Clips the gradient to the text */
    text-transform: uppercase;
    margin-bottom: 15px;
    margin-top: 30px;

}

/* Main Map Section */
.maps-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    padding: 50px;
}

/* Map Container */
.map-container {
    width: 100%; /* Full width of the page */
    height: 480px; /* Set your desired height */
    border-radius: 15px; /* Rounded corners */
    overflow: hidden; /* Ensure the iframe respects the rounded corners */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Optional: adds a shadow for better visibility */
    background-color: #2c6e49; /* Dark Olive background for each map item */
    padding: 10px;
    margin-bottom: 20px;
    display: block;
    cursor: pointer; /* Change the cursor to a pointer on hover */
    transition: transform 0.3s ease-in-out; /* Smooth transition for the scale effect */
    text-decoration: none; /* Prevent underlining on the map container itself */

}

.map-container:hover {
    transform: scale(1.05); /* Magnifies the entire container */
}

/* Map Title Styling */
.map-title {
    font-size: 2.5rem;
    padding: 20px 0;
    color: #f0f0f0;
    margin-bottom: 10px;
    margin-left: 10px;
    font-family: 'Airstream';
    transition: transform 0.3s ease-in-out; /* Smooth transition for the title scaling */
}

.map-container:hover .map-title {
    transform: scale(1); /* Magnifies the title */
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0; /* Remove the default border */
    border-radius: 15px; /* Apply rounded corners directly to the iframe */
}

/* Hover effect on iframe */
.map-container:hover iframe {
    transform: scale(1.0); /* Slight zoom effect on hover */
    transition: transform 0.3s ease-in-out; /* Smooth transition */
}
