* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "futura-pt", sans-serif;
    font-weight: 400;
    font-style: normal;
}

body {
    /* Replace with your image path */
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    overflow-x: hidden;
    /* Prevents horizontal scrolling */
    flex-direction: column;
    min-height: 100vh;
    display: flex;
    position: relative;
}

html {
    width: 100%;
    height: 100%; /* Ensures that the body takes the full height of the viewport */
    max-width: 100%;
    overflow-x: hidden; /* Prevents horizontal scrolling */
    margin: 0;
    padding: 0;
    position: relative;
}

header img {
    width: 120px;
    z-index: 100000;
}

header {
    display: flex;
    justify-content: space-between; /* This will place space between the logo and the menu icon */
    align-items: center; /* Vertically align images in the center */
    position: relative;
    width: 100%; /* Ensures header takes full width of the screen */
    z-index: 10000000000; /* Ensure header stays on top */
    margin-top: -40px;
}

.gallery {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 130px;
    height: auto;
    margin-top: 10px;
}

.menuToggle {
    width: 110px;
    height: 130px;
    transform: translateX(-30px);
    cursor: grab;
    position: relative; /* Keeps the menu toggle in place */
    z-index: 1000;
}

.logo {
    width: 250px; /* Adjust the size of the logo */
    height: auto;
    margin-left: auto; /* Keep it aligned to the right */
}

/* Add the overlay background */
header .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh; /* Full viewport height */
    background: rgb(0, 0, 0); /* Adjust transparency as needed */
    opacity: 0;
    visibility: hidden;
    z-index: -1; /* Below navigation but above all other content */
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* When header has the open class */
header.open .menu-overlay {
    opacity: 1;
    visibility: visible;
}

header .navigation {
    pointer-events: none; /* Disable interaction when hidden */
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: 20vh;
    right: 0;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 80px;
    list-style: none;
    z-index: 10000;
}

header.open .navigation {
    pointer-events: auto; /* Enable interaction when visible */
    opacity: 1;
    visibility: visible;
}

header.open .navigation img {
    transform: scale(1.2);
}

body.menu-open {
    overflow: hidden;
}

/* Disable scrolling */
.no-scroll {
    overflow: hidden;
    height: 100vh; /* Prevent scrolling by fixing the height */
}

.navigation li {
    position: relative;
    display: inline-block; /* Makes sure each item takes only as much space as the text/image */
    margin-right: 30px; /* Adds some spacing between items */
}

.navigation li a::before {
    content: '';
    position: absolute;
    left: -50px; /* Adjust this distance as needed */
    top: 50%;
    transform: translateY(-50%);
    width: 40px; /* Size of the dot */
    height: 40px;
    background-image: url('../images/circledotthing.png'); /* Path to your dot image */
    background-size: contain;
    background-repeat: no-repeat;
    display: none; /* Hidden by default */
    overflow: visible;
    cursor: grab;
}

.navigation li a:hover::before {
    display: block; /* Shows the dot on hover */
    cursor: grab;
}

.homename {
    margin-left: -1px;
}

.aboutname {
    width: 130px;
    margin-left: -4px;
    margin-top: -15px;
}

.galleryname {
    width: 150px;
    margin-top: 2px;
    margin-left: 2px;
    position: relative;
}

.contactname {
    width: 160px;    
    margin-top: -12px; /* Adjust this value to move it up or down */
    margin-left: -2px;
    position: relative;
}

/* UPDATED: Two collections side by side */
.center-container {
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    gap: 3rem; /* Space between the two collections */
    height: calc(100vh - 300px); /* Adjust based on your header/footer height */
    position: relative; /* Allows positioning of child elements */
    margin: 0 auto; /* Ensures it stays centered */
    padding: 0 2rem;
    z-index: 10000000;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 10000000;
    flex: 0 1 auto; /* Allow items to shrink if needed */
}

.centered-image {
    width: 100%; /* Make image responsive */
    max-width: 250px; /* Fixed max width */
    height: auto; /* Maintain aspect ratio */
    max-height: 80vh;
    transition: transform 1s ease-in-out, opacity 1s ease-in-out; /* Smooth transitions */
    z-index: 10000000;
}

.image-container:nth-child(2) .centered-image {
    max-width: 350px; /* or whatever size you want */
}

.content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 99%;
    background: rgba(0, 0, 0, 0.363);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0; /* Hidden by default */
    transition: opacity 1s ease-in-out, transform 1s ease-in-out; /* Smooth fade in/out */
    z-index: 10000000;
}

.image-container:hover .centered-image,
.image-container:hover .content {
    opacity: 1; /* Fade in on hover */
    transform: scale(0.85); /* Slightly scale down */
    z-index: 10000000;
}

.footer {
    background: white;
    padding: 10px 0;
    width: 100%;
    text-align: center;
    height: auto; /* Allow height to be dynamic based on content */
    position: relative; /* Makes the footer relative to the document flow */
    bottom: 0;
    margin-top: 90px;
}

.footer-col {
    width: 100%;
    padding: 0 15px;
    align-items: center;
}

.footer-col h4 {
    font-size: 18px;
    color: #250d68;
    text-transform: capitalize;
    margin-bottom: 35px;
    font-weight: 500;
    position: relative;
    text-align: center;
}


.footer-col ul li:not(:last-child) {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 16px;
    text-transform: capitalize;
    color: #ffffff;
    text-decoration: none;
    font-weight: 300;
    color: #bbbbbb;
    display: block;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: #ffffff;
    padding-left: 8px;
}

.footer-col .social-links a {
    display: inline-block;
    height: 40px;
    width: 40px;
    background-color: rgba(255,255,255,0.2);
    margin: 0 10px 10px 0;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: #000;
    transition: all 0.5s ease;
}

.footer-col .social-links a:hover {
    color: #fff;
    background-color: #250d68;
}

.footer p {
    font-size: 16px;
    text-decoration: none;
    font-weight: 300;
    color: #000000;
    display: block;
    margin-top: 50px;
    text-align: center;
}

@media only screen and (max-width: 932px) and (orientation: landscape) {
    .centered-image {
        max-height: 60vh;
    }
}

@media (max-width: 768px) {

    .navigation ul {
        flex-direction: column;
        gap: 1rem;
        display: none;
    }

    .header.open .navigation ul {
        display: flex;
    }

    .gallery {
        width: 180px; /* Adjust size for smaller screens */
    }

    .menuToggle {
        width: 70px;
        height: 90px;
    }

    .logo {
        width: 120px; /* Adjust size for smaller screens */
    }

    header {
        margin-top: 0px;
    }

    .center-container {
        flex-direction: column;
        gap: 2rem;
        height: auto;
        padding: 2rem 1rem;
    }
    
    .centered-image {
        max-width: 200px;
    }
}

@media (max-width: 540px) {
    header {
        margin-top: 0px;
    }

    header.open .navigation {
        left: 10%;
        transform: scale(0.8);
    }
}

@media (max-width: 539px) {
    header {
        margin-top: 0px;
    }

    header.open .navigation {
        transform: scale(0.8);
    }
}

@media (max-width: 375px) {
    header.open .navigation {
        transform: scale(0.6);
        left: 18%;
    }

    .gallery {
        width: 160px; /* Adjust size for smaller screens */
    }

    .menuToggle {
        width: 60px;
        height: 80px;
    }

    .logo {
        width: 110px; /* Adjust size for smaller screens */
    }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
    header.open .navigation {
        transform: scale(0.6);
        gap: 80px; /* Reduce spacing between items */
        left: 150px;
    }
    
    header.open .navigation img {
        transform: scale(2); /* Reset the 1.2 scale */
    }
}

@media only screen and (max-width: 932px) and (orientation: landscape) {
    header.open .navigation {
        transform: scale(0.6);
        gap: 40px; /* Reduce spacing between items */
        left: 150px;
    }
    
    header.open .navigation img {
        transform: scale(1.4); /* Reset the 1.2 scale */
    }

    .center-container {
        margin-top: -50px;
        margin-bottom: 50px;
    }
}

@media only screen and (max-width: 768px) and (orientation: landscape) {
    header.open .navigation {
        transform: scale(0.5);
        top: 5vh;
        gap: 30px;
    }
}

@media only screen and (max-width: 740px) and (orientation: landscape) {
    header.open .navigation {
        transform: scale(0.6);
        gap: 40px; /* Reduce spacing between items */
        left: 120px;
        top: 40px;
    }
    
    header.open .navigation img {
        transform: scale(1.4); /* Reset the 1.2 scale */
    }
}