
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap');
    
/*Entire document*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", serif;
}

/*Body*/
body {
  min-width: 100%; 
  min-height: 100%;
  background-color: #F4BB44;
}

/*standard text size settings h1*/
h1 {
    font-size: 2.5rem;
    font-weight: 700;
}
/*standard text size settings h2*/
h2 {
    font-size: 1.8rem;
    font-weight: 600;
}
/*standard text size settings h3*/
h3 {
    font-size: 1.5rem;
    font-weight: 800;
}
/*standard text size settings h4*/
h4 {
    font-size: 1.2rem;
    font-weight: 600;
}
/*standard text size settings h5*/
h5 {
    font-size: 1rem;
    font-weight: 400;
}
/*standard text size settings h6*/
h6 {
    color: #0F4F11;
    font-size: 1rem;
    font-weight: 400;
}

/*Overall Body Settings*/

.martianmangoestitle {
    width: 205px; /* Set a width */
    height: 103px; /* Set a height */
    padding: 10px;
    background-image: url('MartianMangoes/assets/images/MartianMangoes_Light.png'); /* Your default image */
    background-size: cover; /* Adjust as needed */
    transition: background-image 0.3s ease-in-out;
    display: inline-block;
    /*margin-left: 3%; /*I think this is a problem, I want my title to be centered between each section of other links */
    align-items: center; /*I know there is an easy way to do this but I dunno what it is */
}
.martianmangoestitle:hover {
    background-image: url('MartianMangoes/assets/images/MartianMangoes_Dark.png'); /* Your hover image */
}


.nav-item button {
  width:210px; 
  padding: 10px;
  border-color: #0F4F11; 
  border-radius: 10px; 
  border-width:4px; 
  background-color: #7CC77C;
}
.nav-item button:hover {
  background-color: #027B7B;
  border-color: #0F4F11;
}
.nav-item {
  display: none;
}
.nav-item.active {
  display: inline-block;
}

#carouselExampleDark {
    background-color: #F4BB44;
    width: 100%;
    height: 70vh;
    background-size: cover;
    background-position-x: 200px;
    background-position-y: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

#learn-btn {
    width:210px; 
    padding: 10px;
    border-color: #DD7C2F; 
    color: black;
    border-radius: 10px; 
    border-width:4px; 
    background-color: #F4BB44;
    transition: 0.5s ease;
}
#learn-btn:hover {
    background-color: #DD7C2F;
    border-color: #DD7C2F;
}

#buy-btn {
    width:210px; 
    padding: 10px;
    border-color: #0F4F11; 
    color: black;
    border-radius: 10px; 
    border-width:4px; 
    background-color: #7CC77C;
    transition: 0.5s ease;
}

#buy-btn:hover {
    background-color: #027B7B;
    border-color: #0F4F11;
}
/**/
/*Single_Product.html settings*/
.small-img-group {
    display: flex;
    justify-content: space-between;
}

.small-img-col {
    flex-basis: 24%;
    cursor: pointer;
}
.single-product input {
    width: 50px;
    height: 40px;
    padding-left: 10px;
    font-size: 16px;
    margin-right: 10px;
}
.single-product input:focus {
    outline: none;
}
.single-product .buy-btn {
    background-color: #fb774b;
    opacity: 1;
    transition: 0.4s all;
    
}
.single-product .buy-btn {
    font-size: 0.8rem;
    font-weight: 900;
    outline: none;
    border: none;
    background-color: #1d1d1d;
    color: aliceblue;
    padding: 13px 30px;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.5s ease;
}

.single-product .buy-btn:hover {
    background-color: coral;
}

/*Single_Product.html settings*/
/*Account.html settings*/
.cart table {
    width: 100%;
    border-collapse: collapse;
}
.cart .product-info {
    display: flex;
    flex-wrap: wrap;
}
.cart th {
    text-align: left;
    padding: 5px 10px;
    color: #fff;
    background-color: #027B7B;
}

.cart td {
    padding: 10px 20px;
}
.cart td img {
    width: 80px;
    height: 80px;
    margin-right: 10px;
}
.cart td input {
    width: 50px;
    height: 40px;
    padding-left: 10px;
    font-size: 16px;
    margin-right: 10px;
}
.cart td input:focus {
    outline: none;
}
.cart td a {
    text-decoration: none;
    color:#7CC77C;
}
.cart .remove-btn {
    color: #0F4F11;
    text-decoration: none;
    font-size: 14px;
    /*background-color: #fff;*/
    border: none;
    width: 100%;
}
.cart .edit-btn {
    color: #0F4F11;
    text-decoration: none;
    font-size: 15px;
    /*background-color: #fff;*/
    border: none;
    width: 100%;
}
.cart .product-info p {
    margin: 3px;
}
.cart-total {
    display: flex;
    justify-self: flex-end;
}
.cart-total table {
    width: 100%;
    max-width: 500px;
    border-top: 3px solid #027B7B;
}
td:last-child {
    text-align: right;
}
th:last-child {
    text-align: right;
}
.checkout-container {
    display: flex;
    justify-content: flex-end;
}
.checkout-btn {
    display: flex;
    justify-content: flex-end;
    background-color: #7CC77C;
    border-color:#0F4F11;
    border-width: 4px;
    border-radius: 6px;
    color: black;
}
.checkout-btn:hover {
    display: flex;
    justify-content: flex-end;
    background-color: #027B7B;
    border-color:#0F4F11;
    border-width: 4px;
    border-radius: 6px;
    color: black;
}
/*Account.html settings*/
/*Our Team*/
/*
Source - https://stackoverflow.com/q
Posted by sps, modified by community. See post 'Timeline' for change history
Retrieved 2025-12-13, License - CC BY-SA 4.0
*/

.company-mobile {
    display: none;
}

@media screen and (max-width: 1485px) {
    .company-desktop {
        display: none; /* Hide desktop content */
    }
    .company-mobile {
        display: block; /* Show mobile content */
    } 
}

.tree ul {
    padding-top: 20px; 
    position: relative;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
}
.tree ul ul ul::before {
    content: '';
    position: flex; 
    /*left: 50%; bottom: 0px;*/
    border-left: 1px solid #0F4F11;
    border-width: 5px;
    height: 20px;
}

.tree li {
    float: left;
    text-align: center;
    list-style-type: none;
    position: relative;
    padding: 20px 5px 0 5px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
}

/*We will use ::before and ::after to draw the connectors*/

.tree li::before, .tree li::after{
    content: '';
    position: absolute; top: 0; right: 50%;
    border-top: 1px solid #0F4F11;
    border-width: 5px;
    width: 50%; height: 20px;
}
.tree li::after{
    right: auto; left: 50%;
    border-left: 1px solid #0F4F11;
    border-width: 5px;
}

/*We need to remove left-right connectors from elements without 
any siblings*/
.tree li:only-child::after, .tree li:only-child::before {
    display: none;
}

/*Remove space from the top of single children*/
.tree li:only-child{
    padding-top: 0;
}

/*Remove left connector from first child and 
right connector from last child*/
.tree li:first-child::before, .tree li:last-child::after{
    border: 0 none;
}
/*Adding back the vertical connector to the last nodes*/
.tree li:last-child::before{
    border-right: 1px solid #0F4F11;
    border-width: 5px;
    border-radius: 0 5px 0 0;
    -webkit-border-radius: 0 5px 0 0;
    -moz-border-radius: 0 5px 0 0;
}
.tree li:first-child::after{
    border-radius: 5px 0 0 0;
    -webkit-border-radius: 5px 0 0 0;
    -moz-border-radius: 5px 0 0 0;
}

/*Time to add downward connectors from parents*/
.tree ul ul::before{
    content: '';
    position: absolute; top: 0; left: 50%;
    border-left: 1px solid #0F4F11;
    border-width: 5px;
    width: 0; height: 20px;
}

.tree li a{
    border: 1px solid #0F4F11;
    border-width: 5px;
    padding: 5px 10px;
    text-decoration: none;
    color: #666;
    font-family: arial, verdana, tahoma;
    font-size: 10px;
    display: inline-block;
    background-color:#7CC77C;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    font-size: 9px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
}

/*Time for some hover effects*/
/*We will apply the hover effect the the lineage of the element also*/
.tree li a:hover, .tree li a:hover+ul li a {
    background: #027B7B;
    color: #000;
    font-size: 10px;
    border-radius: 5px; 
    border-width: 5px;
    border: 5px solid #0F4F11;
    
}
/*Connector styles on hover*/
.tree li a:hover+ul li::after, 
.tree li a:hover+ul li::before, 
.tree li a:hover+ul::before, 
.tree li a:hover+ul ul::before{
    border-color:  #7CC77C;
    border-width: 5px;
    font-size: 9px;
    
}

.tree ul ul ul ul li a {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    padding: 50px 9px;
    text-decoration: none;
    color: #666;
    background-color:#7CC77C;
    font-family: arial, verdana, tahoma;
    font-size: 10px;
    border: 5px solid #0F4F11;
    border-radius: 5px;
    border-width: 5px;
    /*-webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;*/
    /*writing-mode: vertical-rl !important; /* Vertical orientation */
    /*text-orientation: mixed !important;
    /*white-space: nowrap; /* Prevent text from wrapping */
}
.tree ul ul ul ul ul li a {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    padding: 50px 9px;
    text-decoration: none;
    color: #666;
    background-color:#7CC77C;
    font-family: arial, verdana, tahoma;
    font-size: 10px;
    border: 5px solid #0F4F11;
    border-radius: 5px;
    border-width: 5px;
    /*-webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;*/
    /*writing-mode: vertical-rl !important; /* Vertical orientation */
    /*text-orientation: mixed !important;
    /*white-space: nowrap; /* Prevent text from wrapping */
}
/*our team desktop*/
/*our team mobile*/

ol {
  list-style: none;
}
.mobile-container {
  max-width: 1000px;
  padding: 0 10px;
  text-align: center;
  margin: 0 auto;
}

.rectangle {
  position: relative;
  padding: 10px;
  background-color: #7CC77C;
  border-color:#0F4F11;
  border-width: 5px;
  border-radius: 4px;
}

/* LEVEL-2 STYLES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.level-2-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  
}

.level-2-wrapper li {
  position: relative;
  
}

.level-2 {
  width: 70%;
  margin: 0 auto 40px;
  background-color: #7CC77C;
  border-color:#0F4F11;
  border-width: 5px;
  border-radius: 4px;
}
.level-2:hover {
  width: 70%;
  margin: 0 auto 40px;
  background-color: #027B7B;
  border-color:#0F4F11;
  border-width: 5px;
  border-radius: 4px;
  cursor: pointer;
}

/* LEVEL-3 STYLES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.level-3-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 20px;
  width: 90%;
  margin: 0 auto;
  
}

.level-3 {
  margin-bottom: 20px;
  background-color: #7CC77C;
  border-color:#0F4F11;
  border-width: 5px;
  border-radius: 4px;
}
.level-3:hover {
  margin-bottom: 20px;
  background-color: #027B7B;
  border-color:#0F4F11;
  border-width: 5px;
  border-radius: 4px;
  cursor: pointer;
}
/* LEVEL-4 STYLES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.level-4-wrapper-b {
  position: relative;
  width: 80%;
  margin-left: auto;
}

.level-4-wrapper-b::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 10px;
  width: 5px;
  height: calc(100% - 18px);
  background:  #0F4F11;
}

.level-4-wrapper-b li + li {
  margin-top: 20px;
}

.level-4-wrapper-a {
  position: relative;
  width: 80%;
  margin-left: auto;
}

.level-4-wrapper-a::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 10px;
  width: 5px;
  height: calc(100% - 33px);
  background:  #0F4F11;
}

.level-4-wrapper-a li + li {
  margin-top: 20px;
}
.level-4-wrapper-c {
  position: relative;
  width: 80%;
  margin-left: auto;
}

.level-4-wrapper-c::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 10px;
  width: 5px;
  height: calc(100% - 33px);
  background:  #0F4F11;
}

.level-4-wrapper-c li + li {
  margin-top: 20px;
}
.company-mobile a {
    text-decoration: none;
    color:#0F4F11;
    font-size: 18px;
}
.level-4 {
  font-weight: normal;
  background-color: #7CC77C;
  border-color:#0F4F11;
  border-width: 5px;
  border-radius: 4px;
}
.level-4:hover {
  font-weight: normal;
  background-color: #027B7B;
  border-color:#0F4F11;
  border-width: 5px;
  border-radius: 4px;
  cursor: pointer;
}

.level-4::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(-100%, -50%);
  width: 20px;
  height: 5px;
  background:  #0F4F11;
  
}

/*our team mobile*/
/*Our Team*/
/*Events*/
.calendar {
    background-color: #DD7C2F;
    color: black;
    border-radius: 5px;
    max-width: 1600px;
    width: 100%;
}
.calendar-inner {
    padding: 2rem;
}

.calendar_headings {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.fa-solid.fa-arrow-left,
.fa-solid.fa-arrow-right {
    margin: 0 10%;
    cursor: pointer;
    font-size: 1.2rem;
}
.current_datetime {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color:#7CC77C;
    padding: 0.7rem;
    margin-bottom: 1rem;
    border-radius: 5px;
}
.current_datetime .daytxt {
    background-color: #027B7B;
    color: white;
    border-radius: 5px;
    padding: 0.5rem 1rem;
}
.days_date ul {
    list-style: none;
}
.days_date .days, #dates {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
}
#dates {
    margin-top: 0rem 0;
}
.days_date .days li {
    border-bottom: 10px solid #027B7B;
    margin: 0rem 1rem;
}
#dates li {
    padding: 0.5rem;
    margin: 0.2rem;
    display: flex;
    align-items: left;
    justify-content: left;
    cursor: pointer;
    height: 200px;
    border-radius: 5px;
    color: black;
    background-color:#7CC77C;
}
#dates li:hover {
    background-color: #027B7B;
    color: black;
}
/*.days_date #dates li.active {
    background:;
}*/
.days_date #dummy {
    color: black;
    background-color:#F4BB44;
}
.days_date #dummy:hover {
    background-color: #DD7C2F;
    color: black;
}

/*Events*/
/*Footer*/

.footer a {
    text-decoration: none;
}
/*Footer*/

