@import url(colors.css);

#pc{
  display: block;
}
#mobil{
  display: none;
}

html{
  background-color: var(--c-background-0);
  /* background-color: #faf; */
  overflow-y: scroll;
  overflow-x: hidden;
}

body{
  overflow-x: hidden;
  margin: 0px;
  color: var(--c-text-white);
  font-family: Arial, Helvetica, sans-serif;
}

span{
  font-style: italic;
}

.svg {
  color: var(--c-text-white);
  font-size: 2.5rem;
  transition: color 0.3s ease;
}

.svg:hover {
  color: var(--c-main-2)
}

a{
  text-decoration: none;
}

/* For WebKit (Chrome, Edge, Safari) */
::-webkit-scrollbar {
  width: 6px;  /* vertical scrollbar */
  height: 6px; /* horizontal scrollbar */
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: var(--c-background-1); /* your custom color */
  border-radius: 2px;
}

/* Optional: on hover */
::-webkit-scrollbar-thumb:hover {
  background-color: var(--c-main-2);
}

/* For Firefox */
* {
  scrollbar-width: thin;          /* "auto" | "thin" | "none" */
  scrollbar-color: var(--c-background-1) transparent;
}

/* NAVIGATION PANEL */

.main-top-panel{
  /* width: calc(100vw - 40px); */
  /* margin: auto; */
  background-color: var(--c-background-0);
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 0.3rem;
  padding-bottom: 0rem;
  /* border-radius: 16px; */
  margin-bottom: -1rem;
  display: grid;
  grid-auto-flow: column;
}

.main-title{
  color: var(--c-text-white);
  font-size: 5.5rem;
  line-height: 5.5rem;
  margin-top: 0;
  margin-bottom: 0;
  cursor: default;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  transition: all 0.3s ease;
  border-radius: 4px;
  display: flex;
}

.main-title img{
  width: 5.5rem;
  height: 5.5rem;
  margin-right: 20px;
}

.main-title:hover{
  color: var(--c-main-2);
}

.main-navigation-bar{
  z-index: 0;
  width: fit-content;
  /* background-color: #faf; */
  display: grid;
  grid-auto-flow: column;
  max-width: fit-content;
  margin-left: auto;
}

.main-navigation-box-item{
  width: fit-content;
  display: flex;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  /* background-color: rgb(127, 18, 199); */
  align-items: center;
}

.main-navigation-box-item p{
  /* background-color: #Daf; */
  font-size: 2.4rem;
  letter-spacing: 0.1rem;
  font-weight: bold;
  color: var(--c-text-white);
  font-family: monospace;
  margin-bottom: 0px; 
  margin-top: 0px;
}

.main-navigation-box-item a{
  /* background-color: #Daf; */
  font-size: 2.4rem;
  letter-spacing: 0.1rem;
  font-weight: bold;
  color: var(--c-text-white);
  font-family: monospace;
  margin-bottom: 0px; 
  margin-top: 0px;
}

.main-navigation-box-item:hover{
  text-shadow: 0.2rem 0.2rem 1px var(--c-main-2);
}

.main-navigation-box-item-pointer{
  font-size: 100px;
}

/* BODY */

#main-body{
  /* background-color: #faf; */
  background-color: var(--c-background-2);
  background-image: url("resources/perlin.png");
  border-radius: 15px;
  margin: 20px;
  min-height: calc(80vh);
  width: calc(100vw - 40px);
}

.content{
  transition: opacity 0.4s ease;
}

.content-panel-title{
  font-size: 2.4rem;
  margin-top: 0px;
  margin-bottom: 2rem;
  text-align: center;
  cursor: default;
}

.content-home-image-container{
  position: relative;
  width: 100%;
  /* max-width: 600px; */
  margin: auto;
  box-shadow: 5px 5px 30px var(--c-background-0);
}

.content-home-image-container img {
  width: 100%;
  /* height: 30rem; */
  display: block;
  border-radius: 15px 15px 0 0;
}

.content-home-image-container-blur-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(6px); 
  background-color: rgba(0, 0, 0, 0.4); 
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3em;
  border-radius: 15px 15px 0 0;
  font-weight: bold;
  /* color: var(--c-main-2); */
}

.content-home-image-container-blur-overlay p{
  cursor: default;
  transition: all 0.3s ease;
}

.content-home-image-container-blur-overlay p:hover{
  transform: scale(1.04);
}

.content-home-MTF-panel{
  /* background-color: #faf; */
  width: 90%;
  /* justify-self: center; */
  margin: auto;
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
}

/* .content-home-MTF-panel h1{ */
/*   font-size: 3rem; */
/* } */

.content-home-MTF-row{
  /* background-color: #daf; */
  display: grid;
  grid-auto-flow: column;
  grid-gap: 1vw;
}
.content-home-MTF-column{
  /* background-color: #daf; */
  display: grid;
  grid-auto-flow: column;
  grid-gap: 1vw;
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.content-home-MTF-card{
  /* background-color: #ffa; */
  width: 100%;
  max-width: 300px;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 4px var(--c-main-2);
  transition: box-shadow 0.2s ease-out;
}

.content-home-MTF-card:hover {
  box-shadow: 0 0px var(--c-main-2);
}

.content-home-MTF-card img {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(100%);
  transition: filter 0.4s ease, transform 0.3s ease;
}

.content-home-MTF-card:hover img {
  filter: grayscale(0%);
  transform: scale(1.03);
}

.content-home-MTF-card-overlay-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.8rem;
  padding-top: 0rem;
  padding-bottom: 0rem;
  border-radius: 2px;
  background: rgba(0, 0, 0, 0.8);
  color: var(--c-text-white);
  text-align: center;
  opacity: 0;
  transform: translateY(20%);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.content-home-MTF-card:hover .content-home-MTF-card-overlay-text {
  opacity: 1;
  transform: translateY(0%);
}

.content-home-MTF-card-overlay-text h2 {
  font-size: 1rem;
  /* background-color: #faf; */
}

.content-home-MTF-card-overlay-text p {
  font-size: 1.2rem;
  font-style: italic;
  /* background-color: #faf; */
}

.content-home-OV-panel{
  /* background-color: #faf; */
  width: 60%;
  /* justify-self: center; */
  margin: auto;
  margin-top: 5rem;
  display: flex;
  flex-direction: column;
}

.content-home-OV-panel p{
  /* background-color: #daf; */
  margin-top: 0px;
  font-size: 1.2rem;
  text-align: justify;
  font-style: italic;
}

.content-home-OV-panel h2{
  /* background-color: #daf; */
  margin-top: 0px;
  font-size: 1.2rem;
  text-align: end;
  padding-right: 2rem;
}

.content-home-UT-panel{
  /* background-color: #faf; */
  width: 100%;
  justify-self: center;
  margin-top: 5rem;
  display: flex;
  flex-direction: column;
}

.content-home-UT-row{
  background-color: var(--c-main-2);
  padding: 10px;
  display: grid;
  grid-auto-flow: column;
  grid-gap: 5vw;
}
.content-home-UT-column{
  background-color: var(--c-main-2);
  display: grid;
  padding: 10px;
  padding-right: 5vw;
  padding-left: 5vw;
  grid-auto-flow: column;
  grid-gap: 5vw;
}

.content-home-UT-row img{
  width: 100%;
  height: 100%;
  max-width: 60px;
  max-height: 60px;
}

.content-home-HWW-panel{
  /* background-color: #faf; */
  width: 100%;
  justify-self: center;
  margin-top: 5rem;
  display: flex;
  flex-direction: column;
  cursor: default;
}

.content-home-HWW-box {
  padding-bottom: 1rem;
  text-align: center;
}

.content-home-HWW-work-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  align-items: center;
}

.content-home-HWW-step-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.content-home-HWW-arrow {
  font-size: 2rem;
  color: var(--c-main-2);
}

.content-home-HWW-step-card {
  background: var(--c-background-1);
  border-radius: 1rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.07);
  padding: 2rem;
  width: 240px;
  min-height: 200px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.content-home-HWW-step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--c-main-2);
}

.content-home-HWW-step-card .content-home-HWW-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--c-main-2);
}

.content-home-HWW-step-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--c-text-white);
}

.content-home-HWW-step-card p {
  font-size: 0.95rem;
  color: var(--c-text-white);
  line-height: 1.4;
}

.content-home-CTA-panel{
  /* background-color: #faf; */
  width: 80%;
  margin: auto;
  margin-top: 4rem;
  padding-bottom: 4rem;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}

.content-home-CTA-button{
  background-color: var(--c-main-2);
  font-size: 2rem;
  font-weight: bold;
  color: var(--c-text-black);
  border-style: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.content-home-CTA-button:hover{
  background-color: var(--c-main-1);
  border-radius: 6px;
}

.content-home-CTA-button:active{
  transform: scale(0.96);
  box-shadow: 0 2px 5px var(--c-main-2);
}


.content-contact-panel{
  /* background-color: #faf; */
  width: 55%;
  margin-left: 21vw;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-bottom: 4rem;
}

.content-contact-CF{
  /* background-color: #daf; */
  width: 30vw;
  padding-top: 2rem;
}

.content-contact-CF h1{
  font-size: 3rem;
}

.content-contact-CF p{
  font-size: 1.2rem;
  font-style: italic;
}

.content-contact-CF-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding-top: 2rem;
}

.content-contact-CF-form label {
  font-weight: bold;
}

.content-contact-CF-form input,
.content-contact-CF-form textarea {
  max-width: 90%;
  background-color: var(--c-background-2);
  padding: 0.8rem;
  border: none;
  border-bottom: 4px solid var(--c-main-2);
  background: transparent;
  padding: 0.5rem 0;
  font-size: 1rem;
  color: var(--c-text-white);
  outline: none;
  transition: border-color 0.3s;
  resize: none; 
}

.content-contact-CF-form button {
  background-color: var(--c-main-2);
  font-size: 2rem;
  font-weight: bold;
  color: var(--c-text-black);
  border-style: none;
  cursor: pointer;
  transition: all 0.3s ease;
  max-width: 90%;
}

.content-contact-CF-form button:hover{
  background-color: var(--c-main-1);
  border-radius: 6px;
}

.content-contact-CF-form button:active{
  transform: scale(0.96);
  box-shadow: 0 2px 5px var(--c-main-2);
}

.content-contact-OC{
  /* background-color: #daf; */
  width: 50%;
  align-content: start;
  justify-items: start;
  margin-left: 21vw;
  padding-bottom: 2rem;
}

.content-contact-OC h2{
  /* background-color: #aaf; */
  width: 70%;
}

.content-contact-svg-bar{
  /* background-color: #faf; */
  width: 70%;
  display: flex;
  justify-content: space-between;
}

.content-contact-mail-box{
  /* background-color: #faf; */
  width: 70%;
}

.content-contact-mail{
  /* background-color: #aaf; */
  color: var(--c-text-white);
  transition: all 0.3s ease;
  line-height: 2rem;
  font-size: 1.2rem;
}

.content-contact-mail:hover{
  /* background-color: #aaf; */
  color: var(--c-main-2);
}

.content-product-title{
  padding-top: 3rem;
}

.content-product-grid{
  /* background-color: #faf; */
  display: flex;
  justify-content: space-around;
  padding: 2rem;
  flex-wrap: wrap;
}

.content-product-card-box{
  /* background-color: #faf; */
  width: 24rem;
  text-align: center;
  margin: 1rem 2.5rem 1rem 2.5rem;
}

.content-product-card-box h2{
  font-size: 2rem;
  width: 24rem;
  text-align: center;
  margin-top: 0.6rem;
}

.content-product-card {
  position: relative;
  width: 24rem;
  height: 36rem;
  overflow: hidden;
  border-radius: 0px;
  /* background: var(--c-background-2); */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  display: flex;
}

.content-product-card-box:hover .content-product-card{
  width: 29rem;
  border-radius: 0 10px 10px 0;
}

.content-product-card-box:hover img{
  transform: scale(1.02);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.content-product-card img {
  width: 24rem;
  height: 36rem;
  object-fit: cover;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.content-product-card-info-panel {
  width: 5rem;
  height: 100%;
  /* background: var(--c-background-1); */
  display: flex;
  flex-direction: column;
}

.content-product-card-info-panel a{
  width: 5rem;
  height: 5rem;
  border-radius: 0 10px 10px 0;
  background: var(--c-main-2);
  display: flex;
  flex-direction: column;
  border-style: none;
  text-align: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.content-product-card-info-panel a i{
  font-size: 3.5rem;
}

.content-product-card-info-panel a i:hover{
  color: var(--c-text-black); 
}

.product-cart-coming-soon{
  filter: grayscale(0%);
}

.product-cart-coming-soon .content-product-card{
  filter: grayscale(100%);
}

.product-cart-card-coming-soon{
  display: none;
  transition: all 0.3s ease;
}

.product-cart-coming-soon:hover .product-cart-card-coming-soon{
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  width: 24.24rem;
  height: 36rem;
  backdrop-filter: blur(2px); 
  background-color: rgba(0, 0, 0, 0.6); 
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-cart-card-coming-soon p{
  color: var(--c-main-2);
  font-size: 3em;
  font-weight: bold;
  cursor: default;
}

/* FOOTER */

footer{
  color: var(--c-main-2);
  font-size: 0.8rem;
  letter-spacing: 0.1rem;
  text-align: center;
}

@media screen and (max-width: 1300px) and (min-width: 769px) {

    .main-navigation-box-item p {
    font-size: 3vw;
    }
    .main-title {
    font-size: 7vw;
;
}
    .main-title img {
    width: 10vw;
    margin-right: 0;
} 

}

@media screen and (max-width: 768px) and (min-width: 300px) {
#pc{
  display: block;
}
#mobil{
  display: none;
}

html{
  background-color: var(--c-background-0);
  /* background-color: #faf; */
  overflow-y: scroll;
  overflow-x: hidden;
}

body{
  overflow-x: hidden;
  margin: 0px;
  color: var(--c-text-white);
  font-family: Arial, Helvetica, sans-serif;
}

span{
  font-style: italic;
}

.svg {
  color: var(--c-text-white);
  font-size: 2.5rem;
  transition: color 0.3s ease;
}

.svg:hover {
  color: var(--c-main-2)
}

a{
  text-decoration: none;
}

/* For WebKit (Chrome, Edge, Safari) */
::-webkit-scrollbar {
  width: 6px;  /* vertical scrollbar */
  height: 6px; /* horizontal scrollbar */
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: var(--c-background-1); /* your custom color */
  border-radius: 2px;
}

/* Optional: on hover */
::-webkit-scrollbar-thumb:hover {
  background-color: var(--c-main-2);
}

/* For Firefox */
* {
  scrollbar-width: thin;          /* "auto" | "thin" | "none" */
  scrollbar-color: var(--c-background-1) transparent;
}

/* NAVIGATION PANEL */

.main-top-panel{
  /* width: calc(100vw - 40px); */
  /* margin: auto; */
  background-color: var(--c-background-0);
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 0.3rem;
  padding-bottom: 0rem;
  /* border-radius: 16px; */
  margin-bottom: -1rem;
  display: grid;
  grid-auto-flow: row;
}

.main-title{
  color: var(--c-text-white);
  font-size: 15vw;
  line-height: 5.5rem;
  margin-top: 0;
  margin-bottom: 0;
  cursor: default;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  transition: all 0.3s ease;
  border-radius: 4px;
  display: grid;
  grid-auto-flow: column;
}

.main-title img{
  width: 15vw;
  height: 5rem;
  margin-right: 0;
}

.main-title:hover{
  color: var(--c-main-2);
}

.main-navigation-bar{
  z-index: 0;
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
  /* background-color: #faf; */
  display: grid;
  grid-auto-flow: row;
}

.main-navigation-box-item{
  width: fit-content;
  display: flex;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  /* background-color: rgb(127, 18, 199); */
  align-items: center;
}

.main-navigation-box-item p{
  /* background-color: #Daf; */
  font-size: 2.4rem;
  letter-spacing: 0.1rem;
  font-weight: bold;
  color: var(--c-text-white);
  font-family: monospace;
  margin-bottom: 0px; 
  margin-top: 0px;
}

.main-navigation-box-item a{
  /* background-color: #Daf; */
  font-size: 2.4rem;
  letter-spacing: 0.1rem;
  font-weight: bold;
  color: var(--c-text-white);
  font-family: monospace;
  margin-bottom: 0px; 
  margin-top: 0px;
}

.main-navigation-box-item:hover{
  text-shadow: 0.2rem 0.2rem 1px var(--c-main-2);
}

.main-navigation-box-item-pointer{
  font-size: 100px;
}

/* BODY */

#main-body{
  /* background-color: #faf; */
  background-color: var(--c-background-2);
  background-image: url("resources/perlin.png");
  border-radius: 15px;
  margin: 20px;
  min-height: calc(80vh);
  width: calc(100vw - 40px);
}

.content{
  transition: opacity 0.4s ease;
}

.content-panel-title{
  font-size: 2.4rem;
  margin-top: 0px;
  margin-bottom: 2rem;
  text-align: center;
  cursor: default;
}

.content-home-image-container{
  position: relative;
  width: 100%;
  /* max-width: 600px; */
  margin: auto;
  box-shadow: 5px 5px 30px var(--c-background-0);
}

.content-home-image-container img {
  width: 100%;
  height: 50vw;
  display: block;
  border-radius: 15px 15px 0 0;
}

.content-home-image-container-blur-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(6px);
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 8vw;
  text-align: center;
  border-radius: 15px 15px 0 0;
  font-weight: bold;
  /* color: var(--c-main-2); */
}

.content-home-image-container-blur-overlay p{
  cursor: default;
  transition: all 0.3s ease;
}

.content-home-image-container-blur-overlay p:hover{
  transform: scale(1.04);
}

.content-home-MTF-panel{
  /* background-color: #faf; */
  width: 90%;
  /* justify-self: center; */
  margin: auto;
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
}

/* .content-home-MTF-panel h1{ */
/*   font-size: 3rem; */
/* } */

.content-home-MTF-row{
  /* background-color: #daf; */
  display: grid;
  grid-auto-flow: column;
  grid-gap: 1vw;
}
.content-home-MTF-column{
  /* background-color: #daf; */
  display: grid;
  grid-auto-flow: row;
  grid-gap: 1vw;
}

.content-home-MTF-card{
  /* background-color: #ffa; */
  width: 100%;
  max-width: 300px;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 4px var(--c-main-2);
  transition: box-shadow 0.2s ease-out;
}

.content-home-MTF-card:hover {
  box-shadow: 0 0px var(--c-main-2);
}

.content-home-MTF-card img {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(100%);
  transition: filter 0.4s ease, transform 0.3s ease;
}

.content-home-MTF-card:hover img {
  filter: grayscale(0%);
  transform: scale(1.03);
}

.content-home-MTF-card-overlay-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.8rem;
  padding-top: 0rem;
  padding-bottom: 0rem;
  border-radius: 2px;
  background: rgba(0, 0, 0, 0.8);
  color: var(--c-text-white);
  text-align: center;
  opacity: 0;
  transform: translateY(20%);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.content-home-MTF-card:hover .content-home-MTF-card-overlay-text {
  opacity: 1;
  transform: translateY(0%);
}

.content-home-MTF-card-overlay-text h2 {
  font-size: 1rem;
  /* background-color: #faf; */
}

.content-home-MTF-card-overlay-text p {
  font-size: 1.2rem;
  font-style: italic;
  /* background-color: #faf; */
}

.content-home-OV-panel{
  /* background-color: #faf; */
  width: 80%;
  /* justify-self: center; */
  margin-top: 5rem;
  display: flex;
  flex-direction: column;
}

.content-home-OV-panel p{
  /* background-color: #daf; */
  margin-top: 0px;
  font-size: 1.2rem;
  font-style: italic;
}

.content-home-OV-panel h2{
  /* background-color: #daf; */
  margin-top: 0px;
  font-size: 1.2rem;
  text-align: end;
  padding-right: 2rem;
}

.content-home-UT-panel{
  /* background-color: #faf; */
  width: 100%;
  justify-self: center;
  margin-top: 5rem;
  display: flex;
  flex-direction: column;
}

.content-home-UT-row{
  background-color: var(--c-main-2);
  padding: 10px;
  display: grid;
  grid-auto-flow: column;
  grid-gap: 5vw;
  max-width: fit-content;
  margin-right: auto;
  margin-left: auto;
}
.content-home-UT-column{
  background-color: var(--c-main-2);
  display: grid;
  padding: 10px;
  padding-right: 5vw;
  padding-left: 5vw;
  grid-auto-flow: row;
  grid-gap: 2vw;
}

.content-home-UT-row img{
  width: 80%;
  height: 100%;
  max-width: 60px;
  max-height: 60px;
}

.content-home-HWW-panel{
  /* background-color: #faf; */
  width: 100%;
  justify-self: center;
  margin-top: 5rem;
  display: flex;
  flex-direction: column;
  cursor: default;
}

.content-home-HWW-box {
  padding-bottom: 1rem;
  text-align: center;
}

.content-home-HWW-work-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  align-items: center;
}

.content-home-HWW-step-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.content-home-HWW-arrow {
  font-size: 2rem;
  color: var(--c-main-2);
  display: none;
}

.content-home-HWW-step-card {
  background: var(--c-background-1);
  border-radius: 1rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.07);
  padding: 2rem;
  width: 240px;
  min-height: 200px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.content-home-HWW-step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--c-main-2);
}

.content-home-HWW-step-card .content-home-HWW-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--c-main-2);
}

.content-home-HWW-step-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--c-text-white);
}

.content-home-HWW-step-card p {
  font-size: 0.95rem;
  color: var(--c-text-white);
  line-height: 1.4;
}

.content-home-CTA-panel{
  /* background-color: #faf; */
  margin-top: 4rem;
  padding-bottom: 4rem;
  display: grid;
  grid-auto-flow: column;
  grid-gap: 1vw;
  width: 100%;
}

.content-home-CTA-button{
  background-color: var(--c-main-2);
  font-size: 5vw;
  font-weight: bold;
  color: var(--c-text-black);
  border-style: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.content-home-CTA-button:hover{
  background-color: var(--c-main-1);
  border-radius: 6px;
}

.content-home-CTA-button:active{
  transform: scale(0.96);
  box-shadow: 0 2px 5px var(--c-main-2);
}


.content-contact-panel{
  /* background-color: #faf; */
  width: 90%;
  margin: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-bottom: 4rem;
}

.content-contact-CF{
  /* background-color: #daf; */
  width: 100%;
  padding-top: 2rem;
}

.content-contact-CF h1{
  font-size: 3rem;
}

.content-contact-CF p{
  font-size: 1.2rem;
  font-style: italic;
}

.content-contact-CF-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding-top: 2rem;
}

.content-contact-CF-form label {
  font-weight: bold;
}

.content-contact-CF-form input,
.content-contact-CF-form textarea {
  max-width: 100%;
  background-color: var(--c-background-2);
  padding: 0.8rem;
  border: none;
  border-bottom: 4px solid var(--c-main-2);
  background: transparent;
  padding: 0.5rem 0;
  font-size: 1rem;
  color: var(--c-text-white);
  outline: none;
  transition: border-color 0.3s;
  resize: none;
}

.content-contact-CF-form button {
  background-color: var(--c-main-2);
  font-size: 2rem;
  font-weight: bold;
  color: var(--c-text-black);
  border-style: none;
  cursor: pointer;
  transition: all 0.3s ease;
  max-width: 100%;
}

.content-contact-CF-form button:hover{
  background-color: var(--c-main-1);
  border-radius: 6px;
}

.content-contact-CF-form button:active{
  transform: scale(0.96);
  box-shadow: 0 2px 5px var(--c-main-2);
}

.content-contact-OC{
  /* background-color: #daf; */
  width: 90%;
  align-content: start;
  justify-items: start;
  margin: auto;
}

.content-contact-OC h2{
  /* background-color: #aaf; */
  width: 70%;
}

.content-contact-svg-bar{
  /* background-color: #faf; */
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.content-contact-mail-box{
  /* background-color: #faf; */
  width: 70%;
}

.content-contact-mail{
  /* background-color: #aaf; */
  color: var(--c-text-white);
  transition: all 0.3s ease;
  line-height: 2rem;
  font-size: 1.2rem;
}

.content-contact-mail:hover{
  /* background-color: #aaf; */
  color: var(--c-main-2);
}

.content-product-title{
  padding-top: 3rem;
}

.content-product-grid{
  /* background-color: #faf; */
  display: flex;
  justify-content: space-around;
  padding: 2rem;
  flex-wrap: wrap;
}

.content-product-card-box{
  /* background-color: #faf; */
  width: 18rem;
  text-align: center;
  margin: 1rem 0.5rem 2rem 1vw;
}

.content-product-card-box h2{
  font-size: 2rem;
  width: 100%;
  text-align: start;
  margin-top: 0.6rem;
}

.content-product-card {
  position: relative;
  width: 19rem;
  height: 18rem;
  overflow: hidden;
  border-radius: 0px;
  /* background: var(--c-background-2); */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  display: flex;
}

.content-product-card-box:hover .content-product-card{
  width: 29rem;
  border-radius: 0 10px 10px 0;
}

.content-product-card-box:hover img{
  transform: scale(1.02);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.content-product-card img {
  width: 50%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.content-product-card-info-panel {
  width: 5rem;
  height: 88%;
  /* background: var(--c-background-1); */
  display: flex;
  flex-direction: column;
}

.content-product-card-info-panel a{
  width: 5rem;
  height: 5rem;
  border-radius: 0 10px 10px 0;
  background: var(--c-main-2);
  display: flex;
  flex-direction: column;
  border-style: none;
  text-align: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.content-product-card-info-panel a i{
  font-size: 3.5rem;
}

.content-product-card-info-panel a i:hover{
  color: var(--c-text-black); 
}

.product-cart-coming-soon{
  filter: grayscale(0%);
}

.product-cart-coming-soon .content-product-card{
  filter: grayscale(100%);
}

.product-cart-card-coming-soon{
  display: none;
  transition: all 0.3s ease;
}

.product-cart-coming-soon:hover .product-cart-card-coming-soon{
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  width: 82%;
  height: 80%;
  backdrop-filter: blur(2px);
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-cart-card-coming-soon p{
  color: var(--c-main-2);
  font-size: 3em;
  font-weight: bold;
  cursor: default;
}

/* FOOTER */

footer{
  color: var(--c-main-2);
  font-size: 0.8rem;
  letter-spacing: 0.1rem;
  text-align: center;
}


}