@font-face {
    font-family: 'Joane Light';
    font-display: swap;
    src: url('../fonts/Joane-Light.ttf');
 }
 html, body {
  margin: 0;
  padding: 0;
    height: auto; 
  min-height: 100vh; 
 }


body { 
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    background: #d4d8d9;
    background: linear-gradient(155deg, rgba(186,190,191,1) 0%, rgba(218,222,223,1) 100%);
    
    min-height: 100vh;    
    color: #004210;
    font-size: 12px;
    
}

.site-wrapper {
    background-image: url(../img/battery.avif);
    background-repeat: no-repeat;
    background-position: center;
    min-height: 100vh;
    max-width: 1900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

h1.under-construction {
    font-family: 'Joane Light', sans-serif;
    font-size: 71px !important;
    text-align: center;
    
}




.contacts {
  display: flex;
  flex-wrap: wrap; /* Allows items to stack */
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding: 40px;
  max-width: 1900px;
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
}

.contacts h2 {
  margin-bottom: 10px;
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 600;
}




.contacts, .adress p {
  font-size: clamp(1.1rem, 2vw, 1.6rem);
}

/* Two-column layout inside the persons section */
.persons-columns {
  display: flex;
  gap: 20px;
  flex-wrap: wrap; /* Allows items to wrap into rows */
}

.persons-columns p {
  flex: 1;
  min-width: 250px; /* Prevents elements from shrinking too much */
}

.persons h2, .adress h2 {
  margin-bottom: 40px;
}

.persons-columns {
  display: flex;
  gap: 20px;
}

.persons-columns p {
  flex: 1;
  margin: 0;
}

.persons p strong {
  display: inline-block;
  margin-bottom: 4px;
}

.header {
    height: 200px;
    display: flex;
    gap: 60px;
      justify-content: space-between;
  align-items: center;
  padding: 20px; /* optional spacing */
}

  .logo {
    width: 360px;
  }
  .symbol {
    width: 100px;
  }
  

span.text-light {
    color: #fff;
}

.gdpr {
  position: fixed; /* Sticks to the viewport */
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 120px;
  height: 90px;
  background-color: #004210;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

@media (max-width: 1080px)
{
html {
  background: linear-gradient(155deg, rgba(186,190,191,1) 0%, rgba(218,222,223,1) 100%);
}
body {
  background: url("../img/battery-mobile-sm.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center 90px; 
}
  .site-wrapper {
    background-image: none;
  }
    h1.under-construction {
    font-size: 2.9rem !important;
    margin-top: 4rem;
    display: block;
    margin-bottom: 8rem;
    margin-inline: auto;
    color: #fff;
    }

    .contacts {
    padding-bottom: 8rem;
  }

}

@media (max-width: 768px) 
{

  body {
    background-image: url("../img/battery-mobile-tr.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: initial; /* Resets to default */
    
  }
  .site-wrapper {
    background-image: none;
  }
  h1.under-construction {
    font-size: 41px !important;
    margin-top: 24rem;
    display: inline-block;
    margin-bottom: 8rem;
    color: #004210;
    }

  .header {
    height: 60px;
    gap: 3rem;
    margin-top: 3rem;
  }
  .logo {
    width: 260px;
  }
  .symbol {
    width: 60px;
  }
    .persons-columns {
    flex-direction: column; /* Forces columns into rows */
  }
  .contacts {
    padding-bottom: 8rem;
  }
  span.text-light {
    color: #004210;
}
}

