body {
  overflow-x: hidden;
  align-items: center; /* Centers vertically */
  height: 100vh; /* Full height of the viewport */
  margin: 0; /* Remove default margin */
  background-color: var(--background-color);
}
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Oswald', sans-serif;
}
nav{
  position: fixed;
  z-index: 99;
  width: 100%;
  background: var(--header-color); 
  border-color: rgb(0, 0, 0);
  border-width: 1px;
  border-bottom-style: solid;
}
nav .wrapper{
  position: relative;
  max-width: 1300px;
  padding: 0px 30px;
  height: 70px;
  line-height: 70px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wrapper .logo a{
  color: var(--header-text-color);
  font-size: 30px;
  font-weight: 600;
  text-decoration: none;
}
.wrapper .nav-links{
  display: inline-flex;
}
.nav-links li{
  list-style: none;
}
.nav-links li a{
  color: var(--header-text-color);
  text-decoration: none;
  font-size: 24px;
  font-weight: 500;
  padding: 9px 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.nav-links li a:hover{
  background: var(--header-hover-color);
}
.nav-links .mobile-item{
  display: none;
}
.nav-links .drop-menu{
  position: absolute;
  background: var(--header-color);
  width: 180px;
  line-height: 45px;
  top: 85px;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 6px 10px rgba(110, 110, 110, 0.15);
}
.nav-links li:hover .drop-menu,
.nav-links li:hover .mega-box{
  transition: all 0.3s ease;
  top: 70px;
  opacity: 1;
  visibility: visible;
}
.drop-menu li a{
  width: 100%;
  display: block;
  padding: 0 0 0 15px;
  font-weight: 400;
  border-radius: 0px;
}
.wrapper .btn{
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: none;
}
.wrapper .btn.close-btn{
  position: absolute;
  right: 30px;
  top: 10px;
}

@media screen and (max-width: 970px) {
  .wrapper .btn{
    display: block;
  }
  .wrapper .nav-links{
    position: fixed;
    height: 100vh;
    width: 100%;
    max-width: 350px;
    top: 0;
    left: -100%;
    background: var(--header-color);
    display: block;
    padding: 50px 10px;
    line-height: 50px;
    overflow-y: auto;
    box-shadow: 0px 15px 15px rgba(0,0,0,0.18);
    transition: all 0.3s ease;
  }
  /* custom scroll bar */
  ::-webkit-scrollbar {
    width: 10px;
  }
  ::-webkit-scrollbar-track {
    background: #242526;
  }
  ::-webkit-scrollbar-thumb {
    background: #3A3B3C;
  }
  #menu-btn:checked ~ .nav-links{
    left: 0%;
  }
  #menu-btn:checked ~ .btn.menu-btn{
    display: none;
  }
  #close-btn:checked ~ .btn.menu-btn{
    display: block;
  }
  .nav-links li{
    margin: 15px 10px;
  }
  .nav-links li a{
    padding: 0 20px;
    display: block;
    font-size: 20px;
  }
  .nav-links .drop-menu{
    position: static;
    opacity: 1;
    top: 65px;
    visibility: visible;
    padding-left: 20px;
    width: 100%;
    max-height: 0px;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
  }
  #showDrop:checked ~ .drop-menu,
  #showMega:checked ~ .mega-box{
    max-height: 100%;
  }
  .nav-links .desktop-item{
    display: none;
  }
  .nav-links .mobile-item{
    display: block;
    color: #f2f2f2;
    font-size: 20px;
    font-weight: 500;
    padding-left: 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  .nav-links .mobile-item:hover{
    background: #3A3B3C;
  }
  .drop-menu li{
    margin: 0;
  }
  .drop-menu li a{
    border-radius: 5px;
    font-size: 18px;
  }
  .mega-box{
    position: static;
    top: 65px;
    opacity: 1;
    visibility: visible;
    padding: 0 20px;
    max-height: 0px;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  .mega-box .content{
    box-shadow: none;
    flex-direction: column;
    padding: 20px 20px 0 20px;
  }
  .mega-box .content .row{
    width: 100%;
    margin-bottom: 15px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .mega-box .content .row:nth-child(1),
  .mega-box .content .row:nth-child(2){
    border-top: 0px;
  }
  .content .row .mega-links{
    border-left: 0px;
    padding-left: 15px;
  }
  .row .mega-links li{
    margin: 0;
  }
  .content .row header{
    font-size: 19px;
  }
}
nav input{
  display: none;
}

.body-text{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  padding: 0 30px;
}
.body-text div{
  font-size: 45px;
  font-weight: 600;
}


.left-box {
  display:flex;
  float: left;
  width: 100%;
  height: fit-content;
  margin-right: 30px;
  margin-left: 30px;
  padding: 0px;
  /**margin-top: 10px; /**why the boxes arent centered w the parent container**/
  background-color: var(--color-box);
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 22px;
  font-family: 'Oswald', sans-serif;
  color: var(--left-color);
  flex-direction: column;
}
.left-box p{
  display: flex;
  /**float: right;**/
  /**padding: 20px;**/
  padding-right: 20px;
  /**padding-bottom: 20px;**/
}
.left-box img {
  padding: 20px;
}
.left-box h1 {
  font-size: 50px;

}
.left-box h2 {
  font-size: 25px;
  padding: 20px;
}
.left-box h4 {
  font-size: 15px;
  padding: 20px;
  font-style: italic;
}
.left-box li {
  padding: 10px;
}
.left-box ul {
  font-size: 24px;
}
.right-box {
  display: flex;
  float: right;
  width: 860px;
  height: 200px;
  margin-left: 30px;
  margin-right: 30px;
  background-color: var(--background-color);
  /**margin-top: 40px; /**why the boxes arent centered w the parent container**/
  justify-content: center;
  align-items: center;
}
.parent-box-index {
  display: flex;
  flex-direction: column;
  padding-bottom: 50px;

  /**float: right;**/
  width: 40%;
  /**height: 420px; /**this is still the white space around the boxes**/
  margin: 20px;/**rand white space under welcome message**/
  /**background-color: rgb(167, 167, 167);**/
  border-bottom: #242526;
  justify-content: center;
  align-items: center;
  color: var(--text-color);
  padding-top: 50px;
}
.parent-box {
  display: flex;
  flex-direction: column;
  padding-bottom: 50px;

  /**float: right;**/
  width: 100%;
  /**height: 420px; /**this is still the white space around the boxes**/
  margin: 20px;/**rand white space under welcome message**/
  /**background-color: rgb(167, 167, 167);**/
  border-bottom: #242526;
  justify-content: center;
  align-items: center;
  color: var(--text-color);
  padding-top: 50px;
}
.parent-box h2 {
  padding: 10px;
  font-size: 35px;
}
.parent-box p {
  padding: 10px;
  padding-right: 30px;
  padding-left: 30px;
}

.side-by-side{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}



.photo-box-right {
  display: flex;
  float: right;
  width: 860px;
  height: 720px;
  padding-top: 0px;
  margin-left: 30px;
  margin-right: 70px;
  margin-bottom: 30px;
  background-color: auto;
  /**margin-top: 40px; /**why the boxes arent centered w the parent container**/
  justify-content: center;
  align-items: center;
  color: var(--left-color);
  padding-bottom: 0px;
  padding-right: 0px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.photo-box-right img {
  width: 100%; /* Make the image stretch horizontally */
  height: 100%; /* Make the image stretch vertically */
  object-fit: cover; /* Ensures the image maintains its aspect ratio and fills the div */
}
.photo-box-right h2 {
  padding: 30px;
}
.photo-box-right-index {
  display: flex;
  float: right;
  width: 100%;
  height: 750px;
  padding-top: 0px;
  margin-left: 30px;
  margin-right: 60px;
  margin-bottom: 30px;
  background-color: rgb(207, 207, 207);
  /**margin-top: 40px; /**why the boxes arent centered w the parent container**/
  justify-content: center;
  align-items: center;
  color: var(--left-color);
  padding-bottom: 0px;
  padding-right: 0px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  flex-direction: column;
  border-radius: 20px;
}
.photo-box-right-index h2 {
  padding: 30px;
}

.index-spacer {
  padding-bottom: 70px;
}
.spacer {
  padding-bottom: 40px;
}
.line {
  border-top: 1px solid var(--text-color);
  margin-right: 40px;
  margin-left: 40px;
  margin-bottom: 20px;
  margin-top: -30px;
  z-index: 98;
}
.top-spacer {
  margin-bottom: 70px;
}

.landing-photo {
  display: flex;
  height: 600px;
}
.landing-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header-photo {
  display: flex;
  height: 600px;
}
.header-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.landing-text {
  font-size: 50px;
  display: flex;
  padding: 10px;
  height: 80px;
  justify-content: center;
  align-items: center;
  background-color: var(--header-color);
  /**border-bottom: 2px solid rgb(131, 131, 131);**/
  color: var(--header-text-color);
  border-style: solid;
  border-width: 1px;
}
/* Footer Styles */
.footer {
  background-color: var(--header-color);
  color: var(--header-text-color);
  padding: 20px 0;
  
  border-style: solid;
  border-width: 1px;
}

.footer-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section {
  flex: 1;
  margin: 10px;
  min-width: 200px;
}

.footer-section h4 {
  margin-bottom: 10px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin: 5px 0;
}

.footer-section ul li a {
  color: var(--header-text-color);
  text-decoration: none;
}

.footer-section ul li a:hover {
  color: var(--header-hover-color);
}

.footer-bottom {
  text-align: center;
  padding: 10px 0;
  border-top: 1px solid #444;
  margin-top: 20px;
}

#map {
  display: flex;
  float: right;
  width: 100%;
  height: 100%;
  background-color: var(--background-color);
  /**margin-top: 40px; /**why the boxes arent centered w the parent container**/
  justify-content: center;
  align-items: center;
  z-index: 1;
}
:root {
  --header-color: rgb(255, 255, 255);
  --header-text-color: rgb(0, 0, 0);
  --text-color: rgb(87, 87, 87);
  --header-hover-color: rgb(201, 201, 201);
  --background-color: rgb(255, 255, 255);
  --box-color: rgb(207, 207, 207);
  --left-color: rgb(0, 0, 0);
  --left-background-color: rgb(173, 48, 48);
}

.categories-container {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(1, minmax(200px, 1fr));
  gap: 20px;
  padding: 20px;
}
/**center the card its on the left rn**/
.category-card {
  background: #ffffff;
  border: 3px solid transparent;
  border-radius: 5px;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 5px rgb(182, 182, 182);
  position: relative;
  overflow: hidden;
}

.category-card:hover {
  transform: translateY(-5px);
  background: linear-gradient(#ffffff, #ffffff) padding-box,
              linear-gradient(135deg, #adadad 0%, var(--header-hover-color) 100%) border-box;
  border: 3px solid transparent;
}

.color-box {
  background-color: var(--box-color);
  margin: 80px;
  padding: 0px;
  display: flex;
  flex-wrap: wrap;
  /*overflow: scroll;*/
  height: fit-content;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  border-style: solid;
  border-width: 0px;
  margin-bottom: 110px;
}
.color-box-header {
  background-color: var(--box-color);
  padding: 20px;
  margin-bottom: 0px;
  display: flex;
  /**width: fit-content;**/
  height: fit-content;
  margin: 100px;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 20px;
  border-style: solid;
  border-width: 0px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.color-box-header h1 {
  font-size: 50px;
}
.column {
  display: flex;
  flex-direction: column;
}
.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}
.form-group textarea {
  width: fit-content;
}
label {
  margin-bottom: 8px;
}
.sale {
  color: rgb(78, 78, 78);
  text-decoration: line-through;
}

/* Responsive Styles */
@media (max-width: 1000px) {
  .wrapper .logo a{
    font-size: 37px;
  }
  .nav-links li a{
    font-size: 30px;
  }
  .body-text div {
    font-size: 30px;
    padding: 0 15px;
  }

  .left-box, .right-box {
    flex-direction: column;
    width: 100%;
    height: fit-content;
    margin: 10px 0;
  }

  .left-box h2 {
    font-size: 45px;
  }
  .left-box ul {
    font-size: 35px;
  }
  .left-box p {
    font-size: 26px;
  }

  .color-box {
    height: fit-content; 
    width: 80%;
  }
  .photo-box-right {
    width: 100%;
    height: auto;
    margin: 10px 0;
    margin-right: 45px;

  }

  .photo-box-left img, .photo-box-right img {
    width: 100%;
    height: auto;

  }

  .side-by-side {
    flex-direction: column;
  }
  .form-group textarea {
    width: 300px;
  }
  .form-group label {
    font-size: 30px;
  }
  .form-group input {
    width: 300px;
  }

  .categories-container {
    grid-template-columns: repeat(1, 1fr);
    padding: 10px;
  }

  .category-card {
    margin: 10px 0;
  }

  .parent-box-index {
    width: 80%;
  }
}
