body {
    font-family: 'Red Hat Display', sans-serif;
    background-color: #DBD1B0;
    overflow-x: hidden;
}

.logo_container {
    position: absolute;
    margin-left: -50px;
    margin-top: -50px;
    transform: scale(0.5);
    transform-origin: top left;
    z-index: 1;
}

.logo_container img {
    position: relative;
    z-index: 1;
}

.navbar {
    position: relative;
    display: flex;
    opacity: 0.5;
    background-color: #000000;
    height: 8vh;
    width: calc(100vw - 300px);
    margin-left: 250px;
    color: white;
    font-size: 28px;
    align-items: center;
    justify-content: space-between; 
    font-family: 'Red Hat Display', sans-serif;
}

.navbar span {
    flex: 1;                  
    text-align: center;       
    font-weight: bold;
}

.gallery_container {
    position: relative;
    max-width: 100vw;
    margin: auto;
    overflow: hidden;
    display: flex;
    border-radius: 10px;
}

.gallery {
    display: flex;
    width: 50%;
    transition: transform 0.5s ease-in-out
}

.gallery img {
    width: 100%;   
    position: relative;      
    object-fit: scale-down;   
    flex-shrink: 0;
    display: block;
    transform: scale(0.8);
    z-index: 1000;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    padding: 0.5rem;
    background: rgba(0,0,0,0.5);
    color: #fff;
    border-radius: 5px;
    user-select: none;
}

.prev { 
    left: 10px; 
}
.next { 
    right: 10px; 
}

.etsy_container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 75px;
}

.etsy_container a {
    padding: 35px;
    background: linear-gradient(90deg, rgba(235, 109, 32, 1), rgb(252, 210, 183));
    background-size: 200% 100%; 
    background-position: left center;
    transition: background-position 0.5s ease-in-out;
    box-shadow: 0px 0px 0 5px #ffffff, rgba(0, 0, 0) 0px 5px 35px;
    border-radius: 10px;
    color: black;
    text-decoration: none;
    font-weight: 1000;
    font-size: xx-large;
    transform: translate(0px, -75px);
}

.etsy_container a:hover {
    background-position: right center;
}

.contact_container {
    position: relative;
    display: flex;
    justify-content: left;
    align-items: left;
    background-color: rgba(0, 0, 0, 0.5);
    height: 20vh;
    width: 95vw;
    transform: scaleX(1.1);
    margin-bottom: -15px;
    scrollbar-width: none;
}

.contact_container .text_wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    color: #ffffff;
    margin-left: 5vw;
    margin-top: 2vh;
}

.contact_container .text_wrap h2 {
    font-weight: bold;
    font-size:xx-large;
    margin-top: 0px;
}

.contact_container .text_wrap p {
    font-size:large;
    margin-top: 0px;
}

.contact_container .text_wrap i {
    margin-top:3px;
    margin-left: 0.5vw;
}

.contact_container .social_wrap {
    position: relative;
    display: flex;
    flex-direction: row;
    color: #ffffff;
    margin-left: 5vw;
    margin-top: 2vh;
    opacity: 1 !important;
    font-size: larger;
}

.contact_container .social_wrap img {
    width: 65px;
    height: 70px;
    z-index: 10;
    margin-top: 6vh;
    margin-left: 7vw;
    opacity: 1 !important;
    cursor: pointer;
}

.contact_container .social_wrap p {
    z-index: 10;
    margin-top: 8vh;
    margin-left: 1vw;
    font-style:italic;
    text-decoration: underline;
    color: #61d2ff;
    cursor: pointer;
}

.aboutus_container {
    display: flex;
    justify-content: left;
    height: 40vh;
}

.aboutus_container img {
    transform: rotate(3deg) scale(0.6);
    transform-origin: top left;
    box-shadow: 0px 0px 0 15px rgba(255, 255, 255), rgba(0, 0, 0) 0px 15px 50px;
    margin-left: 50px;

}

.aboutus_container .text {
    background: rgba(0, 0, 0, 0.5);
    padding: 25px;
    color: #fff;
    height: fit-content;
    margin-right: 25px;
}

.aboutus_container p {
    text-align: left;
    font-size: medium;
    font-weight: 750;
}

.wip_overlay {
    display: none;
    position: fixed;
    inset: 0; 
    background: rgba(0, 0, 0, 0.5); 
    z-index: 1000;
    justify-content: center;
    align-items: center; 
}

.wip_overlay .overlay_content {
    position: relative;
    background: #DBD1B0;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0px 0px 0 5px rgba(0, 0, 0, 0.5);
    max-width: 500px;
    text-align: center;
    font-family: "Arial", sans-serif;
}

.wip_overlay .overlay_content .close_btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
}

.wip_overlay .overlay_content h2 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: #000;
}

.wip_overlay .overlay_content a {
    font-size: 1rem;
    font-style: italic;
    font-weight: 600;
    color: #4a70ff;
    text-decoration: underline;
}

click:hover {
    cursor: pointer;
}

#home:hover {
    cursor: pointer;
}

#shop:hover {
    transition: color 0.3s;
    color:#DBD1B0;
}

#custom:hover {
    transition: color 0.3s;
    color:#DBD1B0;
}

#contact:hover {
    transition: color 0.3s;
    color:#DBD1B0;
}

#about-us:hover {
    transition: color 0.3s;
    color:#DBD1B0;
}

  