@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Lato", sans-serif;
}
html{
    scroll-behavior: smooth;
}
h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 600;
  line-height: 1.2;
  color: #262221;
}

h1, .h1 {
  font-size: calc(1.375rem + 1.5vw);
}
@media (min-width: 1200px) {
  h1, .h1 {
    font-size: 2.5rem;
  }
}

h2, .h2 {
  font-size: calc(1.325rem + 0.9vw);
}
@media (min-width: 1200px) {
  h2, .h2 {
    font-size: 2rem;
  }
}

h3, .h3 {
  font-size: calc(1.3rem + 0.6vw);
}
@media (min-width: 1200px) {
  h3, .h3 {
    font-size: 1.75rem;
  }
}

h4, .h4 {
  font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
  h4, .h4 {
    font-size: 1.5rem;
  }
}

h5, .h5 {
  font-size: 1.25rem;
}

h6, .h6 {
  font-size: 1rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
  color: #262221;
}

.lato-thin {
  font-family: "Lato", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.lato-light {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.lato-regular {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.lato-bold {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.lato-black {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.lato-thin-italic {
  font-family: "Lato", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.lato-light-italic {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.lato-regular-italic {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.lato-bold-italic {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.lato-black-italic {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: italic;
}
.text-white,
.text-white *{
  color: #fff;
}
.top-navigation{
    /* position: fixed; */
    background-color: transparent;
    padding: 8px 40px;   
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-navigation > div{
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    pointer-events: none;
}

.navigation-list{
    list-style: none;
    display: flex;
    width: 300px;
    justify-content: space-around;
}
.navigation-list li{
    display: inline-block;
    font-weight: 500;
}
.navigation-list li a{
    text-decoration: none;
    color: #fff;
    font-size: 18px;
}
.navigation-list li a:hover{
    font-weight: 600;
}
.logo-img{
    height: 35px;
    width: 35px;
    object-fit: cover;
    display: block;
}
.home-banner {
    /* Optional: Add a background image or pattern to see the blur effect */
    background-image: url('Images/Home.jpg');
    background-size: cover;
    background-position: center;
    /* display: flex; */
    justify-content: center;
    align-items: center;
    min-height: 600px;
    height: 100vh;
    margin: auto;
    position: relative;
}

.container {
    /* The container creates the context for the blur */
    width: 460px;
    /* height: 200px; */
    background-color: rgba(255, 255, 255, 0.1); /* Slight background color for contrast */
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
}

.blurry-box {
    /* The key property for the blur effect */
    backdrop-filter: blur(5px);
    
    /* Ensure the box takes the full space within its container */
    width: 100%;
    height: 100%;
    
    /* Ensures the blur applies correctly within the rounded corners */
    border-radius: 10px; 
    
    /* Optional: Center the text inside the box */
    /* display: flex;
    justify-content: center; */
    align-items: center;
    text-align: center;
}

.blurry-box h1.large-text {
    /* Style for the text */
    color: #fff;
    font-size: 62px;
    line-height: 70px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);

}
.blurry-box p{
    color: #fff;
    font-size: 28px;
    line-height: 36px;    
}
.products-section{
    background-color: white;
    padding: 40px;
    margin: auto;
    max-width: 1200px;
}
.product-img{
    height: 100%;
    width: 100%;
    border-radius: 25px;
    aspect-ratio: 1 / 1;
}
#products{
    margin-bottom: 40px
}
.product-banner{
    /* display: flex;
    flex-direction: row;
    gap: 30px; */
    display: grid;
    grid-template-columns: 1fr 1fr; /* Creates two equal-width columns */
    gap: 20px; /* Optional: Adds space between the columns */
    margin-bottom: 40px;
    align-items: center;
}
.product-description{
  text-align: left;
}
.about-banner{
    /* background-color: #1d1b11; */
    background-image: url('Images/GrayWall.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: #fff;
    margin: auto;
    text-align: center;
}
.about-content{
    max-width: 1200px;
    margin: auto;
    padding: 40px 0;
}
.about-description{
    width: 80%;
    margin: auto;
}
.footer-section{
    background-color: #f7f7f1;
    color: #262221;
}
.footer-content{
    padding: 40px 80px;
    margin: auto;
    display: flex;
    flex-direction: row;
    gap: 90px;
    max-width: 1200px;
    width: 100%;
    align-items: flex-start;
}
.footer-img {
    display: flex;
    align-items: center;
    font-weight: 900;
    font-size: 25px;
    pointer-events: none;
}
.footer-img img{
    height: 80px;
    width: 80px;
}
.grid-3{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    /* max-width: 1200px; */
    width: 100%;
    /* margin: auto; */
    
    justify-items: end;
}
.footer-detail .footer-detail-column{
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    margin-bottom: 8px;
    align-items: flex-start;
    gap: 4px;
    word-break: break-word;
}
.footer-detail .footer-detail-column i{
  margin-top: 3px;
}
.footer-detail .footer-detail-column p,
.footer-detail .footer-detail-column a{
  margin-bottom: 8px;
  font-size: 14px;
}
.footer-detail h4{
    margin-bottom: 12px;
}
.footer-detail a{
    color: #2222d7;
}

.tag {
  opacity: 0;
  transform: translate(0, 10vh);
  transition: all 1s;
}

.tag.visible {
  opacity: 1;
  transform: translate(0, 0);
}

@media screen and (max-width: 1024px) {
  .home-banner{
    max-height: 600px;
    min-height: unset;
  }
  .footer-content{
    gap: 8px;
    padding: 30px;
    justify-content: space-between;
  }
}
@media screen and (max-width: 768px) {
  .top-navigation,
  .home-banner, 
  .products-section, 
  .about-banner, 
  .footer-section{
    padding: 20px;
  }
  .container{
    width: unset;
  }
  .blurry-box {
    padding: 16px
  }
  .blurry-box h1.large-text{
    font-size: calc(1.375rem + 1.5vw);
    line-height: normal;
  }
  .blurry-box p{
    font-size: calc(1.15rem + 1vw);
    line-height: normal;
  }
  #products{
    margin-bottom: 24px;
  }
  .product-img{
    max-height: 280px;
  }
  .footer-content{
    padding: 0;
    flex-wrap: wrap;
  }
  .navigation-list{
    width: 20%;
    gap: 20px;
  }
  .navigation-list li{
    width: unset
  }
  .grid-3{
    gap: 8px;
  }
  .footer-img{
    font-size: calc(1rem + 1vw);
  }
}
@media (max-width: 500px) {
  .top-navigation{
    padding: 0;
  }
  .container{
    width: 80%;
  }
  .home-banner{
    max-height: 450px;
  }
  .product-banner{
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #9e9c9c;
    align-items: flex-start;
  }
  .product-banner:nth-child(odd){
    flex-direction: column-reverse;
  }
  .product-banner:last-child{
    border-bottom: none;
    margin-bottom: 16px;
  }
  .about-description{
    width: 100%;
  }
}