/* VARIABLE */
:root {
  --app-background-color: #0F0A39;
  --light-color:#fff;
  --prevyo-primary-color:#3C39B7;
  --font-color : #1b1b1b;
  --disabled-color:#888888;
  --border-color:#D5D5D5;

  --section-background-1 : #fff;
  --section-background-2 : #f5f5f5;
  --section-background-3 : #010C4C;
  --section-background-4 : #0C4D6E;
}

@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap');


body,
h1, 
h2,
h3,
h4,
p,
ul,
li {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Lexend", sans-serif;
  font-weight: normal;
  font-size: 16px;
  color: var(--font-color);
}

h1 {
  font-size: 48px;
  font-weight: normal;
  color: var(--light-color);
}

h2 {
  font-size: 40px;
  font-weight: normal;
  color:var(--prevyo-primary-color);
  text-align: center;
}

h3 {
  font-size: 24px;
  font-weight: normal;
  text-align: center;
}

h4 {
  font-size: 20px;
  font-weight: normal;
  text-align: center;
}

.font-bold {
  font-weight: bolder;
}

.section {
  display: flex;
  padding: 80px 0;
  justify-content: center;
  background-color: var(--app-background-color);

  &.section-1 {
    background-color: var(--section-background-1);
  }
  
  &.section-2 {
    background-color: var(--section-background-2);
  }

  &.section-3 {
    background-color: var(--section-background-3);
  }

  &.section-4 {
    background-color: var(--section-background-4);
  }
}

.content {
  width: 1000px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

#section_header {
  background-image: url(./img/bg_color_emvista.png);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
  
  .content {
    gap:80px;
    flex-direction: row;
    align-items: center;

    h1 {
      width: 600px;
    }
  }
  svg {
    fill: var(--light-color);
  }
}

#section_monitor_events {
  padding: 40px 0 0 0;

  h2 {
    text-align: left;
  }
  
  .content {
    flex-direction: row;
    gap:80px;
    align-items: center;

    .sme-wrapper {
      display: flex;
      flex-direction: column;
      gap:24px;

      .sme-w-card {
        display: flex;
        flex-direction: column;
        gap:12px;
      }
    }

    .sme-card {
      border-width: 1px;
      border-style: solid;
      padding: 12px;
      border-color: var(--prevyo-primary-color);
    }
  }
}

#section_sovereign_response {
  color:var(--light-color);

  h2 {
    color:var(--light-color);
  }

  .ssr-wrapper {
    display: flex;
    gap: 24px;

    .ssr-w-card {
      background-color: var(--prevyo-primary-color);
      padding: 16px;
      border-radius: 8px;
      display: flex;
      flex-direction: column;
      align-items: center;
      flex: 1 0 0;
      text-align: center;
      gap: 16px;
    }
  }

  svg {
    fill: var(--light-color);
    width: 80px;
    height: 80px;
  }
}

#section_key_features {
  h4 {
    color:var(--prevyo-primary-color);
  }

  .ssr-wrapper {
    display: flex;
    gap: 24px;

    .ssr-w-card {
      flex: 1 0 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
    }
  }
  svg {
    fill: var(--prevyo-primary-color);
    width: 80px;
    height: 80px;
  }
}

#section_osint_csint {
  color:var(--light-color);
  background-image: url(./img/bg_color_emvista.png);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;

  h2 {
    color:var(--light-color);
  }

  ul li {
    list-style: none;
    display: inline-block;
    margin-right: 8px;
    border: 1px solid var(--light-color);
    padding: 8px;
  }

  .soc-wrapper {
    display: flex;
    gap: 24px;

    .soc-w-card {
      flex: 1 0 0;
      display: flex;
      flex-direction: column;
      gap: 24px;

      img {
        height: 460px;
        align-self: stretch;
        aspect-ratio: 1/1;
      }
      ul {
        margin-top: 12px;
      }
    }

    .soc-w-c-example {
      border: 1px solid var(--light-color);
      padding: 12px;

      .soc-w-c-e-title {
        margin-bottom: 8px;
      }
    }
  }
}

#section_techno_prevyo {
  .stp-wrapper {
    display: flex;
    gap: 80px;

    .stp-w-card {
      flex: 1 0 0;
      display: flex;
      flex-direction: column;
      gap: 24px;
      align-items: center;

      ul li {
        list-style: square;
      }

      &.stp-w-c-without-prevyo {
        svg {
          fill:var(--disabled-color);
          border-color: var(--disabled-color);
        }
        h3, h4, ul li::marker {
          color:var(--disabled-color);
        }
      }
      &.stp-w-c-with-prevyo {
        svg {
          fill:var(--prevyo-primary-color);
          border-color: var(--prevyo-primary-color);
        }
        h3, h4, ul li::marker {
          color:var(--prevyo-primary-color);
        }
      }
    }
  }
  .svg-logo {
    width: 204px;
    height: 120px;
    border-width: 1px;
    border-style: solid;
    padding: 24px;
  }
  .svg-chevron {
    width: 28px;
    height: 28px;
  }
}

#section_info_brut {
  h3 {
    color:var(--prevyo-primary-color);
  }

  .sib-wrapper {
    display: flex;
    gap: 24px;

    .sib-w-card {
      flex: 1 0 0;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;

      p {
        text-align: left;
      }

      img {
        height: 150px;
      }
    }
  }

  .sib-card {
    border-width: 1px;
    border-style: solid;
    padding: 12px;
    border-color: var(--prevyo-primary-color);
    color: var(--prevyo-primary-color);
    text-align: center;
    font-weight: bold;
  }
}

#section_client {

  img {
    background-color: var(--light-color);
    border: 1px solid var(--border-color);
    width: 140px;
    height: 80px;
    margin-right: 8px;
  }

  .sc-card {
    ul {
      margin-top: 12px;
      margin-left: 24px;
      li {
        list-style: square;
        &::marker {
          color: var(--prevyo-primary-color);
        }
      }
    } 
  }
  .sc-card-list-client {
    ul li {
      list-style: none;
      display: inline-block;
    }
  }

  .sc-wrapper {
    display: flex;
    gap: 24px;

    .sc-w-card {
      flex: 1 0 0;
      border-width: 1px;
      border-style: solid;
      padding: 16px;
      border-color: var(--prevyo-primary-color);

      img {
        margin-bottom: 8px;
      }
    }
  }
}

#section_login {
  .sl-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;

    .btn {
      padding: 12px;
      display: block;
      border-radius: 4px;
      text-decoration: none;
      border-width: 2px;
      border-style: solid;

      &.btn-block {
        background-color: var(--prevyo-primary-color);
        color : var(--light-color);
        border-color: var(--prevyo-primary-color);
      }

      &.btn-border {
        border-color: var(--prevyo-primary-color);
        color : var(--prevyo-primary-color);
      }
    }
  }
}

#section_footer {
  background-image: url(./img/bg_color_emvista.png);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;

  padding: 40px 0;
  
  .content {
    text-align: center;
    color : var(--light-color);
    gap: 4px;
    font-size: 14px;
  }
}


#logo-prevyo {
  width: 300px;
  height: 200px;
  fill: var(--light-color);
}


#section_client {
  .carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
  }
  .carousel {
    display: flex;
    transition: transform 0.5s ease;
    gap: 8px;
  }
  .carousel-item {
    justify-content: center;
    align-items: center;
  }
  .client-logo {
    transition: opacity 0.3s, filter 0.3s;
  }
  .carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(220, 220, 220, 0.7);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--prevyo-primary-color);
    z-index: 100;
  }
  .carousel-button:hover {
    background: rgba(220, 220, 220, 0.9);
  }
  #prev {
    left: 8px;
  }
  #next {
    right: 8px;
  }
}
