/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #1d1d1f;
    background-color: #fff;
    overflow-x: hidden;
}

.hidden {
    display: none;
}

.initial-menu {
    /* your initial vertical layout styling, e.g. */
    display: block; /* ensure it shows up immediately */
}

.horizontal-menu {
    /* your horizontal layout styling */
}
#threelists{
    display: block;
}
a {
    text-decoration: none;
    color: inherit;
}

#large-img{
max-width: 95vw;
  z-index: 1000;
  max-height: 95vh;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;    
}

#footer{
    width: 20%;
    margin: auto;
}

  .CO {
    margin-right: 50px;
    margin-bottom: 50px;
}

#menu.initial-menu {
    flex-direction: column;
    height: 100vh;
    justify-content: center;
    background-color: #fff;
    backdrop-filter: none;
}

#menu.initial-menu a {
    font-size: 8vh;
    margin-bottom: 20px;
    line-height: 3.0 ;
    color: #1d1d1f;
}

#menu {
    position: fixed;
    width: 100%;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.02);
    backdrop-filter: saturate(180%) blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    height: 60px;
    padding-left: 30px;
    padding-right: 30px;
}

#menu a {
    margin-right: 30px;
    font-size: 17px;
    font-weight: 500;
    color: #1d1d1f;
    line-height: 60px;
}

#content {
    padding-top: 80px;
    max-width: 980px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    min-height: calc(100vh - 120px);
    margin-bottom: 5vh;
}
#custom-orders{
  margin: 3vh;

}

h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1d1d1f;
}

h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #1d1d1f;
}

p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #515154;
    max-width: 600px;

ul {
    margin-bottom: 20px;
}

ul li {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 10px;
    color: #515154;
}

ul li a {
    color: #0071e3;
}

.ring-images {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.ring-images img {
    height: 100px;
    cursor: pointer;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.ring-images img:hover {
    transform: scale(1.1);
}

#large-image {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    justify-content: center;
    align-items: center;
    z-index: 1001;
}

#large-image img {
    max-width: 80%;
    max-height: 80%;
    border-radius: 12px;
    z-index: 10001;
}

#large-image span {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
}

#footer {
    text-align: center !important;
    font-size: 14px;
    color: #6e6e73;
    padding: 20px;
    border-top: 1px solid #e0e0e0;
  /*  position: fixed;*/
  bottom: 0;
    width: 100%;
    height: 30%;
    background-color: #f9f9f9;
}


/* Media Queries */

/* Increase text sizes on very small screens (phones) */
@media screen and (max-width: 480px) {
    #menu a {
        font-size: 2vh;
        margin-right: 35px;
    }
    #menu.initial-menu a {
        font-size: 4vh;
        line-height: 6;
      }

    h2 {
        font-size: 8vh;
    }

    h3 {
        font-size: 6vh;
    }

    p, ul li {
        font-size: 2vh;
      line-height: 1.6;
    }

    .ring-images img {
        height: 100px;
    }
    .flexbox{
          flex-direction: column;
          margin: 2vh;
    }
}

/* Adjust for tablets */
@media screen and (max-width: 850px) and (min-width: 481px) {
    #menu a {
        font-size: 2vh;
        margin-right: 30px;
    }

    #menu.initial-menu a {
        font-size: 5vh;
        line-height: 3.8;
      }
      .flexbox{
            flex-direction: column;
                      margin: 2vh;
      }

    #threelists{
    display: block;
}
#footer{
    width: 100%;
}
    h2 {
        font-size: 8vh;
    }

    h3 {
        font-size: 4vh;
    }

    p, ul li {
        font-size: 2vh;
                line-height: 1.6;
    }

    .ring-images img {
        height: 100px;
    }
}
