/* ===========================
   OneOff - Limited Cars
   Design tokens
   =========================== */
:root {
  --color-black: #000000;
  --color-white: #ffffff;
  --color-gold: #8a7444;
  --color-muted: #969696;
  --color-border: #666666;
  --font-sora: 'Sora', sans-serif;
}

/* ===========================
   Base
   =========================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  background-color: var(--color-black);
  color: var(--color-white);
  font-family: var(--font-sora);
  font-weight: 300;
  overflow-x: hidden;
}

/* ===========================
   Header
   =========================== */
header {
  /* background-color: var(--color-black); */
  padding: 1.75rem 0 1rem;

  position: relative;
  z-index: 1;
}

.logo {
  width: 224px;
  height: auto;
  display: block;
  margin: 6rem auto 7rem;
}

/* ===========================
   Hero
   =========================== */
/* .hero-section {
  background-color: var(--color-black);
} */

.hero-tagline {
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 1.2px;
  line-height: 40px;
  color: var(--color-white);
  max-width: 1070px;
  margin: 0 auto;
  padding: 1.5rem 1rem 2rem;

  position: relative;
  z-index: 1;
}

.hero-image-wrapper {
  width: 100%;
  overflow: hidden;

  /* width: 108.75rem;
height: 56.25rem; */
  /* background: url(images/Ferrari.jpeg) lightgray;

background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center; */
  margin-top: -20rem;
  position: relative;
  z-index: 0;
}

.hero-image {
  width: 120%;
  max-width: none;
  display: block;
  margin-left: -5.28%;
}

/* ===========================
   About
   =========================== */
.about-section {
  /* background-color: var(--color-black); */
  padding: 5rem 0;

  margin-top: -25rem;
  position: relative;
  z-index: 1;
}

.about-title {
  font-size: 2.3rem;
  font-weight: 200;
  letter-spacing: 1.5px;
  line-height: 3.2rem;
  color: var(--color-white);
}

.about-body {
  font-size: 1.1rem;
  font-weight: 200;
  line-height: 2.6rem;
  color: var(--color-white);
  margin-bottom: 2rem;
}

.btn-cta {
  /* border: 1px solid var(--color-gold); */
  background-color: var(--color-gold);
  color: var(--color-white);
  font-family: var(--font-sora);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 28px;
  transition: background-color 0.25s, color 0.25s;

  /* width: 14.125rem; */
  /* height: 2.5rem; */
  /* aspect-ratio: 113/20; */

  /* Zorgt voor schuine zijranden */
  clip-path: polygon(10px 0,
      /* linksboven */
      100% 0,
      /* rechtsboven */
      calc(100% - 10px) 100%,
      /* rechtsonder iets naar links */
      0 100%
      /* linksonder */
    );
}

.btn-cta:hover {
  background-color: var(--color-gold);
  color: var(--color-white);
}

/* ===========================
   Services intro
   =========================== */
.services-intro {
  background-color: var(--color-black);
  padding: 5rem 0;
}

.services-tagline {
  font-size: 2.3rem;
  font-weight: 200;
  letter-spacing: 1.5px;
  line-height: 3.2rem;
  color: var(--color-gold);
  margin: 0;
}

/* ===========================
   Services grid
   =========================== */
.services-grid {
  background-color: var(--color-black);
  padding: 0 0 5rem;
}

.service-card {
  /* border: 1px solid var(--color-border); */
  background-color: var(--color-black);
  padding: 5.5rem 4.5rem;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  /* justify-content: flex-end; */
  border-bottom: none;
}

.gradient-border {
  position: relative;
  /* padding: 20px; */
  /* background-color: #222; */
  color: var(--color-border);
}

/* Bovenrand */
.gradient-border::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--color-border);
}

/* Linker- en rechterrand */
.gradient-border::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background:
    linear-gradient(to bottom, var(--color-border), var(--color-black)) left top / 1px 100% no-repeat,
    linear-gradient(to bottom, var(--color-border), var(--color-black)) right top / 1px 100% no-repeat;
}

.service-title {
  font-size: 2.3rem;
  font-weight: 400;
  line-height: 2.3rem;
  color: var(--color-gold);
  margin-bottom: 1.25rem;
}

.service-body {
  font-size: 16px;
  font-weight: 200;
  line-height: 30px;
  color: var(--color-white);
  margin: 0;
}

/* ===========================
   Coming soon
   =========================== */
.coming-soon-section {
  background-color: var(--color-black);
  padding: 5rem 0;
}

.coming-soon-text {
  font-family: var(--font-sora);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin: 0;
}

.coming-soon-slash {
  font-weight: 600;
  font-size: 20px;
  opacity: 0.9;
}

/* ===========================
   Footer
   =========================== */
.site-footer {
  background-color: var(--color-black);
  padding: 1.5rem 0;
}

.footer-text {
  font-size: 16px;
  font-weight: 300;
  line-height: 30px;
  color: var(--color-muted);
}

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

/* ===========================
   Responsive
   =========================== */

@media (min-width: 1800px) {
  .hero-image-wrapper {
    margin-top: -35rem;
  }
}

@media (min-width: 1400px) {
  .hero-image-wrapper {
    margin-top: -25rem;
  }
}

@media (max-width: 1199px) {
  .hero-image-wrapper {
    margin-top: -15rem;
  }
   .about-section {
    margin-top: -15rem;
  }
}

@media (max-width: 991px) {
  .services-tagline {
    font-size: 1.8rem;
    line-height: 2.7rem;
  }

  .hero-image-wrapper {
    margin-top: -15rem;
  }

  .about-section {
    margin-top: -20rem;
  }
}

@media (max-width: 768px) {
  .hero-tagline {
    font-size: 18px;
    letter-spacing: 0.8px;
    line-height: 32px;
  }

  .hero-image-wrapper {
    margin-top: -12rem;
  }

  .about-section {
    margin-top: -15rem;
  }

  .about-title {
    font-size: 1.8rem;
    line-height: 2.7rem;
  }

  .services-tagline {
    font-size: 1.8rem;
    line-height: 2.7rem;
  }

  .service-card {
    min-height: 280px;
    padding: 2rem 1.5rem;
  }

  .service-title {
    font-size: 22px;
  }

  .site-footer .col-4 {
    text-align: center !important;
  }

  .site-footer .row {
    flex-direction: column;
    gap: 0.25rem;
    text-align: center;
  }
}

@media (max-width: 576px) {
  body {
    padding: 0 30px;
  }

  .logo {
    width: 160px;
    margin: 2rem auto 1.5rem auto;
  }

  .hero-image-wrapper {
    margin-top: -6rem;
    margin-left: -60px;
    margin-right: -30px;
    width: 140%;
  }

  .hero-tagline {
    font-size: 1.3rem;
    line-height: 1.8rem;
  }

  .about-section {
    padding: 3rem 0;
    margin-top: -10rem;
    /* margin-bottom: -10rem; */
  }

  .about-title {
    font-size: 1.5rem;
    line-height: 2.2rem;
    margin-top: 90px;
  }

  .about-body {

    line-height: 2.0rem;

  }

  .services-intro {
    padding: 3rem 0;
  }

  .services-tagline {
    font-size: 1.5rem;
    line-height: 2.2rem;
  }

  .services-grid {
    padding-bottom: 3rem;
  }

  .service-card {
    min-height: 240px;
  }
}