/* Common styles for all devices */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    display: flex;
    justify-content: space-around;
    padding: 20px;
}

.container + .container {
    margin-top: 1px; /* Adjust the spacing as needed */
}

.picture-column {
    width: 30%;
    text-align: center;
    padding: 10px;
}

.picture {
    margin: 10px;
    border: 2px solid #ccc;
    box-shadow: 4px 4px 6px #888888;
    cursor: pointer;
    transition: transform 0.2s, opacity 0.2s;
    border-radius: 10px;
}

.picture img {
    max-width: 100%;
    max-height: 100%;
}

.picture:hover {
    transform: scale(1.05);
    opacity: 0.8;
}

header {
    background-color: skyblue;
    color: #fff;
    padding: 10px;
    position: sticky;
    top: 0;
    z-index: 1;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-height: 50px; /* Adjust the height as needed */
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav li {
    margin: 0 20px;
}

nav a {
    text-decoration: none;
    color: #fff;
}

nav a:hover {
    text-decoration: underline;
}

/* Media queries for different device types and screen sizes */

/* Small screens, such as smartphones */
@media screen and (max-width: 576px) {
    .container {
        flex-direction: column; /* Stack columns on smaller screens */
    }

    .picture-column {
        width: 100%; /* Full width for columns on smaller screens */
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: flex !important;
    }
    
    .menu-toggle {
        display: block;
    }
    
    /* Adjust other styles for smaller screens as needed */
}

/* Medium screens, such as tablets */
@media screen and (min-width: 577px) and (max-width: 992px) {
    /* Add specific styles for medium-sized screens here */
}

/* Large screens, such as desktops and laptops */
@media screen and (min-width: 993px) {
    .menu-toggle {
        display: block !important;
    }
    /* Add specific styles for large screens here */
}

.menu-toggle {
    display: block !important;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px 0;
}
/* footer section styling */
footer{
    background: #433e3e;
    padding: 1px 10px;
    color: #fff;
    text-align: center;
    bottom: 0;
}
footer p a{
    color: #fff;
    text-decoration: underline;
}
footer p a:hover{
    text-decoration: underline;
    color: skyblue;
}
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000; /* You can set the background to your image */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 1;
    transition: opacity 1s ease-in-out; /* Add a smooth transition effect */
}

/* Style your image within the preloader */
.preloader img {
    max-width: 100%;
    height: 50%;
}