/* styles.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    color: white;
    padding: 10px 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 75px;
    margin-right: 10px;
}

.menu {
    display: flex;
    gap: 20px;
}

.menu a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.menu a:hover {
    color: #ff9900;
}

/* Navigation */
nav {
    display: flex;
    flex-direction: column;
    background-color: #f4f4f4;
    padding: 20px;
    height: 100vh;
    width: 75px;
    box-shadow: 3px 0 10px rgba(0, 0, 0, 0.15);
    position: fixed;
    left: 0;
}

nav a {
    color: #333;
    text-decoration: none;
    margin-bottom: 15px;
    font-size: 18px;
    transition: text-decoration 0.3s ease;
}

nav a:hover {
    text-decoration: underline;
}

main {
    margin-left: 170px;
    padding: 20px;
}

/* Image Gallery */
.image-gallery {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 20px;
}

.image-gallery img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Footer styling */
footer {
    background: #111; /* Black background */
    padding: 1rem;
    text-align: center;
    border-top: 2px solid #fcfcfb; /* Off-white border */
    color: #faf9f9; /* Off-white text */
}

/* Pop-up Styles */
.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background-color: #0476d3;
    color: white;
    padding: 20px;
    border-radius: 10px;
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    text-align: center;
    max-width: 400px;
    width: 100%;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.popup.show {
    display: block;
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.popup button {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.popup button:hover {
    background-color: #ff6600;
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }

    .menu {
        flex-direction: column;
        gap: 10px;
    }

    nav {
        position: relative;
        height: auto;
        width: 100%;
        box-shadow: none;
        padding: 10px 20px;
    }

    main {
        margin-left: 0;
        padding: 10px;
    }

    .image-gallery {
        flex-direction: column;
        gap: 20px;
    }

    .image-gallery img {
        max-width: 100%;
    }
} 
