/*CREATED BY JO COATES AND TANNER CROSSLEY FEB-APRIL 2024*/



/* STYLES FOR BODY*/
.mainwhole{
  width: 100%;
  padding: 0% 5%;
}
body{
  display: flex;
  padding-right: 0%;
  align-items: stretch;
  padding-right: 0%;
  width:  100%;
}

/* STYLES FOR NAV */

  .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    padding: 10px;
    margin-top:1%;
    margin-bottom:1%;
    border-bottom:#000000 solid 1px;
  }
  
  .logo {
    width: 200px;
  }
  
  .logo img {
    width: 100%;
    height: auto;
  }
  
  .search {
    flex: 1;
    margin: 0 20px;
    padding-left: 10%;
  }
  
  .search input {
    width: 50%;
    height: 30px;
    border: black solid 1px;
    border-radius: 15px;
    padding: 5px 10px;
    outline: none;
    padding-left:20px;
  }
  
  .search button {
    width: 8%;
    height: 30px;
    border-radius: 15px;
    background-color: #d0d0d0;
    cursor: pointer;
  }
  
  .search i {
    font-size: 16px;
  }
  
  .nav {
    width: auto;
    font-size: 22px;
    border-bottom: 3px solid transparent;
  }
  
  .nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .nav li {
    margin: 0 10px;
  }
  
  .nav a {
    text-decoration: none;
    color: #000000;
  }
 
  .icons {
    display: flex;
  }
  
  .icons a {
    margin: 0 10px;
    color: #000000;
    text-decoration: none;
  }
  
  .icons i {
    font-size: 24px;
  }

/* STYLES FOR MAIN*/

.SaleItems{
  text-align: center;
  text-decoration: underline;
}


.MainStyle{
    text-align: center;
}
.main{
    padding: 10px;
    padding-right: 0%;
    text-decoration-style:solid;
    color:#aecae9;
    background-color:#122e58;
    margin-bottom: 2px;
}
.storetitle{
    padding-right: 230px
}
.banner{
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-bottom: 1%;
  width: 80%;
}
.column {
  float: left;
  width: 15%;
  margin: 1.5% 2%;
  padding: 0 8px;
  text-align: center;
}
.card {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}
.container {
  padding: 2px 10px;
}
.container::after, .row::after {
  content: "";
  clear: both;
  display: table;
}
.button {
  border: none;
  outline: 0;
  display: inline-block;
  padding: 8px;
  color: white;
  background-color: #8e4b24;
  text-align: center;
  cursor: pointer;
  width: 100%;
}
.button:hover {
  background-color: #dd6b28;
}
.construction{
    text-align: center;
    text-decoration: solid;
}

/* STYLES FOR INFORMATION PAGES */

  .container2{ 
    width: 80%; margin: auto; 
  }
  .product-header{ 
    text-align: center; 
    background-color: #122e58;
    padding: 5px;
    color:aliceblue; 
  }
  .product-details{ 
    display: flex; justify-content: space-around; margin-top: 20px; 
  }
  .product-image{ 
    width: 40%;
    border: 5px;
    border: solid;
    border-color: #122e58;
  }
  .product-info{ 
    max-width: 500px; 
  }
  .buy-button{ 
    background-color:#4CAF50; 
    color: white; 
    padding: 14px 20px; 
    margin: 10px 0; 
    border: solid; 
    border-color: #45a049;
    cursor: pointer; 
    text-decoration: none;
  }
  .buy-button:hover {
     background-color: #45a049; 
  }


  /* STYLES FOR THE FOOTER */
.social-icons{
	padding:13px;
	background-color:#8e4b24;
    text-align: center;
}
.social-icons a{
	color:#fff;
    line-height:30px;
    font-size:30px;
    margin: 0 5px;
    text-decoration:none;
    padding-left:.7em;
}
.social-icons a i{
    line-height:30px;
    font-size:30px;
    -webkit-transition: all 200ms ease-in;
    -webkit-transform: scale(1); 
    -ms-transition: all 200ms ease-in;
    -ms-transform: scale(1); 
    -moz-transition: all 200ms ease-in;
    -moz-transform: scale(1);
    transition: all 200ms ease-in;
    transform: scale(1);
}
.social-icons a:hover i{
    box-shadow: 0px 0px 150px #000000;
    z-index: 2;
    -webkit-transition: all 200ms ease-in;
    -webkit-transform: scale(1.5);
    -ms-transition: all 200ms ease-in;
    -ms-transform: scale(1.5);   
    -moz-transition: all 200ms ease-in;
    -moz-transform: scale(1.5);
    transition: all 200ms ease-in;
    transform: scale(1.5);
}
footer{
    background-color: lightgray;
    text-align: center;
    color: black;
    padding-bottom: 2px;
    font-size: .8em;
    bottom: 0%;
    width: 100%;
}

