body {
    margin: 0;
    padding: 0;
    font-family: 'IBM PLex Mono', monospace;
    display: flex;
    flex-direction: column;
    min-height: 100vh; 
}

header {
    display: flex; 
    align-items: center; 
    justify-content: center; 
}

header img {
    max-width: 540px; 
    margin-top: 20px;
}

@media screen and (max-width: 490px) {
    header img {
        max-width: 80%; 
    }
}

nav {
    text-align: center;
}

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

nav li {
    display: inline;
    margin: 0 10px;
}

nav a {
    text-decoration: none;
}

.nav-button {
    width: 30px; 
    height: auto; 
    transition: transform 0.3s;
}

@media screen and (max-width: 768px) {
    nav ul {
        text-align: center; 
    }

    nav li {
        display: inline; 
        margin: 10px 0; /* Add margin between each list item */
    }

    nav a img {
        width: 80%; /* Adjust the image width for smaller screens */
        margin: 0 auto; 
    }
}

/* Hide the mobile menu by default */
.mobile-menu {
    display: none;
}

/* Show the mobile menu when the button is clicked */
.mobile-menu.show {
    display: block;
}

.mobile-menu ul {
    list-style-type: none;
    padding: 0;
}

.mobile-menu li {
    display: block; /* Change display to block */
    margin-bottom: 10px; /* Add some spacing between menu items */
}

.mobile-menu a {
    text-decoration: none;
    color: black; /* Adjust color as needed */
}

/* Style for the mobile menu button */
.mobile-menu-button {
    display: none; /* Hide the button on larger screens */
}

@media screen and (max-width: 490px) {

    .mobile-menu-button {
        display: block;
        background-color: transparent;
        border: none;
        cursor: pointer;
        padding: 0; 
    }

 
    .mobile-menu-button img {
        width: 150px; 
        height: auto; 
    }

     
      .mobile-menu-button:active {
        transform: scale(1.1); 
    }


    /* Hide the desktop navigation */
    nav {
        display: none;
    }

    .mobile-menu {
        display: none;
        background-color: transparent;
        padding: 10px;
    }

    .mobile-menu.show {
        display: block;
    }

    .mobile-menu img {
        margin: 5px; 
    }
}

@media screen and (max-width: 800px) {
    .text-column {
        text-align: center; 
        margin-bottom: 20px;
        margin-top: 0px;
        margin-left: 50px; 
        margin-right: 50px; 
        max-width: 600px; 
        padding: 0 20px; 

    }
}   
.zine-launch {
    text-align: center; 
    margin-bottom: 20px;
    margin-top: 50px;
    margin-left: auto; 
    margin-right: auto; 
    max-width: 600px; 
    padding: 0 20px; 
}

.zine-launch img {
    display: block; 
    margin: 0 auto 20px; 
    max-width: 400px;
}

@media screen and (max-width: 490px) {
    .zine-launch img {
        max-width: 80%; 
    }
}

.shop-section {
    text-align: center; 
    margin-bottom: 20px;
    margin-top: 50px;
    margin-left: auto; 
    margin-right: auto; 
    max-width: 600px; 
    padding: 0 20px;
}

@media screen and (max-width: 800px) {
    .shop-section {
        text-align: center;
        margin-bottom: 20px;
        margin-top: 50px;
        margin-left: 50px; 
        margin-right: 50px; 
        max-width: 600px; 
        padding: 0 20px; 

    }
}

.shop-section img {
    display: block; 
    margin: 0 auto 20px; 
    max-width: 350px; 
}
@media screen and (max-width: 490px) {
    .shop-section img {
        max-width: 80%; 
    }
}

.shop-section p {
    text-align: center; 
    margin-bottom: 20px; 
}

.shopcontainer {
    display: grid;
    align-items: center; 
    grid-template-columns: 1fr 1fr;
    column-gap: 5px;
   }
   
   .shopopens img {
    margin-top: 0px;
    max-width: 300px; 
    width: auto; 
}

@media screen and (max-width: 800px) {
    .shopopens img {
       max-width: 80%;

    }
}

.countdown {
color: #fc3881; 
}

.info-header {
    text-align: center; /* Center the content horizontally */
    padding: 5px 0; /* Add padding for spacing */
}

.info-header img {
    max-width: 500px; /* Ensure the image resizes fluidly */
}

@media screen and (max-width: 490px) {
    .info-header img {
        max-width: 80%; 
    }
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Ensure the grid always has 2 columns */
    gap: 30px; /* Increase the gap between grid items */
    padding: 5px; /* Increase padding around the grid */
    max-width: 800px; /* Set a maximum width for the grid */
    margin: 0 auto; /* Center the grid horizontally */
}

.grid-item {
    border-radius: 10px; /* Add border-radius for rounded corners */
    overflow: hidden; /* Hide overflow to prevent images from protruding */
}

@media screen and (max-width: 490px) {
    .image-grid {
        max-width: 80%; 
        gap: 5px;
    }
}

.grid-item img {
    width: 100%; /* Ensure images fill their containers */
    height: auto; /* Allow images to scale proportionally */
    display: block; /* Prevents extra space below images */
}

.info-text {
    text-align: center; /* Center the text box */
    margin: 0px auto; /* Add large margins top and bottom, and auto left and right to center horizontally */
    max-width: 500px; /* Set a maximum width for the text box */
}

.info-text-content {
    background-color: transparent; 
    padding: 20px; 
}


.mailing-list {
    text-align: center;
    margin-top: auto;
    background-color: transparent; 
    padding: 10px; 
}

.mailing-list p {
    font-size: 1.2vw;
    margin-bottom: 10px;
}

.email-subscribe {
    display: flex;
    justify-content: center; 
}

.email-subscribe input {
    padding: 10px;
    border: 2px solid black;
    border-radius: 20px;
    margin-right: 10px;
    transition: border-width 0.3s; 
    font-family: 'IBM Plex Mono', monospace;
}

.email-subscribe input:hover {
    border-width: 4px; 
}

.email-subscribe button {
    padding: 10px 20px;
    background-color: #fc3881;
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-family: 'IBM Plex Mono', monospace;
}

footer {
    text-align: center;
    background-color: transparent;
    font-size: 0.4vw;
    color: grey;
    padding: 2vw;
}

footer p {
    margin: 0;
    font-size: 1vw;
}

