/* ─── Fonts ───
   font-family: "fatfrank", sans-serif; font-weight: 400; font-style: normal;
   font-family: "foco", sans-serif;     font-weight: 900; font-style: normal;
   <link rel="stylesheet" href="https://use.typekit.net/trs7oei.css">
─────────────── */

/* ─── CSS Variables ─── */
:root {
  --red: #a02136;
  --blue: #00a8e1;
  --black: #000000;
  --yellow: #ffef31;
  --foco: "foco", sans-serif;
  --dw-fair: 'DWFairfieldRegular',Helvetica,Arial,sans-serif;

  --frame-radius: 56px;
  --frame-padding-x: 1.2rem;
  --frame-top-overflow: 50px;
  --frame-top-img-offset: -220px;
  --frame-top-padding: 240px;
  --frame-bottom-img-h: 100px;
  --frame-bottom-img-out: 100px;
  --frame-bottom-padding: 0px;
}

/* ─── Base ─── */
body {
  font-family: var(--dw-fair), sans-serif;
  font-weight: 400;
  font-size: 18px;
  font-style: normal;
  color: var(--black);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  overflow-x: hidden;
  background: linear-gradient(to right,
      #9E1D32 0%,
      #9E1D32 calc(50% - 3px),
      #000 calc(50% - 3px),
      #000 calc(50% + 3px),
      #00A8E1 calc(50% + 3px),
      #00A8E1 100%);
}

.page-wrapper {
  max-width: 1599px;
  margin: 0 auto;
}

/* ─── Utility colours ─── */
.red {
  color: var(--red);
}

.blue {
  color: var(--blue);
}

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

.yellow {
  color: var(--yellow);
}

.foco {
  font-family: var(--foco);
}

.regularText{
 font-family: var(--dw-fair);
}



.main-title,
.lg-title,
.xl-title,.md-title {
  font-family: var(--dw-fair);
  font-weight: 400;
  text-transform: uppercase;
}

.short-terms,
.body-text {
  font-family: var(--dw-fair);
  font-weight: 400;
  text-transform: uppercase;
}


/* ─── Typography ─── */

.short-terms {
  font-size: 13px;
  line-height: 18px;
}

.main-title {
  font-size: 30px;
  line-height: 28px;
  color: var(--red);
}

.lg-title {
  font-size: 36px;
  line-height: 34px;
}

.md-title {
  font-size: 26px;
  line-height: 23px;
}

.xl-title {
  font-size: 83px;
  line-height: 63px;
}

.body-text {
  font-size: 22px;
  line-height: 26px;
}

.body-text.body-text-legal {
  font-size: 20px;
  line-height: 25px;
}

.form-text {
  font-size: 20px;
  text-transform: uppercase;
}

.short-text {
  font-size: 12px;
  line-height: 16px;
  color: white;
}

/* ─── Footer ─── */
.footer-row {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-col {
  max-width: 600px;
  margin: 0 auto;
}

.footer-link {
  font-size: 18px;
  line-height: normal;
  color: white;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
  color: white;
}

.social-icon {
  width: auto;
  height: 30px;
}

.footer-logo {
  max-width: 100px;
  height: auto;
}

/* ─── Stroked Titles ─── */
.titleYellow-str,
.titleYellow-str-xl {
  color: var(--yellow);
  font-size: 29px;
  line-height: 30px;
  text-transform: uppercase;
  -webkit-text-stroke: 6px #000;
  paint-order: stroke fill;
  /* text-shadow:
    0 0 6px #000, 0 0 10px #000,
    3px 3px 0 #000, -3px -3px 0 #000,
    3px -3px 0 #000, -3px 3px 0 #000; */
}

.titleYellow-str-xl{
  font-size: 79px;
  line-height: 79px;
  -webkit-text-stroke: 7px #000;
  paint-order: stroke fill;
  /* text-shadow: 0 0 6px #000, 0 0 10px #000, 3px 3px 0 #000, -3px -3px 0 #000, 3px -3px 0 #000, -3px 3px 0 #000; */
}

.titleBlue-str,
.titleBlue-str-md {
  color: var(--blue);
  font-size: 50px;
  line-height: 51px;
  text-transform: uppercase;
  font-weight: 900;

  -webkit-text-stroke: 0;
  paint-order: normal;
  -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;

  text-shadow:
    2px 0 0 #000,
    -2px 0 0 #000,
    0 2px 0 #000,
    0 -2px 0 #000,

    2px 1px 0 #000,
    -2px 1px 0 #000,
    2px -1px 0 #000,
    -2px -1px 0 #000,

    1px 2px 0 #000,
    -1px 2px 0 #000,
    1px -2px 0 #000,
    -1px -2px 0 #000,

    2px 2px 0 #000,
    -2px 2px 0 #000,
    2px -2px 0 #000,
    -2px -2px 0 #000;
}

.titleBlue-str-md{
  font-size: 45px;
  line-height: 50px;
}
/* ─── Logo ─── */
.logo {
  width: 304px;
  max-width: 100%;
  height: auto;
}

/* ─── Buttons ─── */
.btn.btn-primary {
  height: 96px;
  border-radius: 10px;
  background: var(--blue);
  font-size: 31px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  transition: all 0.2s ease;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.btn.btn-primary:hover,
.btn.btn-primary:focus,
.btn.btn-primary:active,
.btn.btn-primary:focus-visible,
.btn.btn-primary:first-child:active,
:not(.btn-check)+.btn.btn-primary:active {
  background: color-mix(in srgb, var(--blue) 85%, #000);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  color: #fff;
}

.btn.btn-secondary,
.btn.btn-secondary:active,
.btn.btn-secondary:focus:active,
.btn.btn-secondary:first-child:active,
.btn.btn-secondary:focus,
.btn.btn-secondary:focus-visible {
  background: var(--blue);
  color: #ffffff;
  border: none;
  transition: all 0.2s ease;
}

.btn.btn-secondary:hover {
  background: var(--red);
  color: #ffffff;
}


.yellowFrame,
.yellowFrame2 {
  display: inline-block;
  transform: rotate(-2deg);
  background: #FFF02D;
  border: 4px solid #050505;
  padding: 0.4rem 3.5rem;
  border-radius: 25px;
}

.yellowFrame2 {

  position: relative;
  top: -60px;
  margin-bottom: -36px;

}

.yellowContent {
  display: inline-block;
  text-transform: uppercase;
  /* counter rotate */
  transform: rotate(2deg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-top: 8px;
}

.yellow-btn-wrapper {
  display: inline-block;
  transform: rotate(-2.004deg);
  
}


.yellow-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 2rem;
  border-radius: 18px;
  border: 4px solid #050505;
  background: #FFF02D;
  color: #000;
  font-size: 26px;
  font-weight: 400;
  text-transform: uppercase;
  cursor: pointer;
  transition: box-shadow 0.15s ease;
  height: 63px;
  text-decoration: none;
}

.yellow-btn:active,
.yellow-btn:focus:active,
.yellow-btn:first-child:active,
.yellow-btn:focus,
.yellow-btn:focus-visible,
.yellow-btn:hover {
  box-shadow: 2px 2px 0 #000;
  transform: translate(2px, 2px);
  color: #000;
}

/* ═══════════════════════
   WHITE FRAME — variant 1
   (με top overflow image)
   ═══════════════════════ */
.whiteFrame-wrapper {
  padding-top: var(--frame-top-overflow);
  padding-bottom: var(--frame-bottom-img-out);
  margin: 0 1rem;
  max-width: 680px;
}

@media (min-width: 480px) {
  .whiteFrame-wrapper {
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.whiteFrame {
  position: relative;
  background: #fff;
  border-radius: var(--frame-radius);
  box-shadow: 8px 8px 0 0 #006C90;
  padding:
    var(--frame-top-padding) var(--frame-padding-x) calc(var(--frame-bottom-img-h) + var(--frame-bottom-padding));
}

/* ═══════════════════════
   WHITE FRAME — variant 2
   (without overflow image, same bottom)
   ═══════════════════════ */
.whiteFrame-wrapper2 {
  padding-bottom: var(--frame-bottom-img-out);
  margin: 0 1rem;
  max-width: 680px;
  margin-top: 20px;
}

@media (min-width: 480px) {
  .whiteFrame-wrapper2 {
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.whiteFrame2 {
  position: relative;
  background: #fff;
  border-radius: var(--frame-radius);
  box-shadow: 8px 8px 0 0 #006C90;
  /* padding-top κανονικό, χωρίς χώρο για top image */
  padding:
    2rem var(--frame-padding-x) 
    calc(var(--frame-bottom-img-h) + var(--frame-bottom-padding));
}

.whiteFrame3 {
  position: relative;
  background: #fff;
  border-radius: var(--frame-radius);
  box-shadow: 8px 8px 0 0 #006C90;
  padding: 20px;

}

.whiteFrame-wrapper3 {
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 80px;

}
/* ─── Shared overflow image rules ─── */
.whiteFrame_top,
.whiteFrame_bottom {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  z-index: 2;
}

.whiteFrame_top {
  bottom: 100%;
  margin-bottom: var(--frame-top-img-offset);
}

.whiteFrame_bottom {
  top: 100%;
  margin-top: calc(var(--frame-bottom-img-h) * -1);
  left: 50%;
  transform: translateX(-50%);
  width: 115%;
}

.frameTopImg {
  width: 230px;
}

.frameBottomImg {
  width: 100%;
  max-width: 470px;
}

/* ─── Background ─── */
.bg-wrapper {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to right,
      #9E1D32 0%,
      #9E1D32 calc(50% - 3px),
      #000 calc(50% - 3px),
      #000 calc(50% + 3px),
      #00A8E1 calc(50% + 3px),
      #00A8E1 100%);
  max-width: 1600px;
  margin: 0 auto;
}

.bg-left,
.bg-right {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  background-repeat: no-repeat;
}

.bg-left {
  left: 0;
  background-image: url('https://umb-4553t5.s3.eu-west-1.amazonaws.com/8677/media/bg-left-mob.webp');
  background-position: -61px 111px;
  background-size: auto 84%;
}

.bg-right {
  right: 0;
  background-image: url('https://umb-4553t5.s3.eu-west-1.amazonaws.com/8677/media/bg-right-mob.webp');
  background-position: 2px -10px;
  background-size: auto 100%;
}

header,
main,
footer {
  position: relative;
  z-index: 1;
}

/* ═══════════════════════════
   DESKTOP — min-width: 768px
   ═══════════════════════════ */
@media (min-width: 768px) {
  :root {
    --frame-padding-x: 3rem;
    --frame-top-overflow: 70px;
    --frame-top-img-offset: -321px;
    --frame-top-padding: 342px;
    --frame-bottom-img-h: 173px;
    --frame-bottom-img-out: 220px;
    --frame-bottom-padding: 20px;
    --frame-radius: 132px;
  }

  .whiteFrame-wrapper,
  .whiteFrame-wrapper2 {
    padding-left: 0;
    padding-right: 0;
    margin: 0 auto;
  }
    .whiteFrame-wrapper2 {
      margin-top: 40px;
    }

  .whiteFrame2 {
    border-radius: var(--frame-radius);
    padding: 40px var(--frame-padding-x) calc(var(--frame-bottom-img-h) + var(--frame-bottom-padding));
    
  }

    .whiteFrame3 {
      border-radius: var(--frame-radius);
      padding: 80px;

    }

  .yellowFrame,
  .yellowFrame2 {
    display: inline-block;
    border: 6px solid #050505;
    padding: 0.5rem 7rem;
    border-radius: 40px;
  }

  .yellowFrame2 {
    position: relative;
    top: -73px;
    margin-bottom: -40px;
  }

  .main-title {
  font-size: 60px;
    line-height: 50px;
}

  .md-title {
  font-size: 47px;
  line-height: 43px;
  }

  .lg-title {
  font-size: 60px;
  line-height: 53px;
  }

   .xl-title {
  font-size: 110px;
  line-height: 83px;
  }


  .titleYellow-str {
    font-size: 60px;
    line-height: 61px;
    -webkit-text-stroke: 8px #000;
    paint-order: stroke fill;
  }

  .titleYellow-str-xl {
  font-size: 120px;
    line-height: 124px;
    -webkit-text-stroke: 9px #000;
    paint-order: stroke fill;
  }

.titleBlue-str, .titleBlue-str-md {
  color: var(--blue);
  font-size: 91px;
  line-height: 91px;
  text-transform: uppercase;
  font-weight: 900;

  -webkit-text-stroke: 0;

  text-shadow:
    5px 0 0 #000,
    -5px 0 0 #000,
    0 5px 0 #000,
    0 -5px 0 #000,

    4px 3px 0 #000,
    -4px 3px 0 #000,
    4px -3px 0 #000,
    -4px -3px 0 #000,

    3px 4px 0 #000,
    -3px 4px 0 #000,
    3px -4px 0 #000,
    -3px -4px 0 #000,

    5px 2px 0 #000,
    -5px 2px 0 #000,
    5px -2px 0 #000,
    -5px -2px 0 #000,

    2px 5px 0 #000,
    -2px 5px 0 #000,
    2px -5px 0 #000,
    -2px -5px 0 #000;


  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.titleBlue-str-md {
  font-size: 80px;
  line-height: 80px;
}

  .logo {
    width: 100%;
    max-width: 460px;
    height: auto;
  }

  .footer-logo {
    max-width: 180px;
  }

  .frameTopImg {
    width: 340px;
  }

  .frameBottomImg {
    width: 100%;
    max-width: none;
  }

  .whiteFrame_bottom {
    left: -5%;
    transform: none;
    width: 110%;
  }

  .bg-left {
    background-image: url('https://umb-4553t5.s3.eu-west-1.amazonaws.com/8677/media/bg-left-desk.webp');
    background-position: -220px -30px;
    background-size: auto 93%;
  }

  .bg-right {
    background-image: url('https://umb-4553t5.s3.eu-west-1.amazonaws.com/8677/media/bg-right-desk.webp');
    background-position: 6px 0px;
    background-size: auto 111%;
  }
}

@media (min-width: 992px) {
  .bg-left {
    background-position: -100px -30px;
  }
}

@media (min-width: 1200px) {
  .bg-left {
    background-position-x: clamp(-30px, calc(-30px + (100vw - 1200px) * 0.455), 60px);
  }
}

@media (min-width: 1400px) {
  .bg-left {
    background-position-x: clamp(38px, calc(38px + (100vw - 1400px) * 0.45), 150px);
  }
}

@media (min-width: 1600px) {
  .bg-left {
    background-position-x: 124px;
  }
}

/* ─── Terms / FAQ pages ─── */
.terms .whiteFrame-wrapper3,
.faq .whiteFrame-wrapper3 {
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 50px;
}

.terms .bg-left,
.terms .bg-right,
.faq .bg-left,
.faq .bg-right {
  display: none;
}

.terms .whiteFrame_bottom,
.faq .whiteFrame_bottom {
  display: none;
}