* {
    box-sizing: border-box;
}

:root {
    --main-color: #dbdada;
    --secondary-color: #1A1A1A;
  }

@font-face {
    font-family: 'bebas-kai';
    src: url('BebasKai.ttf') format('truetype');
}

body {
    height: 100vh;   /* fallback */
    height: 100dvh;  /* modern fix */
    width: 100vw;
    width: 100dvw;
    margin: 0;
    background: var(--main-color);
    overflow: hidden;
}

header {
    z-index: 2;
    position: absolute;
        right: 0;
        top: 0;
    height: 15%;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center;     /* Center vertically */
}

.logo {
    height: 100%; /* Adjust as needed */
    padding-top: 10%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;}

    .logo img {
    height: 100%; /* Adjust as needed */
    display: block;
    margin: 0 auto;
    transition: filter 1.2s cubic-bezier(0.4,0,0.2,1);
}

.logo img.invert-logo {
  filter: invert(1);
}


/* ######## Swiper styles ######## */
    .swiper {
        height: 87%;
        width: 100%;
        position: relative;
    }

        .swiper-slide {
        width: 100%;
        height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      background-size: cover;
      background-position: center;
      text-align: center;
    }

    .slide-content {
        position: relative;
            top: 0;
            left: 0;
        height: 100%;
        width: 100%;
      background-size: cover;
      background-position: bottom;
        overflow: hidden;
    }

    .slide-content h1 {
      font-size: 2rem;
      margin: 0 0 15px;
    }

.bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom center; /* always crop top */
}

.slide-content video {
  will-change: transform, opacity;
}

.swiper-pagination {
  position: absolute !important;
  left: 2vw !important;
  top: 50% !important;
  transform: translateY(-50%);
  width: auto !important;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 20;
  pointer-events: auto;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--main-color);
  border: 2px solid var(--secondary-color);
  opacity: 1;
  transition: background 0.3s, border 0.3s, box-shadow 0.3s;
}

.swiper-pagination-bullet-active {
  background: var(--secondary-color);
  border: 2px solid var(--main-color);
}

.buttons-part {
    position: relative;
    display: inline-flex;
    width: 100%;
    height: 6%;
    cursor: pointer; /* Pointer/hand icon */
}

.CTA-button {
    display: flex;
    align-items: center;      /* Vertical centering */
    justify-content: space-evenly;  /* Horizontal centering */
    width: 80%;
    height: 100%;
    background: var(--main-color);
    border-left: 0px;
    border-right: solid 1px var(--secondary-color);
    border-top: solid 1px var(--secondary-color);
    border-bottom: solid 1px var(--secondary-color);
    text-decoration: none;
    text-transform: uppercase;
    text-align: center;
    font-family: "bebas-kai", sans-serif;
    font-size: 110%;
    letter-spacing: 0.1em;
    color: var(--secondary-color);
}

.play-button{
    width: 20%;
    border-right:0px;
    color: var(--secondary-color);
}

/* Make SVG icons inside play button visible and sized */
.play-button svg {
    width: 28px;
    height: 28px;
    display: block;
}

.footer-social-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style-type: none;
    list-style-image: none;
    margin: 0 auto;
    width: 90%;
    height: 7%;
}

ul {
    padding-inline-start: 0;
    margin-bottom: 0;
}

li {
    margin-top: 15px;
    margin-bottom: 10px;
}

.footer-social-wrap img {
    width: auto;
    height: 25px;
    filter: invert(0);
}
