* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.site-header {
    background-color: white;
    color: #fff;
    padding: 10px 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 50px;
}

.main-nav ul {
    list-style: none;
    background-color: white;
    display: flex;
    gap: 20px;
}

.main-nav a {
    color: maroon;
    background-color: white;
    text-decoration: none;
    font-weight: 1000;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    background-color: white;
    color: maroon;
    border: none;
    cursor: pointer;
    font-size:20px;
    font-family:Franklin Gothic Demi, Regular;
}

/* Container for the grid */
.image-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 6 columns on large screens */
    gap: 40px; /* Space between images */
    padding: 40px;
}

/* Styling for each image item */
.image-item {
    width: 100%;  /* Makes each item take full width of its column */
    height: 200px; /* Keep aspect ratio intact */
}

.image-item img {
    width: 100%;  /* Makes images responsive */
    height: 200px; /* Maintains image aspect ratio */
    border-radius: 10px; /* Optional: add rounded corners to images */
}

/* Media Query for medium screens (tablets) */
@media (max-width: 1024px) {
    .image-grid {
        grid-template-columns: repeat(4, 1fr); /* 4 columns on medium screens */
    }
}

/* Media Query for small screens (mobile) */
@media (max-width: 768px) {
    .image-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on mobile screens */
    }
}

/* Media Query for extra small screens (very small devices) */
@media (max-width: 480px) {
    .image-grid {
        grid-template-columns: 1fr; /* 1 column on very small screens */
    }
}


/* Responsive styles */
@media (max-width: 768px) {
    .main-nav ul {
        display: none;
        flex-direction: column;
        background: white;         /* Background color of the menu */
        top: 60px;
        right: 20px;
        width: 200px;
        padding: 10px;
        border-radius: 5px;
        z-index: 1;
    }

    .main-nav ul.active {
        display: flex;
    }

    .main-nav ul li a {
        color: #2c3e50;              /* Font color of menu items */
        text-decoration: none;
        padding: 10px 0;
        display: block;
    }

    .main-nav ul li a:hover {
        color:#2c3e50;           /* Hover color for links */
    }

    .menu-toggle {
        display: inline-block;
    }
}