/* Base Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    background: #FFF5E6;
    color: #4A4A4A;
}

header {
    background: #C62828;
    color: white;
    padding: 20px;
    text-align: center;
}

nav {
    background: #D32F2F;
    padding: 15px;
    text-align: center;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    margin: 0 10px;
    border-radius: 5px;
    transition: background 0.3s;
}

nav a:hover {
    background: #B71C1C;
}

/* Image Grids */
.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}

.grid-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.grid-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s;
}

.grid-item:hover img {
    transform: scale(1.05);
}