@font-face {
  font-family: 'FoundersGrotesk';
  src: url('fonts/FoundersGrotesk-Regular.woff') format('woff');
  font-weight: normal;
}

@font-face {
  font-family: 'FoundersGroteskMedium';
  src: url('fonts/FoundersGrotesk-Medium.woff') format('woff');
  font-weight: 500;
}

@font-face {
  font-family: 'PoppinsBoldItalic';
  src: url('fonts/Poppins-BoldItalic.woff') format('woff');
  font-weight: bold;
  font-style: italic;
}

@font-face {
  font-family: 'PoppinsBold';
  src: url('fonts/Poppins-Bold.woff') format('woff');
  font-weight: bold;
  font-style: bold;
}

:root {
  --green: #b5d067;
  --blue-dark: #36454f;
  --white: #ffffff;
  --light: #c4c4c4;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  font-family: 'FoundersGrotesk', sans-serif;
  background-color: var(--blue-dark);
}

.container {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.background {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 90px;
  padding: 10px;
  overflow: hidden;
  filter: blur(2px);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2vw 5vw 3vw;
}

.title {
  font-size: 68px;
  color: #c2e2f3;
  text-align: center;
  margin-top: 85px;
  font-weight: 100;
  letter-spacing: -1px;
}

.title br {
  display: none;
}

.content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
}

.left-block {
  max-width: 40%;
}
.label {
  font-family: 'PoppinsBold';
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: 3px;
  margin-bottom: 1vw;
}

.highlight {
  color: var(--green);
  font-family: 'PoppinsBold';
  font-style: italic;
}

.desc {
  font-size: 20px;
  line-height: 1.1;
  margin-bottom: 5vw;
}

.contact-label br {
  display: none;
}

.contact-label {
  font-size: 18px;
  margin-bottom: 0.3vw;
}

a.email {
  font-size: 55px;
  font-family: 'FoundersGrotesk';
  color: #fff;
  text-decoration: none;
  transition: all 0.3 ease-in-out;
}
a.email:hover {
  text-decoration: underline;
  color: #b5d067;
}

/* LOGO desktop */
.desktop {
  height: 4vw;
  margin-bottom: 20px;
  align-self: flex-end;
}
.mobile{
display: none;
}

 .mobile-footer .label {
  display: none;
}

/* 📱 Responsive Mobile */
@media (max-width: 768px) {
    .background{
        object-position: 70% 40%;
    }
  .title {
    font-size: 35px;
    margin-top: 20vw;
    line-height: 0.8;
  }

  .title br {
    display: inline-block;
  }

  .content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    gap: 2vw;
  }

  .left-block {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3vw;
    padding-bottom: 15vw;
  }

  /* Logo*/
 
  .mobile{
    display: block;
    height: 7vw;
    align-self: flex-start;
    margin-bottom: 4px;
}
 .desktop{
    display: none;
}
  .desc {
    font-size: 15px;
    font-weight: bolder;
    margin-bottom: 15vw;
    max-width: 90%;
  }

  .contact-label {
    font-size: 12px;
    text-align: right;
    line-height: 1;
    align-self: flex-end;
    margin-bottom: 0px;
  }

  .contact-label br {
    display: inline-block;
  }
  .label.desktop-label{
    display: none;
  }

  /* ENERGY label in footer (mobile) */
  .mobile-footer {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: flex-end;
    margin-top: auto;
  }

  .mobile-footer .label {
    font-size: 9px;
    line-height: 1.2;
    letter-spacing: 2px;
    font-family: 'PoppinsBold';
    color: var(--white);
    align-self: flex-start;
    display: block;
  }

  .mobile-footer .email {
    font-size: 25px;
    text-align: right;
    font-family: 'FoundersGrotesk';
    align-self: flex-end;
    line-height: 0.8;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* iPad (portrait e landscape) */
  .title {
    font-size: 50px;
    margin-top: 150px;
  }

  .desc {
    font-size: 19px;
    margin-bottom: 15vw;
  }

  a.email {
    font-size: 40px;
  }

  .contact-label {
    font-size: 16px;
  }

  .desktop {
    height: 6vw;
  }

  .left-block {
    max-width: 50%;
  }
}
