body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background-color: #850;
    color: white;
    padding: 1rem;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
}

nav ul li {
    margin: 0 1rem;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    text-decoration: underline;
}

main {
    padding: 2rem;
    text-align: center;
}

footer {
    background-color: #850;
    color: white;
    text-align: center;
    padding: 1rem;
    position: fixed;
    bottom: 0;
    width: 100%;
}

.locations-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 2rem 0;
}

.location {
    text-align: center;
    margin: 1rem;
    border: 2px solid #ccc;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 30%; /* Adjust size as needed */
    transition: transform 0.3s ease;
}

.location img {
    width: 100%;
    height: auto;
    display: block;
}

.location h2 {
    margin: 0;
    padding: 1rem;
    background-color: #850;
    color: white;
}

.location:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Added styles for the iframe video container */
.video-container {
    display: flex;
    flex-direction: row;
    justify-content: center; /* Centers the videos horizontally */
    align-items: center; /* Aligns them vertically */
    gap: 20px; /* Adds space between the videos */
    flex-wrap: wrap; /* Allows wrapping on smaller screens */
}

.video {
    text-align: center; /* Centers text under each iframe */
    max-width: 560px; /* Ensures consistent width for iframes */
}

iframe {
    border: none; /* Removes default iframe border */
}

@media (max-width: 768px) {
    .video-container {
        flex-direction: column; /* Stack videos vertically on small screens */
    }
}
