html {
    height: 100vh;
    margin: 0;
    padding: 0;
}

body {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    column-gap: 1vw;
    margin: 0;
    padding: 0;
    height: 100vh;
    font-family: 'Courier New', Courier, monospace;
    /* overflow: hidden; */
}

#HomePageHeader {
    display: grid;
    grid-column-start: 1;
    grid-column-end: 11;
    /* height: 10vh;
    width: 100%; */
    /* background-color: rgb(195, 195, 195); */
    margin: 0 0 25px 0;
    padding: 0;
    align-items: center;
    box-shadow: 0 5px 7.5px 0px rgba(210, 210, 210, 0.5);
    overflow: visible;
    z-index: 10;
}

        #HomePageHeaderTitle {
            font-family: Poiret One;
            font-size: 6vh; /* Responsive size */
            font-weight: 800;
            text-transform: uppercase; /* Uppercase for emphasis */
            letter-spacing: 10px; /* Slight spacing for a clean look */
            color: #333; 
            text-align: center; /* Center the text */
            margin: 0;
            padding: 10px 0px 0px 0px;
            /* text-shadow: 4px 2px 4px rgba(0, 0, 0, 0.2);  */
        }

        .headerLogoImage {
            display: inline-block;
            top: 0;
            height: 10vh;
        }

        #AboutUsAndContact {
            position:absolute;
            display: inline-block;
            padding: 0;
            margin: 0;
            right: 10px;
            top: 10px;
            transition: color .25s ease; 
        }
        #AboutUsAndContact:hover {
            cursor: pointer;
            color: rgb(169, 167, 179);
            transition: color .25s ease; 
        }


#LeftNavigationBar {
    display: grid;
    grid-column-start: 1;
    grid-column-end: 4;
    grid-row-start: 2;
    grid-row-end: 11;
    text-overflow: ellipsis;
    background-color: white;
    margin: 0;
    padding: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    /* border: 2px solid rgba(0, 0, 0, 0.1); */
    border-radius: 0 20px 20px 0; /* Rounded corners */
    box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.1); 
    
}

        /* Add a subtle border to child elements */
        #LeftNavigationBar > #ProductCategory,
        #LeftNavigationBar > .ProductNavigation {
            border-bottom: 1px solid rgba(0, 0, 0, 0.05); 
            padding: 10px; 
        }

        #LeftNavigationBar > .ProductNavigation {
            border-right: 1px solid rgba(0, 0, 0, 0.05); 
        }

        #LeftNavigationBar > .ProductNavigation:last-child {
            border-bottom: none; /* Remove border for the last child */
        }

        #ProductCategory {
            display: flex;
            color: #333; /* Dark gray for a professional appearance */
            /* position: relative; */
            background-color: rgb(233, 233, 233);
            padding: 10px 0px 10px 5px;
            max-width: 100%;
            font-size: 20px;
            font-weight: 600;
            align-items: center;
            min-width: 0;
            letter-spacing: 2px;
        }

        .ProductNavigation {
            display:flex;
            /* position: relative; */
            background-color: rgb(255, 255, 255);
            /* padding: 10px 0px 10px 25px; */
            width: auto;
            overflow: clip;
            text-overflow: ellipsis;
            transition: background-color .5s ease, color 1s ease; 
            text-indent: 0px;
            text-align: right;
            border: rgba(0, 0, 0, 0.05);
            align-items: center;
            justify-content: right;
            font-family: Poiret One, Arial, sans-serif;
            letter-spacing: 2px;
            min-width: 0;
            transition: .25s;
        }
        .ProductNavigation:hover {
            /* color: rgb(91, 91, 91); */
            cursor: pointer;
            /* background-color: rgb(247, 247, 255); */
            transition: background-color .5s ease, color .5s ease; 
            transform: translate(-10px, -10px);
            border-radius: 10px;
            /* border: 1px solid white; */
            transition: .5s;
        }
        #LeftNavigationBar > #ProductCategory,
        #LeftNavigationBar > .ProductNavigation:hover{
            border: 1px solid rgba(0, 0, 0, 0.05); /* Light divider between items */
        }

/* .ProductDiv{
    display: grid;
    padding: 0;
    margin: 0 0 0 25px;
    grid-column-start: 4;
    grid-column-end: 11;
    grid-row-start: 2;
    grid-row-end: 11;
    background-color: blanchedalmond;
} */

        .ProductImage {
            grid-column-start: 4;
            grid-column-end: 11;
            grid-row-start: 2;
            grid-row-end: 8;
            width: 100%;
            height: 100%;
            object-fit: scale-down;
            transition: opacity 1s ease-in-out; /* Smooth fade effect */
            opacity: 1; /* Default opacity */
            z-index: 900;
            box-shadow: 5px 4px 6px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
            border-radius: 20px;
            /* padding: 25px 0 25px 0px; */
        }

        .ProductDescriptionContainer {
            background-color: rgb(255, 255, 255);
            grid-column-start: 4;
            grid-column-end: 11;
            grid-row-start: 8;
            grid-row-end: 11;
            /* padding: 10px; */
            overflow: scroll;
            /* width: 70vw;
            height: 30vh; */
            font-family: Poiret One, Arial, sans-serif;
            letter-spacing: 1.5px;
            line-height: 150%;
        }

        .ProductDescriptionParagraph {
            margin: 0;
            padding: 25px;
            transition: 1000ms;
        }

.FloatingDiv {
    display: none; /*Hidden by default*/
    position: fixed;
    transform: translate(-50%, -50%);
    width: 300px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    text-align: center;
    padding: 20px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    overflow: scroll;
    top: 50%;
    left: 50%;
}

#AboutUsContactPopup {
    font-family: Poiret One, Arial, sans-serif;
    line-height: 200%;
    transition: .5s;
    width: 50vw;
    height: 50vh;
}

/* Image inside the floating div */
.FloatingDivImage {
    width: 200px;
    /* border-radius: 8px; */
    margin-bottom: 10px;
}

/* Text inside the floating div */
.FloatingDivText {
    font-family: Poiret One, Arial, sans-serif;
    font-size: 24px;
    font-style: bold;
    color: #333;
}

/* Overlay to dim the background */
.Overlay {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}


/*--------------------------------------------Responsive Design --------------------------------------------/*/


@media screen and (max-width: 850px) {
    #HomePageHeader {
        margin: 25px 0 25px 0;
    }
    .headerLogoImage {
        height: 7vh;
    }
  /* #HomePageHeaderTitle {
    font-size: 20px;
    transform: translateY(25%);
  } */
  #AboutUsAndContact {
    font-size: 8px;
  }
  #ProductCategory {
    font-size: 12px;
    letter-spacing: 0;
  }
  .ProductNavigation {
    font-size: 9px;
    text-indent: 0px;
  }
  .ProductNavigation:hover {
    transform: translate(0px, 0px);
    border-radius: 10px;
    color: rgb(52, 52, 255);
}
  .ProductDescriptionContainer{
    padding: 25px;
  }
  .ProductDescriptionParagraph {
    font-size: 12px;
    padding: 10px;
  }
  .FloatingDivText {
    font-size: 18px;
  }
  .FloatingDivImage {
    width: 20vw;
    /* border-radius: 8px; */
    margin-bottom: 10px;
}

}