@font-face {
  font-family: "Gotham Light";
  src: url("../fonts/Gotham-Light.otf") format("opentype");
}
@font-face {
  font-family: "Gotham Light";
  font-style: italic;
  src: url("../fonts/Gotham-LightItalic.otf") format("opentype");
}
@font-face {
  font-family: "Gotham Medium";
  src: url("../fonts/Gotham-Medium.otf") format("opentype");
}
@font-face {
  font-family: "Gotham Medium";
  font-style: italic;
  src: url("../fonts/Gotham-MediumItalic.otf") format("opentype");
}
@font-face {
  font-family: "Gotham Bold";
  src: url("../fonts/Gotham-Bold.otf") format("opentype");
}
@font-face {
  font-family: "Gotham Bold";
  font-style: italic;
  src: url("../fonts/Gotham-BlackItalic.otf") format("opentype");
}
@font-face {
  font-family: "Gotham Black";
  src: url("../fonts/Gotham-Black.otf") format("opentype");
}
@font-face {
  font-family: "Gotham Black";
  font-style: italic;
  src: url("../fonts/Gotham-BlackItalic.otf") format("opentype");
}

:root {
  --primary: #fd0;
  --black: #1f1f1f;
  --black-bg: #323232;
  --grey: #f1f1f1;
  --white: #fff;
  --max-content-width: calc(100% - 240px);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Gotham Light", sans-serif;
}

body {
  background: var(--grey);
  max-width: 1920px;
  margin: 0 auto;
}

h3 {
  font-family: "Gotham Black", sans-serif;
  font-size: 40px;
  line-height: 44px;
  padding-bottom: 32px;
}

.font-light { font-family: "Gotham Light", sans-serif; }
.font-medium { font-family: "Gotham Medium", sans-serif; }
.font-bold { font-family: "Gotham Bold", sans-serif; }
.font-black { font-family: "Gotham Black", sans-serif; }

.text-center { text-align: center; }
.text-right { text-align: right; }
.text-justify { text-align: justify; }

.width-control {
  width: 100%;
  margin: 0 auto;
  max-width: 1450px;
}

.bg-black {
  background-color: var(--black-bg);
}

/* Button Styles */
button.btn {
  text-decoration: none;
  font-size: 16px;
  line-height: 54px;
  height: 56px;
  white-space: nowrap;
  cursor: pointer;
  padding: 0 14px 0 16px;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
}
button.btn span {
  font-family: "Gotham Medium", sans-serif;
}
button.btn.fill {
  border: 0;
  color: var(--black);
  background-color: var(--primary);
}
button.btn.outline {
  border: 1px solid var(--black);
  color: var(--black);
  background-color: transparent;
}
button.btn:hover {
  background-color: var(--white);
  color: var(--black);
  border-color: var(--white);
}
button.btn.btn-sm {
  font-size: 16px;
  padding: 0 12px;
  line-height: 40px;
  height: 42px;
  transition: all 0.3s ease-in-out;
}
button.btn.btn-sm:hover {
  background-color: var(--black);
  color: var(--white);
}

/* Hero Section */
section#hero {
  background: url("visual-tlp2025-promo-w2025-2870x990px-light.webp") no-repeat center center/cover;
  padding: 50px 50px;
  color: black;
}
section#hero .hero-header {
  padding-bottom: 20px;
  margin-bottom: 50px;
  display: flex;
  justify-content: space-between;
}
section#hero .hero-header img:first-child,
section#hero .hero-header img:last-child {
  max-height: 45px;
  object-fit: contain;
  width: auto;
}
section#hero .hero-content {
  width: calc(var(--max-content-width) - 360px);
}
section#hero .hero-content h1 {
  font-weight: 900;
  font-size: 72px;
  line-height: 72px;
}
section#hero .hero-content .hero-buttons {
  margin-top: 30px;
}

/* Discover Section */
section#discover {
  padding: 50px 0 300px 0;
  color: white;
  text-align: center;
}
section#discover .discover-inner {
  width: 900px;
  max-width: 100%;
  margin: 0 auto;
}
section#discover .discover-inner h2 {
  font-size: 36px;
  line-height: 40px;
  margin-bottom: 30px;
}
section#discover .discover-inner p {
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 30px;
}
section#discover .discover-inner .logos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 70px;
}
section#discover .discover-inner .logos img {
  width: 165px;
  object-fit: contain;
}
section#discover .cards-section {
  padding-top: 80px;
}
section#discover .cards-section h2 {
  font-size: 40px;
  padding-bottom: 30px;
}
section#discover .cards-section .cards-col {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: stretch;
}
section#discover .cards-section .cards-col .single-card {
  padding: 40px 25px;
  border-radius: 4px;
  background-color: var(--black);
  display: flex;
  gap: 30px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
section#discover .cards-section .cards-col .single-card h3 {
  font-size: 24px;
}

/* --- Quarantee Styles --- */

#guarantee {
  background-color: var(--black);
  color: var(--white);
}

.guarantee-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 50px;
}

.guarantee-content,
.guarantee-logo {
  padding: 50px;
}

.guarantee-content a {
  color: var(--white);
  text-decoration: none;
}

.guarantee-content h2 {
  font-size: 32px;
  line-height: 42px;
  margin-bottom: 25px;
}

.guarantee-content p {
  font-size: 18px;
  line-height: 30px;
}

.guarantee-logo {
  width: 100%;
}

.guarantee-logo img {
  display: block;
  max-width: 400px;
  margin: 0 auto;
}

/* --- Banner Holder Styles --- */

section#banner-holder {
  margin: -200px 50px 0 50px;
  z-index: 1;
}

section#banner-holder .banner {
  background-color: white;
  display: flex;
  justify-content: end;
  align-items: stretch;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

section#banner-holder .banner .banner-image {
  width: 50%;
  height: 400px;
}

section#banner-holder .banner .banner-image img {
  max-width: 100%;
  width: 100%;
  height: 400px;
  object-fit: cover;
}

section#banner-holder .banner .banner-content {
  width: 50%;
  padding: 50px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  background-color: white;
}

section#banner-holder .banner .banner-content h2 {
  font-size: 36px;
}

section#banner-holder .banner .banner-content .banner-buttons {
  display: flex;
  gap: 10px;
}

section#banner-holder .banner .banner-content .banner-buttons button {
  font-size: 14px;
}

section#banner-holder .banner .banner-content .banner-buttons span {
  font-family: "Gotham Medium", sans-serif;
}

/* --- Link Styles --- */
a {
  font-weight: bold;
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: #ccc;
}
a:visited {
  color: #999;
  text-decoration: underline;
}

/* --- Footer --- */

footer {
  background-color: var(--black-bg);
  color: var(--white);
  padding: 30px 100px;
  text-align: center;
}

footer a {
  color: var(--white);
  text-decoration: none;
}

footer .footer-logo {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: solid 1px rgba(255, 255, 255, 0.2);
}

footer .footer-content .footer-links nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
  flex-wrap: wrap;
  list-style: none;
}

footer .footer-content .footer-links nav ul li a {
  font-size: 10px;
  line-height: 24px;
  opacity: 0.7;
}

/* ---------- MEDIA QUERY: max-width 1200px ---------- */
@media screen and (max-width: 1200px) {
  section#hero .hero-content {
    width: calc(var(--max-content-width) - 10%);
  }
}

/* ---------- MEDIA QUERY: max-width 992px ---------- */
@media screen and (max-width: 992px) {
  section#hero .hero-content h1 {
    font-size: 40px;
    line-height: 48px;
  }

  h3 {
    font-size: 24px;
    line-height: 26px;
  }

  section#banner-holder .banner {
    display: block;
  }

  section#banner-holder .banner .banner-image,
  section#banner-holder .banner .banner-content {
    width: 100%;
  }

  .guarantee-content {
    padding-left: 0;
    padding-right: 0;
  }
}

/* ---------- MEDIA QUERY: min-width 993px ---------- */
@media screen and (min-width: 993px) {
  section#banner-holder .banner .banner-image {
    height: 100%;
    position: absolute;
    left: 0;
  }

  section#banner-holder .banner .banner-image img {
    height: 100%;
  }
}

/* ---------- MEDIA QUERY: max-width 768px ---------- */
@media screen and (max-width: 768px) {
  .width-control {
    width: 90%;
  }

  button.btn {
    height: 48px;
    line-height: 48px;
    font-size: 15px;
  }

  button.btn.btn-sm {
    height: 36px;
    line-height: 36px;
    font-size: 14px;
  }

  section#hero .hero-header {
    text-align: center;
    margin-bottom: 30px;
  }

  section#hero .hero-content {
    width: 100%;
    text-align: center;
  }

  section#hero .hero-content h1 {
    font-size: 48px;
    line-height: 48px;
  }

  section#hero .hero-content .hero-buttons button.btn.outline {
    margin-top: 10px;
  }

  section#discover {
    padding: 50px 0 150px 0;
  }

  section#discover .discover-inner {
    width: 100%;
  }

  section#discover .discover-inner h2 {
    font-size: 24px;
    line-height: 30px;
  }

  section#discover .discover-inner p {
    font-size: 16px;
    line-height: 24px;
  }

  section#discover .discover-inner .logos {
    margin-top: 50px;
  }

  section#discover .discover-inner .logos img {
    width: 28%;
  }

  section#discover .cards-section {
    padding-top: 50px;
  }

  section#discover .cards-section h2 {
    font-size: 24px;
    line-height: 30px;
  }

  section#discover .cards-section .cards-col {
    flex-direction: column;
    gap: 20px;
  }

  section#discover .cards-section .cards-col .single-card {
    gap: 15px;
  }

  section#banner-holder {
    margin: -100px 0 0 0;
  }

  section#banner-holder .banner {
    flex-direction: column;
  }

  section#banner-holder .banner .banner-image {
    height: 300px;
  }

  section#banner-holder .banner .banner-image img {
    height: 300px;
  }

  section#banner-holder .banner .banner-content {
    padding: 30px;
    gap: 20px;
  }

  section#banner-holder .banner .banner-content h2 {
    font-size: 30px;
  }

  section#banner-holder .banner .banner-content .banner-buttons {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }

  footer {
    padding: 30px 20px;
    text-align: left;
  }

  footer .footer-content .footer-links nav ul {
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  footer .footer-content .footer-links nav ul li a {
    opacity: 1;
  }
}