body, html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    height: 100%;
    scroll-behavior: smooth;
}

body {
    scroll-snap-type: y mandatory; /* This tells the browser to snap to the closest element vertically */
    overflow-y: scroll;
}

.section {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: normal;
    scroll-snap-align: start; /* This tells the browser to snap to the top of the element */
}

.subsection {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: left;
    align-items: normal;
    scroll-snap-align: start;
}

.menu-bar {
    display: flex;
    align-items: center;
    position: fixed; /* Ensures it stays on top */
    top: 0; /* Aligns the bar to the top */
    width: 100%;
    background-color: rgba(255, 255, 255, 0.8); /* Slightly transparent white for visibility */
    padding: 15px 20px; /* Padding for visual appeal */
    z-index: 1000; /* Ensures it's above all other page content */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* slight shadow for depth */
}

.menu-items a {
    margin: 0 1vw; /* Spacing between menu items */
    font-family: 'Helvetica', sans-serif;
    font-weight: bold;
    font-size: 25px;
    color: #000; /* A dark text color; adjust as needed */
    text-decoration: none; /* Removes underlines */
    transition: color 0.3s; /* For smooth color transition */
}

.menu-items a:hover {
    color: #888; /* Darkens the text color slightly on hover */
}


.title {
    font-family: 'Helvetica', sans-serif;
    font-weight: bold;
}

.title span {
    display: block;
    padding-left: 5vw; /* Adjust padding as needed */
    font-size: 4vw;
    transform: translate(0, 100%);
}

.main-content {
    text-align: right; /* Center the text horizontally */
    position: relative; /* Positioning relative to the parent */
    font-family:'Helvetica', sans-serif;
    font-weight: bold;
    padding-left: 5vw;
    padding-right: 5vw;
    transform: translate(0, -50%);
    font-size: 1.2vw; /* Adjust font size as needed */
    color: #000000; /* Adjust text color as needed */
}

.title subsection {
    display: block;
    padding-top: 100px;
    padding-left: 5vw;
    font-size: 4em;
}

.title subsectionalt {
    display: block;
    color: #ffffff;
    padding-top: 100px;
    padding-left: 5vw;
    font-size: 4em;
}



.logo {
    height: 30px; /* changeable */
    padding-left: 10px;
    padding-right: 30px;
}




::-webkit-scrollbar {
    display: none;
}



.store-content {
    text-align: center; /* Center the text horizontally */
    position: relative; /* Positioning relative to the parent */
    font-family:'Helvetica', sans-serif;
    font-weight: bold;
    top: 30%; /* Center vertically */
    left: 50%;
    transform: translate(-50%, -50%); /* Adjust for exact centering */
    font-size: 20px; /* Adjust font size as needed */
    color: #000000; /* Adjust text color as needed */
}

.store-content a {
    color: #444444; /* Adjust link color as needed */
    text-decoration: none;
}

.store-content a:hover {
    text-decoration: underline;
}

.about-content {
    text-align: center; /* Center the text horizontally */
    position: relative; /* Positioning relative to the parent */
    font-family:'Helvetica', sans-serif;
    font-weight: bold;
    top: 5%; /* Center vertically */
    left: 50%;
    transform: translate(-50%, -50%); /* Adjust for exact centering */
    font-size: 1vw; /* Adjust font size as needed */
    color: #000000; /* Adjust text color as needed */
}

.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    flex-wrap: nowrap;
}

.image-block {
    text-align: center; /* Center the text below the image */
    margin: 70px; /* Space around each image block */
    transform: translate(0%, -5%);
}

.image-block img {
    width: 20vw;
    height: 40vh;
    object-fit: cover;
}

.image-name {
    font-family: 'Helvetica', sans-serif;
    font-weight: bold;
    font-size: 2vw; /* Adjust the size for the title */
    margin-top: 10px; /* Space between image and title */
}

.image-title {
    font-family: 'Helvetica', sans-serif;
    font-weight: bold;
    font-size: 1.3vw;
    margin-top: 5px;
}

.image-description {
    font-family: 'Helvetica', sans-serif;
    font-weight: bold;
    font-size: 0.8vw; /* Smaller font size for description */
    margin-top: 5px; /* Space between title and description */
}




.contact-content {
    text-align: center; /* Center the text horizontally */
    position: relative; /* Positioning relative to the parent */
    font-family:'Helvetica', sans-serif;
    font-weight: bold;
    top: 35%; /* Center vertically */
    left: 50%;
    transform: translate(-50%, -50%); /* Adjust for exact centering */
    font-size: 1.3vw; /* Adjust font size as needed */
    color: #ffffff; /* Adjust text color as needed */
}

.contact-content a {
    color: #cccccc; /* Adjust link color as needed */
    text-decoration: none;
}

.contact-content a:hover {
    text-decoration: underline;
}


/* Hide scrollbar for Internet Explorer and Edge */
html {
    -ms-overflow-style: none;
}

/* Hide scrollbar for Firefox */
html {
    scrollbar-width: none;
}

#section1 {
    background-color: #d6d6d6;
}

#section2 {
    background-color: #999999;
}

#section3 {
    background-color: #5c5c5c;
}

#section4 {
    background-color: #000000;
}


@media screen and (max-width: 768px) {
    .logo {
        height: 20px; /* Smaller logo */
    }

    /* Adjust section titles */
    .title span, .title subsection, .title subsectionalt {
        display: block;
        padding-left: 5vw;
        font-size: 3em;
    }
    .title span {
        transform: translate(0, -25vh);
        text-align: left;
    }
    /* Adjust main content */
    .main-content, .store-content, .about-content{
        font-size: 1em; /* Smaller text */
        padding: 0px; /* Adjust padding */
        transform: translate(0, 0); /* Remove transform */
    }
    .main-content {
        text-align: center;
        font-size: 1em;
    }

    .store-content {
        text-align: center; /* Center the text horizontally */
        position: relative; /* Positioning relative to the parent */
        font-family:'Helvetica', sans-serif;
        font-weight: bold;
        padding: 2vw;
        top: 35%; /* Center vertically */
        left: 50%;
        transform: translate(-50%, -50%); /* Adjust for exact centering */
        font-size: 20px; /* Adjust font size as needed */
        color: #000000; /* Adjust text color as needed */
    }
    .about-content {
        text-align: center; /* Center the text horizontally */
        font-family:'Helvetica', sans-serif;
        font-weight: bold;
        transform: translate(-50%, -40%);
        font-size: 2.5vw; /* Adjust font size as needed */
        color: #000000; /* Adjust text color as needed */
    }
    .contact-content {
        text-align: center; /* Center the text horizontally */
        position: relative; /* Positioning relative to the parent */
        font-family:'Helvetica', sans-serif;
        font-weight: bold;
        top: 35%; /* Center vertically */
        left: 50%;
        transform: translate(-50%, -50%); /* Adjust for exact centering */
        font-size: 2vw; /* Adjust font size as needed */
        color: #ffffff; /* Adjust text color as needed */
    }
    .image-container {
        position: relative;
        top: 5%;
        display: flex;
        flex-direction: column;
        justify-content: left;
    }
    .image-block {
        margin: 2vw;
        display: flex;
        flex-direction: row;
        justify-content: left;
        padding-bottom: 1vh;
        padding-right: 1vw;
    }
    .image-block img {
        justify-content: left;
        width: 20vw; /* Make images full width of their container */
        height: auto;
        padding-right: 2vw;
    }
    .image-name {
        font-size: 1.5em;
        flex-direction: column;
        padding-right: 2vw;
        text-align: left;
    }
    .image-title {
        font-size: 2.5vw;
        flex-direction: column;
        text-align: left;
    }
    .image-description {
        font-size: 2vw;
    }
}