* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background-color: #1a1a1a;
    color: #f0f0f0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding: 10px;
}

.header {
    text-align: center;
    padding: 20px;
    background-color: #2d2d2d;
    border-bottom: 2px solid #444;
}

.header h1 {
    font-family: "UnifrakturMaguntia", "Old English Text MT", "Arial Black", Arial, sans-serif;
    color: #e0e0e0;
    font-size: 2.5em;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.main-content {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
    gap: 20px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    width: 100%;
}

.gallery-item {
    background-color: #3d3d3d;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
}

.gallery-item img {
    width: 100%;
    height: auto;
    border: 2px solid #444;
    border-radius: 4px;
}

.caption {
    font-size: 0.9em;
    color: #d0d0d0;
    margin-top: 10px;
}

.locations {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    background-color: #3d3d3d;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    margin-top: 20px;
}

.locations h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #e0e0e0;
}

.locations ul {
    list-style-type: none;
    padding: 0;
}

.locations li {
    margin-bottom: 8px;
}

.footer {
    text-align: center;
    padding: 10px;
    background-color: #2d2d2d;
    border-top: 2px solid #444;
    margin-top: auto;
}

.footer p {
    font-size: 0.8em;
    color: #a0a0a0;
}

/* Media Queries */
@media (max-width: 768px) {
    .gallery {
        grid-template-columns: 1fr; /* Stack images vertically on mobile */
    }
    .main-content {
        flex-direction: column;
    }
    .locations {
        max-width: 100%;
    }
    .header h1 {
        font-size: 2em;
    }
}