  

/* Some short classes */
.left {float: left;}
.right {float: right;}
.centerAlignText {text-align: center;}
.leftAlignText {text-align: left;}
.upOneEm {top: -1em;}

/* Link styles */
a {
    color: #ffffff;
    font-weight: bold;
    text-decoration: none;
}
a:visited {color: #ffffff;}
a:hover {color: #00cc00;}


/* General styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #000000;
    color: #ffffff;
    background: url("../images/background.png?");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

section {
    position: absolute;
    top: -999999999px;
    left: 0px;
    height: auto;
    min-height: 100vh;
    width: calc(100vw - 2em);
    padding: 1em;
    padding-top: 1em;
    background-color: transparent;
    text-shadow:
        -1px -1px 0 #000000,
         1px -1px 0 #000000,
        -1px  1px 0 #000000,
         1px  1px 0 #000000;
}

.main-div {
    height: 100vh;
    width: 100vw;
    overflow-X: hidden;
    overflow-Y: auto;
    background-image: radial-gradient(circle, rgba(0, 64, 0, 0.75) 0%, rgba(0, 0, 0, 0.90) 100%);
}

.more-div {
    z-Index: 999999999;
    position: absolute;
    height: calc(100vh - 3em);
    width: calc(100vw - 3em);
    top: -99999px;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid #ffffff;
    border-radius: 15px;
    color: #ffffff;
    background-color: #000000;
    padding: 1em;
    overflow: auto;
}

.more-exit-div {
    height: 1.5em;
    width: 1.5em;
    float: right;
    margin-right: .5em;
    cursor: pointer;
    color: #ffffff;
    font-size:20px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
}



/* Navigation button styles */
.showNavigationButton {
    z-index: 999999;
    position: fixed;
    right: 10px;
    top: 10px;
    border-radius: 50%;
    height: 1.9em;
    width: 1.9em;
    border: 2px solid #ffffff;
    background-color: #ffffff;
    cursor: pointer;
}
.navigationButton {
    z-index: 999999;
    position: relative;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    background: url("../images/hamburger.png");
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: transform 0.5s;
}
.navigationButton:hover {
    transform: rotate(360deg);
}


/* Cart button styles */
.showCartButton {
    z-index: 999999;
    position: fixed;
    right: 10px;
    top: calc(10px + 2.75em);
    border-radius: 50%;
    height: 2em;
    width: 2em;
    border: 2px solid #ffffff;
    background-color: #ffffff;
    cursor: pointer;
}
.cartButton {
    z-index: 999999;
    position: relative;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    background: url("../images/cart.png");
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: transform 0.5s;
}
.cartButton:hover {
    transform: rotate(360deg);
}



/* Top navigation bar styles */
header {
    position: fixed;
    top: 0px;
    right: -200px;
    width: 200px; /* calc(100vw - 2px); */
    height: 100%;
    z-index: 999999;
    background-color: #000000;
    display: inline;
    text-align: center;
    overflow-Y: auto;
    overflow-X: hidden;
    transition: right 0.5s;
}

header nav {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: space-evenly;
    line-height: 0.65em;
}

.nav-logo {
    width: 100%;
    height: auto;
    border-radius: 50%;
}

nav {
    position: relative;
    top: 5px;
    right: 5px;
}

header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 200px;
}

header nav ul li {
    display: inline-block;
    width: 200px;
    font-weight: bold;
    color: white;
    margin-bottom: 10px;
    text-shadow:
        -1px -1px 0 #000000,
         1px -1px 0 #000000,
        -1px  1px 0 #000000,
         1px  1px 0 #000000;
}

header nav ul li div {
    display: table-cell;
    height: 2em;
    width: 200px;
    vertical-align: middle;
}

header nav ul li a {
    color: #ffffff;
    padding: 10px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

header nav ul li div:hover {
    background: #444;
}



/* Top section styles */
.top-section {
    visibility: visible;
    margin: 0px;
    border: none;
}


/* Greeting section styles */
.greeting-section {
    visibility: hidden;
    overflow: auto;
}

.greeting-image {
    height: 480px;
    width: 480px;
    border-radius: 8px;
}

.greeting-quote {
    position: relative;
    display: flex;
    overflow: auto;
}

/* Turn around time section styles */
.turnaround-time-section {
    visibility: hidden;
    position: absolute;
    top: 0px;
    left: 0px;
    width: calc(100vw - 4em);
    padding: 2em;
    padding-top: 1em
    height: auto;
    min-height: 100vw;
}

/* Payment options section styles */
.payment-options-section {
    visibility: hidden;
}

/* Setup instructions section styles */
.setup-instructions-section {
    visibility: hidden;
}

/* Product section styles */
.products-section {
    visibility: hidden;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    align-items: center;
    padding-bottom: 20px;
    overflow: auto;
}

.products-navigation {
    display: flex;
    justify-content: space-evenly;
    align-items: space-evenly;
    width: 100vw;
    margin-left: 2em;
    margin-right: 2em;
    margin-top: -2.5em;
    color: #ffffff;
    font-size: .75em;
}

.product-category-container-div {
    display: flex;
    flex-direction: row;
    height: auto
    width: calc(100% - 2em);
    padding: 1em;
    padding-right: 1em;
    margin-bottom: 2em;
    background-color: #00000099;
    border-radius: 15px;
    min-width: 270px;
    overflow-X: auto;
    justify-content: left;
    text-align: left;
    align-items: left;
}

.category-div {
    max-height: calc(100vh - 4em);
    width: 100vw;
    font-size: 1.25em;
    font-weight: bold;
}

.product-div {
    justify-content: center;
    text-align: center;
    align-items: center;
    color: #0c0c0c;
    background-color: #f5f5f5;
    border-radius: 5px;
    width: 260px;
    margin: 1rem;
    padding: 1rem;
    min-height: 320px;
    text-shadow: none;
}

.product-new-arrival {
    position: relative;
    top: -1em;
    left: 0px;
    background-color: #f5f5f5;
    color: #ff0000;
    font-weight: bold;
}

.product-img {
    position: relative;
    height: 18vw;
    width: 18vw;
//    min-width: 180px;
//    min-height: 180px;
//    max-width: calc(260px - 2em);
//    max-height: calc(260px - 2em);
    width: calc(260px - 2em);
    height: calc(260px - 2em);
}

.product-name {
    font-weight: bold;
}

.product-more-info {
    cursor: pointer;
}

.product-link {
    color: #444444;
    font-weight: bold;
    bottom: 0;
}



/* More info pop up styles */
.more-payment {
    width: 30vw;
    min-width: 200px;
    height: auto;
}

.more-product {
    width: 30vw;
    min-width: 200px;
    overflow: auto;
    white-space: break-word;
    word-wrap: break-word;
}

.more-payment-quantity {
    width: 25%;
    color: #ffffff;
    background-color: #000000;
    float: right;
    text-align: center;
}

.more-product-img {
    width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
}

/* Testimonials section styles here */
.testimonials-section {
    visibility: hidden;
    overflow: auto;
    text-align: center;
    align-content: center;
    justify-content: center;
}

.testimonial {
    width: calc(100% - 4em);
    margin: 1em;
    padding: 1em;
    background-color: #00000099;
    border-radius: 15px;
}


/* Contact section styles here */
.contact-section {
    visibility: hidden;
    padding-top: 1em;
    padding-bottom: 1em;
    overflow: auto;
}

.email-form {
/*
    width: calc(100vw - 12em);
    background-color: #00000099;
    margin: 2em;
    padding: 2em;
    border-radius: 15px;
*/
}

.email-input, .email-textarea {
    width: calc(100% - 5em);
    border-radius: 4px;
    background-color: #f5f5f5;
    padding: 5px;
    margin-right: 2em;
    margin-left: 2em;
    margin-bottom: 1em;
}

.email-submit-button {
    color: white;
    font-weight: bold;
    background-color: #000000;
    border: 1px solid #ffffff;
    border-radius: 4px;
    padding: 5px;
}

.email-submit-button:hover {
    background-color: #111111;
}

.special-requests {
    width: calc(100vw - 10em);
    margin: 2em;
    padding: 1em;
    border-radius: 15px;
    background-color: #00000099;
}

.loading-gif-section {
    position: absolute;
    top: -1em;
    left: 0;
    visibility: visible;
    background: url("../images/loading.gif");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 200px 200px;
}



.gallery-section {
}

.gallery-div {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}

.gallery-div img {
    width: 100%;
    max-width: 100%
    height: auto;
    border-radius: 5px;
    transition: transform 0.2s ease;
}

/* Responsive design styles */
@media (max-width: 768px) {

    header nav ul li a {
        padding: 18px 10px;
        font-size: 0.8rem;
    }
    
    .greeting-quote {
        display: grid;
        height: auto;
        justify-content: center;
        align-content: center;
        align-items: center;
    }

    .greeting-image {
        height: 280px;
        width: 280px;
    }


}



/* Rainbow text stuff */
@keyframes rainbowText {
    0% { background-position:0% 50% }
    100% { background-position:100% 50% }
}

.rainbowText {
    color: #ffffff;
    background-image: linear-gradient(135deg,
          violet, indigo, blue, green, yellow, orange, red,
          violet, indigo, blue, green, yellow, orange, red,
          violet, indigo, blue, green, yellow, orange, red,
          violet, indigo, blue, green, yellow, orange, red,
          violet, indigo, blue, green, yellow, orange, red,
          violet, indigo, blue, green, yellow, orange, red,
          violet, indigo, blue, green, yellow, orange, red,
          violet, indigo, blue, green, yellow, orange, red
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: #ffffff;
    -webkit-text-stroke-width: 1.5px; /* Adjust this value to change the outline thickness */
    -webkit-text-stroke-color: transparent;
    background-size: 400% 400%;
    animation: rainbowText 15s linear infinite;
}

.rainbowText::selection {
    color: #ffffff;
    -webkit-text-stroke-color: transparent;
}



/* Custom tooltip styles */
.custom-tooltip[data-tooltip]:before {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-100%);
  background-color: #00000088;
  color: #ffffff;
  padding: 4px 8px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
}

/* Show the tooltip on hover */
.custom-tooltip:hover[data-tooltip]:before {
  opacity: 1;
}





::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-thumb {
    border: 1px solid #002100;
    background-color: #ffffff;
    border-radius: 5px;
}

/* For Firefox */
scrollbar-color: #ffffff; transparent;

/* For Microsoft browsers */
-ms-overflow-style: none;
scrollbar-face-color: #ffffff;
scrollbar-base-color: #ffffff;

