
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.locations-section {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    background-color: #f4f4f4;
}

.location-card {
    width: 300px;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.location-card img {
    width: 100%;
    height: auto;
    height: 270px;
}

.location-card-content {
    padding: 15px;
}

.location-card h3 {
    margin: 0 0 10px;
    font-size: 1.2rem;
    color: #333;
}

.location-card p {
    margin: 0;
    color: #666;
}


/* new css */

.locations-section {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 20px;
padding: 20px;
background-color: #f4f4f4;
}

.location-card {
background-color: white;
border: 1px solid #ddd;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
text-align: center;
}

.location-card img {
width: 100%;
height: 200px;
object-fit: cover;
}

.location-card-content {
padding: 15px;
}

.location-card h3 {
margin: 0 0 10px;
font-size: 1.2rem;
color: #333;
}

.location-card p {
margin: 0;
color: #666;
}
/* new css */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}

.locations-section {
display: grid;
grid-template-columns: repeat(3, 1fr); /* Always 3 cards per row */
gap: 30px; /* Spacing between cards */
padding: 30px;
max-width: 1200px;
margin: 0 auto;
}

.location-card {
background-color: white;
border: 1px solid #ddd;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.location-card img {
width: 100%;
height: 270px;
object-fit: cover;
}

.location-card-content {
padding: 20px;
text-align: center;
}

.location-card h3 {
margin: 0 0 10px;
font-size: 1.5rem;
color: #333;
}

.location-card p {
margin: 0;
font-size: 1rem;
color: #666;
}

.section-header {
text-align: center;
margin-top: 55px;
padding: 30px 20px 10px;
background-color: #f4f4f4;
}
/* Media query for smaller screens */
@media (max-width: 992px) {
.locations-section {
    grid-template-columns: repeat(2, 1fr); /* 2 cards per row */
}
}

@media (max-width: 600px) {
.locations-section {
    grid-template-columns: 1fr; /* 1 card per row */
}
}


.nav-link {
    color: black;
    text-decoration: none;
}

.nav-link.active {
    color: white;
    background-color: blue;
    padding: 5px 10px;
    border-radius: 5px;
}

.headline{
    color: rgba(255, 255, 255, 0.9); /* Light white text */
            background-color: rgba(0, 0, 0, 0.6); /* Slightly dark background */
            padding: 5px 10px; /* Add padding for readability */
            border-radius: 5px; /* Rounded corners */
            display: inline-block; /* Ensure the background only wraps around the text */
            font-family: Georgia, 'Times New Roman', Times, serif;
}