/*
Theme Name: Émanciper
Version: 1.1;
Author: Kaï Djepaxhia
*/
@font-face {
  font-family: "Clash Grotesk";
  src: local("Clash Grotesk"),
    url("assets/fonts/ClashGrotesk-Variable.ttf") format("truetype");
}

@font-face {
  font-family: "Inter";
  src: local("Inter"),
    url("assets/fonts/Inter-VariableFont_opsz\,wght.ttf") format("truetype");
}

body {
  background: #e7dccf;
  font-family: "Clash Grotesk";
  padding: 0;
  margin: 0;
  scroll-behavior: smooth;


  h3 {
    /* h3 */
    font-family: "Clash Grotesk";
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    /* 32px */
    padding: 0;
  }

  h2 {
    /* h2 */
    font-family: "Clash Grotesk";
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    /* 48px */
  }

  h1 {
    font-family: "Clash Grotesk";
    font-size: 54px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    /* 48px */
  }

  p {
    /* corps de txt */
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 27px */
  }

  h4 {
    /* TINY inter */
    font-family: Inter;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }

  h5 {
    color: #353535;
    font-family: "Clash Grotesk";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 4px;
  }

  label {
    /* label */
    font-family: "Clash Grotesk";
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 1.2px;
    display: inline-flex;
    padding: 0 5px;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }

  a {
    color: blue;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
  }

  ol {
    color: #353535;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 27px */
  }

  ul {
    color: #353535;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 27px */
  }
}

/* Responsive images for all pages except home */
body:not(.home) img {
  max-width: 100%;
  height: auto;
}

footer {
  display: flex;
}

.error404 {
  color: white;
}

.wrapper {
  width: 1276px;
  max-width: 100%;
  padding: 0 32px;
  margin: 0 auto;
}

a {
  text-decoration: none;
  font-size: 15px;
}

.button-1 {
  font-family: "Clash Grotesk";
  font-weight: 500;
  display: flex;
  padding: 9px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 25px;
  background: #353535;
  color: #faf5ef;
  border: solid 1px #353535;
  transition: all 0.2s ease-in-out;
  width: fit-content;
  text-decoration: none;
}

.button-1:hover {
  background: transparent;
  color: #353535;
  border: solid 1px #353535;
}

.button-2 {
  font-family: "Clash Grotesk";
  font-weight: 500;
  display: flex;
  padding: 9px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 25px;
  background: transparent;
  color: #e7dccf;
  border: solid 1px #e7dccf;
  transition: all 0.2s ease-in-out;
  width: fit-content;
  text-decoration: none;
}

.button-2:hover {
  background: #e7dccf;
  color: #353535;
  border: solid 1px #e7dccf;
  cursor: pointer;
}

.button-3 {
  font-family: "Clash Grotesk";
  font-weight: 500;
  display: flex;
  padding: 9px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 25px;
  background: transparent;
  color: #353535;
  border: solid 1px #353535;
  transition: all 0.2s ease-in-out;
  width: fit-content;
  text-decoration: none;
}

.button-3:hover {
  background: #353535;
  color: #e7dccf;
  border: solid 1px #353535;
  cursor: pointer;
}

.home {
  margin: 0;
  display: flex;
  flex-direction: column;
  background-color: #e7dccf;
  color: #353535;

  .intro-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    padding-bottom: 100px;

    .intro-card {
      display: flex;
      width: 416px;
      height: 462px;
      background: bottom/cover;
      flex-direction: column;
      align-items: center;
      justify-content: flex-end;
      border-radius: 10px;
      text-align: center;
      padding: 0 40px 30px 30px;

      h3 {
        color: #353535;
        text-align: center;
      }

      label {
        text-transform: uppercase;
        color: #e7dccf;
        font-family: "Clash Grotesk";
        font-size: 12px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        letter-spacing: 1.2px;
        display: inline-flex;
        padding: 0 5px;
        justify-content: center;
        align-items: center;
        gap: 10px;
        background-color: #6c5ce7;
      }
    }

    .intro-card:nth-child(1) {
      label {
        background: var(--violet, #8a38f5);
      }
    }

    .intro-card:nth-child(2) {
      height: 582px;

      label {
        background: var(--rouge, #cf2d3f);
      }
    }

    .intro-card:nth-child(3) {
      label {
        background: var(--rose, #c52895);
      }
    }
  }

  .quiz {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #fff;
    padding-bottom: 100px;
    position: relative;

    .floating-img-top {
      position: absolute;
      top: -420px;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: contain;
      z-index: -1;
    }

    .floating-img-bottom {
      position: absolute;
      top: 420px;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: contain;
      z-index: -1;
    }

    h2 {
      color: #353535;
      text-align: center;
      margin-bottom: 0;
    }

    p {
      color: #353535;
      text-align: center;
      margin-bottom: 40px;
    }

    .question-card {
      display: flex;
      box-sizing: border-box;
      width: 416px;
      margin: 0 auto;
      padding: 50px;
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
      border-radius: 10px;
      background: #353535;

      .control {
        display: flex;
        width: 100%;

        .next-btn {
          margin-left: auto;
        }

        .prev-btn {
          margin: right;
        }
      }

      h3 {
        text-align: left;
        color: #fff;
        margin: 0;
      }

      .answer-list {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
        margin-bottom: 35px;
        width: auto;
      }

      .answer {
        padding: 0;
        border: none;
        background: none;
        display: flex;
        width: auto;
        height: 52px;
        padding: 9px 31px 9px 12px;
        align-items: center;
        gap: 14px;
        border-radius: 50px;
        background: var(--blanc, #fff);
        box-sizing: border-box;
        cursor: pointer;
        transition: all 0.2s ease-in-out;

        h4 {
          color: #353535;
        }
      }

      .answer.selected {
        background: #e7dccf;
      }

      .answer-label {
        display: flex;
        width: 35px;
        height: 34px;
        padding: 9px 9px;
        justify-content: center;
        align-items: center;
        gap: 10px;
        flex-shrink: 0;
        border-radius: 25px;
        background: var(--bleu, #4169d2);
        box-sizing: border-box;

        h4 {
          color: var(--blanc, #fff);
          text-align: center;
          font-family: "Clash Grotesk";
          font-size: 28px;
          font-style: normal;
          font-weight: 700;
          line-height: 100%;
          /* 28px */
        }
      }
    }

    .result {
      display: none;
      /* Default hidden, toggled to flex via JS */
      width: 100%;
      gap: 60px;
      justify-content: center;
      align-items: center;

      .result-left {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;

        img {
          width: 100%;
          max-width: 400px;
          height: auto;
          mix-blend-mode: multiply;
          aspect-ratio: 1/1;
          object-fit: cover;
          border-radius: 50%;
        }

        h2 {
          text-align: left;
          width: 100%;
        }
      }

      .result-right {
        display: flex;
        flex-direction: column;
        width: 50%;
        gap: 20px;
        align-items: flex-start;
        justify-content: center;

        p {
          text-align: left;
          margin: 0;
        }
      }

      @media (max-width: 900px) {
        flex-direction: column;
        gap: 30px;

        .result-left,
        .result-right {
          width: 100%;
          align-items: center;
        }

        .result-left h2 {
          text-align: center;
        }

        .result-right {
          align-items: center;

          p {
            text-align: center;
          }
        }
      }
    }

    .question-card {
      display: none;
    }

    .active {
      display: flex;

      .prev-btn {
        display: none;
      }
    }
  }
}

@media (max-width: 1380px) {
  .floating-img-top {
    display: none;
  }

  .floating-img-bottom {
    display: none;
  }
}

.about-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 100px;
  flex-wrap: wrap;

  .about-left {
    display: flex;
    border-radius: 10px;
    overflow: hidden;
    z-index: 1;
    height: auto;
    align-items: center;
    justify-content: center;
  }

  .about-right {
    display: flex;
    flex-direction: column;
    width: 516px;
    justify-content: center;
    align-items: start;

    h2 {
      margin: 10px 0;
    }

    p {
      margin: 0;
      margin-bottom: 20px;
    }

    h5 {
      margin: 0;
    }
  }
}

.agenda-wrapper {
  display: flex;
  justify-content: space-between;
  padding-bottom: 100px;
  flex-wrap: wrap;
  gap: 32px;

  h2 {
    margin: 10px 0;
  }

  p {
    margin: 0;
    margin-bottom: 20px;
  }

  h5 {
    margin: 0;
  }

  .agenda-left {
    display: flex;
    flex-direction: column;
    width: 301px;
    text-align: left;
  }

  .agenda-right {
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 50px;

    .event-card:nth-child(n + 1) {
      .event-card-1 {
        color: #cf2d3f;
      }
    }

    .event-card:nth-child(n + 2) {
      .event-card-1 {
        color: #4169d2;
      }
    }

    .event-card:nth-child(n + 3) {
      .event-card-1 {
        color: #c52895;
      }
    }

    .event-card {
      display: flex;
      gap: 40px;
      flex-wrap: wrap;

      .event-card-1 {
        display: flex;
        flex-direction: column;
        max-width: 90px;
        justify-content: center;
        align-items: center;

        .year {
          display: none;
        }

        .day,
        .month {
          font-size: 32px;
          text-align: center;
          font-family: "Clash Grotesk";
          font-style: normal;
          font-weight: 700;
          line-height: 32px;
        }

        .number {
          font-size: 68px;
          text-align: center;
          font-family: "Clash Grotesk";
          font-style: normal;
          font-weight: 700;
          line-height: 50px;
        }
      }

      .event-card-2 {
        width: 344px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 10px;

        h3 {
          margin-block: 0;
        }

        p {
          font-family: Inter;
          font-size: 15px;
          font-style: normal;
          font-weight: 400;
          line-height: normal;
        }
      }

      .event-card-3 {
        width: 216px;
        display: flex;
        flex-direction: column;
        justify-content: center;

        p {
          font-family: Inter;
          font-size: 15px;
          font-style: normal;
          font-weight: 400;
          line-height: normal;
        }

        .event-hour {
          display: flex;
          gap: 10px;
          align-items: flex-start;
        }

        img {
          max-width: 18px;
        }

        .event-adress {
          display: flex;
          gap: 10px;
          align-items: flex-start;
        }
      }
    }
  }
}

.blog-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding-bottom: 100px;
  flex-wrap: wrap;

  .blog-top {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 32px;

    .blog-top-left {
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
    }

    .blog-top-right {
      display: flex;
      align-items: end;
    }
  }

  h2 {
    margin: 0;
  }

  h5 {
    margin: 0;
  }
}

.blog-bottom {
  margin-top: 30px;
  display: flex;
  gap: 32px;

  .blog-card {
    display: flex;
    box-sizing: border-box;
    width: 416px;
    padding: 50px;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 10px;
    background: #353535;
    justify-content: space-between;

    h3 {
      color: #e7dccf;
    }

    p {
      color: #e7dccf;
      font-family: Inter;
      font-size: 15px;
      font-style: normal;
      font-weight: 400;
      line-height: normal;
    }

    label {
      color: #e7dccf;
    }

    .economie {
      background: var(--violet, #8a38f5);
    }

    .democratie {
      background: var(--rouge, #cf2d3f);
    }

    .langage {
      background: var(--violet, #c52895);
    }
  }
}

.wrapper-our-friends {
  display: flex;
  justify-content: space-between;
  padding-bottom: 100px;
  flex-wrap: wrap;

  .our-friends-left {
    width: 414px;
  }

  .our-friends-middle {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;

    img {
      max-width: 140px;
      max-height: 140px;
    }
  }

  .our-friends-right {
    display: flex;
    align-items: center;
  }

  p {
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 27px */
  }
}

.footer {
  position: relative;
  background: #fff;
  height: 100%;
  width: 100%;
  margin-top: 100px;

  .floating-img-top {
    position: absolute;
    top: -130px;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left top;
    z-index: -1;
  }

  .footer-wrapper {
    display: flex;
    flex-direction: column;

    .footer-top {
      display: flex;
      align-items: center;
      justify-content: space-between;

      p {
        margin-block: 0;
        color: #353535;
        font-family: Inter;
        font-size: 15px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
      }

      a {
        color: #353535;
        font-family: Inter;
        font-size: 15px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
      }
    a:hover {
      color: #4169d2;
    }

      .footer-2,
      .footer-3,
      .footer-4 {
        display: flex;
        flex-direction: column;
        gap: 12px;

        img {
          max-width: 26px;
          max-height: 26px;
        }

        .line {
          display: flex;
          align-items: center;
          gap: 15px;
        }

        .footer-logos {
          display: flex;
          gap: 20px;
          align-items: center;
        }
      }

      .footer-1 {
        display: flex;
        align-items: center;
        gap: 20px;

        p {
          max-width: 178px;
        }

        img {
          max-width: 115px;
        }
      }
    }

    .footer-bottom {
      display: flex;
      justify-content: end;

      p {
        color: #7d7c7c;
        text-align: center;
        font-family: Inter;
        font-size: 12px;
        font-style: italic;
        font-weight: 200;
        line-height: normal;
        text-wrap: wrap;
      }
    }
  }
}

.header {
  background-image: url("assets/img/header-bg.png");
  background-repeat: repeat;
  background-size: auto 100%;
  background-position: left bottom;
  padding-bottom: 50px;

  .header-wrapper {
    display: flex;
    justify-content: space-between;
    padding: 0 64px;
    padding-bottom: 20px;

    .header-left {
      display: flex;
      gap: 64px;
    }

    .header-right {
      display: flex;
    }
  }

  .header-1,
  .header-2,
  .header-3 {
    display: flex;
    align-items: center;

    img {
      max-width: 159px;
    }
  }

  .header-2 {
    gap: 30px;

    a {
      color: #353535;
      font-family: "Clash Grotesk";
      font-size: 16px;
      font-style: normal;
      font-weight: 500;
      line-height: normal;
    }

    a:hover {
      color: #4169d2;
    }
  }

  .header-3 {
    gap: 8px;
  }

  .header-3 a:nth-of-type(1) {
    font-family: "Clash Grotesk";
    font-weight: 500;
    display: flex;
    padding: 9px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 25px;
    background: transparent;
    color: #353535;
    border: solid 1px #353535;
    transition: all 0.2s ease-in-out;
    width: fit-content;
  }

  .header-3 a:nth-of-type(1):hover {
    color: #4169d2;
    border: solid 1px #4169d2;
  }

  .header-3 a:nth-of-type(2) {
    font-family: "Clash Grotesk";
    font-weight: 500;
    display: flex;
    padding: 9px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 25px;
    background: #353535;
    color: #faf5ef;
    border: solid 1px #353535;
    transition: all 0.2s ease-in-out;
    width: fit-content;
  }

  .header-3 a:nth-of-type(2):hover {
    background: #4169d2;
    color: #faf5ef;
    border: solid 1px #4169d2;
  }
}

.newsletter-wrapper {
  display: flex;
  justify-content: space-between;
  margin-bottom: 100px;

  .newsletter-left {
    display: flex;
    flex-direction: column;
    width: 916px;

    form {
      display: flex;
      flex-direction: column;
    }

    label {
      color: #353535;
      font-family: Inter;
      font-size: 13px;
      font-style: normal;
      font-weight: 400;
      line-height: 110%;
      /* 14.3px */
    }

    .wpcf7 input[type="submit"] {
      font-family: "Clash Grotesk";
      font-weight: 500;
      display: flex;
      padding: 9px 20px;
      justify-content: center;
      align-items: center;
      gap: 10px;
      border-radius: 25px;
      background: #353535;
      color: #faf5ef;
      border: solid 1px #353535;
      transition: all 0.2s ease-in-out;
      width: fit-content;
    }

    .wpcf7 input[type="submit"]:hover {
      background: transparent;
      color: #353535;
      border: solid 1px #353535;
      cursor: pointer;
    }

    .wpcf7 input[type="text"],
    .wpcf7 input[type="email"],
    .wpcf7 textarea {
      width: 100%;
      padding: 12px;
      border: none;
      border-radius: 12px;
      /* Matches the rounded look in the image */
      background-color: #fff;
      /* Ensures white background for inputs */
      box-sizing: border-box;
      /* Ensures padding doesn't affect width */
    }

    p {
      color: #353535;
      font-family: Inter;
      font-size: 13px;
      font-style: normal;
      font-weight: 400;
      line-height: 110%;
      /* 14.3px */
    }
  }

  .newsletter-right {
    img {
      width: 301.137px;
      height: 240.909px;
      transform: rotate(18.145deg);
      aspect-ratio: 301.14/240.91;
    }
  }
}

.contact-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 50px;

  h3 {
    margin-block: 0;
  }

  .member-form {
    display: flex;
    flex-direction: column;

    .member-form-top {
      display: flex;
      gap: 20px;
    }

    textarea {
      resize: none;
    }

    .wpcf7 input[type="submit"] {
      font-family: "Clash Grotesk";
      font-weight: 500;
      display: flex;
      padding: 9px 20px;
      justify-content: center;
      align-items: center;
      gap: 10px;
      border-radius: 25px;
      background: #353535;
      color: #faf5ef;
      border: solid 1px #353535;
      transition: all 0.2s ease-in-out;
      width: fit-content;
    }

    .wpcf7 input[type="submit"]:hover {
      background: transparent;
      color: #353535;
      border: solid 1px #353535;
      cursor: pointer;
    }

    /* --- Contact Form 7 Custom Layout CSS --- */
    .cf7-custom-form-layout {
      max-width: 600px;
    }

    /* Container for the three top columns */
    .cf7-custom-form-layout .form-row-three-cols {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 20px;
      /* Space between the columns */
      margin-bottom: 20px;
    }

    /* The individual columns */
    .cf7-custom-form-layout .form-col {
      flex: 1 1 30%;
      /* Allows columns to grow/shrink, taking up roughly 1/3 width */
      min-width: 100px;
      /* Ensures they don't get too squashed on small screens */
    }

    /* Full width row spacing */
    .cf7-custom-form-layout .form-row-full {
      margin-bottom: 20px;
    }

    /* General styling for labels to sit above inputs */
    .cf7-custom-form-layout label {
      display: block;
      margin-bottom: 5px;
      font-weight: 500;
    }

    /* Styling inputs and textareas to fill their container and have rounded corners */
    .wpcf7 input[type="text"],
    .wpcf7 input[type="email"],
    .wpcf7 textarea {
      width: 100%;
      padding: 12px;
      border: none;
      border-radius: 12px;
      /* Matches the rounded look in the image */
      background-color: #fff;
      /* Ensures white background for inputs */
      box-sizing: border-box;
      /* Ensures padding doesn't affect width */
    }

    /* Submit button container alignment */
    .cf7-custom-form-layout .form-row-submit.right-aligned {
      display: flex;
      justify-content: flex-end;
    }

    /* Responsive adjustment for mobile */
    @media (max-width: 768px) {
      .cf7-custom-form-layout .form-row-three-cols {
        flex-direction: column;
        /* Stack columns vertically on mobile */
        gap: 10px;
      }
    }

    p,
    label {
      color: #353535;
      font-family: Inter;
      font-size: 13px;
      font-style: normal;
      font-weight: 400;
      line-height: 110%;
      /* 14.3px */
      max-width: 400px;
    }
  }
}

.upcoming-events {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.past-events {
  display: flex;
  flex-direction: column;
  gap: 30px;

  .agenda-event-card {
    flex-direction: row-reverse;
  }
}

.agenda-event-card {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;

  .agenda-card-1 {
    display: flex;

    .date_left {
      display: flex;
      flex-direction: column;
      max-width: 90px;
      justify-content: center;
      align-items: center;

      .year {
        display: none;
      }

      .day,
      .month {
        font-size: 32px;
        text-align: center;
        font-family: "Clash Grotesk";
        font-style: normal;
        font-weight: 700;
        line-height: 32px;
      }

      .number {
        font-size: 68px;
        text-align: center;
        font-family: "Clash Grotesk";
        font-style: normal;
        font-weight: 700;
        line-height: 50px;
      }
    }

    .date_right {
      .year {
        display: flex;
        font-size: 32px;
        text-align: center;
        font-family: "Clash Grotesk";
        font-style: normal;
        font-weight: 700;
        line-height: 32px;
        writing-mode: vertical-lr;
        text-orientation: upright;
        letter-spacing: -10px;
        display: inline-block;
      }
    }
  }

  .agenda-card-2 {
    display: flex;
    flex-direction: column;
    width: 300px;
  }

  .agenda-card-3 {
    display: flex;
    width: 304px;
    height: 177px;
    justify-content: center;
    align-items: center;

    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 10px;
    }
  }

  .agenda-card-4 {
    width: 216px;
    display: flex;
    flex-direction: column;
    justify-content: center;

    p {
      font-family: Inter;
      font-size: 15px;
      font-style: normal;
      font-weight: 400;
      line-height: normal;
    }

    .event-hour {
      display: flex;
      gap: 10px;
      align-items: flex-center;
    }

    img {
      max-width: 18px;
    }

    .event-adress {
      display: flex;
      gap: 10px;
      align-items: flex-center;
    }
  }

  p {
    color: #353535;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }

  h3 {
    margin-block: 0;
  }
}

.agenda-event-card:nth-child(n + 2) {
  .agenda-card-1 {
    color: #cf2d3f;
  }
}

.agenda-event-card:nth-child(n + 3) {
  .agenda-card-1 {
    color: #4169d2;
  }
}

.agenda-event-card:nth-child(n + 4) {
  .agenda-card-1 {
    color: #c52895;
  }
}

.about {
  display: flex;
  flex-direction: column;
  gap: 150px;
  margin-bottom: 150px;

  p {
    color: #353535;
    /* corps de txt */
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 27px */
  }

  ul {
    color: #353535;
    /* corps de txt */
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 27px */
  }

  h4 {
    color: var(--gris, #353535);
    text-align: center;
    font-family: "Clash Grotesk";
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }

  h3 {
    color: #353535;
    font-family: "Clash Grotesk";
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-block: 0;
  }

  h2 {
    color: #353535;
    font-family: "Clash Grotesk";
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    /* 64px */
    margin-block: 0;
  }

  .about-card:nth-child(even) {
    flex-direction: row-reverse;
  }

  .about-card {
    display: flex;
    justify-content: space-between;
    align-items: center;

    .about-card-left {
      max-width: 500px;

      .about-card-links {
        display: flex;
        gap: 30px;
        flex-wrap: wrap;
      }
    }

    .about-card-right {
      img {
        border-radius: 10px;
        display: flex;
        width: 100%;
        height: auto;
        justify-content: center;
        align-items: center;
        gap: 10px;
      }
    }
  }
}

.ideas {
  display: flex;
  flex-direction: column;
  gap: 150px;
  margin-bottom: 150px;

  p {
    color: #353535;
    /* corps de txt */
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 27px */
  }

  ul {
    color: #353535;
    /* corps de txt */
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 27px */
  }

  h4 {
    color: var(--gris, #353535);
    text-align: center;
    font-family: "Clash Grotesk";
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }

  h3 {
    color: #353535;
    font-family: "Clash Grotesk";
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-block: 0;
  }

  h2 {
    color: #353535;
    font-family: "Clash Grotesk";
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    /* 64px */
    margin-block: 0;
  }

  .ideas-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;

    .ideas-card-left {
      max-width: 500px;

      .ideas-card-links {
        display: flex;
        gap: 30px;
      }
    }

    .ideas-card-right {
      img {
        border-radius: 10px;
        display: flex;
        width: 100%;
        height: auto;
        justify-content: center;
        align-items: center;
        gap: 10px;
      }
    }
  }
}

.reason {
  display: flex;
  flex-direction: column;
  gap: 150px;
  margin-bottom: 150px;

  p {
    color: #353535;
    /* corps de txt */
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 27px */
  }

  ul {
    color: #353535;
    /* corps de txt */
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 27px */
  }

  h4 {
    color: var(--gris, #353535);
    text-align: center;
    font-family: "Clash Grotesk";
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }

  h3 {
    color: #353535;
    font-family: "Clash Grotesk";
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-block: 0;
  }

  h2 {
    color: #353535;
    font-family: "Clash Grotesk";
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    /* 64px */
    margin-block: 0;
  }

  .reason-card:nth-child(even) {
    flex-direction: row-reverse;
  }

  .reason-card {
    display: flex;
    justify-content: space-between;
    align-items: center;

    .reason-card-left {
      max-width: 500px;

      .reason-card-links {
        display: flex;
        gap: 30px;
      }
    }

    .reason-card-right {
      img {
        border-radius: 10px;
        display: flex;
        width: 100%;
        height: auto;
        justify-content: center;
        align-items: center;
        gap: 10px;
        object-fit: cover;
      }
    }
  }
}

.fonction {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-bottom: 50px;

  .fonction-card {
    max-width: 1200px;

    p {
      color: #353535;
      /* corps de txt */
      font-family: Inter;
      font-size: 18px;
      font-style: normal;
      font-weight: 400;
      line-height: 150%;
      /* 27px */
    }

    ul {
      color: #353535;
      font-family: Inter;
      font-size: 18px;
      font-style: normal;
      font-weight: 400;
      line-height: 150%;
      /* 27px */
    }

    h4 {
      color: var(--gris, #353535);
      text-align: center;
      font-family: "Clash Grotesk";
      font-size: 32px;
      font-style: normal;
      font-weight: 700;
      line-height: normal;
    }

    h3 {
      color: #353535;
      font-family: "Clash Grotesk";
      font-size: 48px;
      font-style: normal;
      font-weight: 700;
      line-height: normal;
      margin-block: 0;
    }

    h2 {
      color: #353535;
      font-family: "Clash Grotesk";
      font-size: 64px;
      font-style: normal;
      font-weight: 700;
      line-height: 100%;
      /* 64px */
      margin-block: 0;
    }
  }
}

.manifest {
  display: flex;
  flex-direction: column;
  gap: 100px;
  margin-bottom: 100px;

  p {
    color: #353535;
    /* corps de txt */
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 27px */
  }

  ul {
    color: #353535;
    /* corps de txt */
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 27px */
  }

  h4 {
    color: var(--gris, #353535);
    text-align: center;
    font-family: "Clash Grotesk";
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }

  h3 {
    color: #353535;
    font-family: "Clash Grotesk";
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-block: 0;
  }

  h2 {
    color: #353535;
    font-family: "Clash Grotesk";
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    /* 64px */
    margin-block: 0;
  }

  .manifest-card:nth-child(even) {
    flex-direction: row-reverse;
  }

  .manifest-card {
    display: flex;
    justify-content: space-between;
    align-items: center;

    .manifest-card-left {
      max-width: 500px;
    }

    .manifest-card-right {
      img {
        border-radius: 10px;
        display: flex;
        width: 640px;
        justify-content: center;
        align-items: center;
        gap: 10px;
        object-fit: cover;
      }
    }
  }
}

.volunteer {
  display: flex;
  flex-direction: column;
  gap: 100px;
  margin-bottom: 100px;

  p {
    color: #353535;
    /* corps de txt */
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 27px */
  }

  ul {
    color: #353535;
    /* corps de txt */
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 27px */
  }

  h4 {
    color: var(--gris, #353535);
    text-align: center;
    font-family: "Clash Grotesk";
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }

  h3 {
    color: #353535;
    font-family: "Clash Grotesk";
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-block: 0;
  }

  h2 {
    color: #353535;
    font-family: "Clash Grotesk";
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    /* 64px */
    margin-block: 0;
  }

  .volunteer-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;

    .volunteer-card-left {
      max-width: 500px;
    }

    .volunteer-card-right {
      img {
        border-radius: 10px;
        display: flex;
        width: 640px;
        height: 390px;
        justify-content: center;
        align-items: center;
        gap: 10px;
        object-fit: cover;
      }
    }
  }
}

.offer {
  display: flex;
  flex-direction: column;
  gap: 100px;
  margin-bottom: 100px;

  p {
    color: #353535;
    /* corps de txt */
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 27px */
  }

  ul {
    color: #353535;
    /* corps de txt */
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 27px */
  }

  h4 {
    color: var(--gris, #353535);
    text-align: center;
    font-family: "Clash Grotesk";
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }

  h3 {
    color: #353535;
    font-family: "Clash Grotesk";
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-block: 0;
  }

  h2 {
    color: #353535;
    font-family: "Clash Grotesk";
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    /* 64px */
    margin-block: 0;
  }

  .offer-card {
    display: flex;
    justify-content: space-between;
    align-items: center;

    .offer-card-left {
      max-width: 500px;
    }

    .offer-card-right {
      img {
        border-radius: 10px;
        display: flex;
        width: 100%;
        height: auto;
        justify-content: center;
        align-items: center;
        gap: 10px;
        object-fit: cover;
      }
    }
  }
}

.joinUsTop {
  h5 {
    color: #000;
    font-family: "Clash Grotesk";
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-block: 0;
    letter-spacing: 0;
  }

  p {
    color: #000;
    font-family: "Clash Grotesk";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }

  .joinUsTop-wrapper {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    flex-wrap: wrap;

    a {
      color: #000;
      font-family: "Clash Grotesk";
      font-size: 20px;
      font-style: normal;
      font-weight: 400;
      line-height: normal;
      text-decoration-line: underline;
      text-decoration-style: solid;
      text-decoration-skip-ink: auto;
      text-decoration-thickness: auto;
      text-underline-offset: auto;
      text-underline-position: from-font;
    }

    .joinUsTop-left {
      display: flex;
      flex-direction: column;
      gap: 32px;
      max-width: 415px;
    }

    .joinUsTop-right {
      display: flex;
      flex-direction: column;
      gap: 32px;
      max-width: 415px;
    }
  }

  .joinUsTop-links {
    display: flex;
    gap: 30px;
  }
}

.joinUsBottom {
  label {
    color: #353535;
    font-family: Inter;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
    /* 14.3px */
  }

  .wpcf7 input[type="submit"] {
    font-family: "Clash Grotesk";
    font-weight: 500;
    display: flex;
    padding: 9px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 25px;
    background: #353535;
    color: #faf5ef;
    border: solid 1px #353535;
    transition: all 0.2s ease-in-out;
    width: fit-content;
  }

  .wpcf7 input[type="submit"]:hover {
    background: transparent;
    color: #353535;
    border: solid 1px #353535;
    cursor: pointer;
  }

  .wpcf7 input[type="text"],
  .wpcf7 input[type="email"],
  .wpcf7 textarea {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 12px;
    /* Matches the rounded look in the image */
    background-color: #fff;
    /* Ensures white background for inputs */
    box-sizing: border-box;
    /* Ensures padding doesn't affect width */
  }

  p {
    color: #353535;
    font-family: Inter;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
    /* 14.3px */
  }
}

.single-event-wrapper {
  display: flex;
  flex-direction: column;
  gap: 50px;

  .single-event-top {
    display: flex;
    align-self: center;

    img {
      border-radius: 10px;
      max-width: 300px;
      object-fit: cover;
    }
  }

  h2 {
    margin-block: 0;
  }

  .single-event-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;

    .single-event-left {
      display: flex;
      flex-direction: column;
      max-width: 600px;
    }

    .single-event-right {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 50px;

      .event-day {
        display: flex;
        flex-direction: row;
        max-width: 90px;
        color: #cf2d3f;

        .year {
          display: none;
        }

        .day,
        .month {
          font-size: 32px;
          text-align: center;
          font-family: "Clash Grotesk";
          font-style: normal;
          font-weight: 700;
          line-height: 32px;
        }

        .number {
          font-size: 68px;
          text-align: center;
          font-family: "Clash Grotesk";
          font-style: normal;
          font-weight: 700;
          line-height: 50px;
        }
      }

      .date_right {
        .year {
          display: flex;
          font-size: 32px;
          text-align: center;
          font-family: "Clash Grotesk";
          font-style: normal;
          font-weight: 700;
          line-height: 32px;
          writing-mode: vertical-lr;
          text-orientation: upright;
          letter-spacing: -10px;
          display: inline-block;
        }
      }

      .single-event-info {
        display: flex;
        flex-direction: column;

        .event-hour {
          display: flex;
          gap: 10px;
          align-items: center;

          img {
            max-width: 18px;
          }
        }

        .event-adress {
          display: flex;
          gap: 10px;
          align-items: flex-center;
          max-width: 216px;

          img {
            max-width: 18px;
          }
        }
      }
    }
  }

  .event-return {
    align-self: center;
  }
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 32px;
}

.blog-card {
  background-color: #353535;
  color: #fff;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 30px 40px;

  h3 {
    color: #e7dccf;
    font-family: "Clash Grotesk";
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    /* 32px */
  }

  p {
    color: #e7dccf;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
}

.blog-card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;

  .card-below-image {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
  }
}

.card-footer {
  display: flex;
  justify-content: flex-end;
}

.card-badges {
  margin-bottom: 15px;
  display: flex;
  gap: 5px;
  flex-wrap: wrap;

  .badge {
    text-transform: uppercase;
    color: #e7dccf;
    font-family: "Clash Grotesk";
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 1.2px;
    display: inline-flex;
    padding: 0 5px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background-color: #6c5ce7;
  }

  .economie {
    background: var(--violet, #8a38f5);
  }

  .democratie {
    background: var(--rouge, #cf2d3f);
  }

  .langage {
    background: var(--violet, #c52895);
  }
}

/* Category Filter Styles */
.category-filters {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-btn {
  font-family: "Clash Grotesk";
  font-weight: 500;
  display: flex;
  padding: 9px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 25px;
  background: transparent;
  color: #353535;
  border: solid 1px #353535;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  font-size: 15px;
}

.filter-btn:hover {
  background: #353535;
  color: #e7dccf;
  border: solid 1px #353535;
}

.filter-btn.active {
  background: #353535;
  color: #faf5ef;
  border: solid 1px #353535;
}

.blog-header {
  margin-bottom: 30px;
}

.blog-header h2 {
  text-align: center;
  color: #353535;
}

/* Smooth transition for filtered cards */
.blog-card {
  transition: opacity 0.3s ease-in-out;
}

.card-image-wrapper {
  width: 100%;
  height: 168px;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 15px;

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.blog-card:nth-child(4) {
  grid-column: 1 / -1;
  background: #fff;

  h3 {
    color: #353535;
    font-family: "Clash Grotesk";
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    /* 32px */
  }

  p {
    color: #353535;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
}

.blog-card:nth-child(4) .blog-card-inner {
  flex-direction: row;
  gap: 30px;

  .button-2 {
    font-family: "Clash Grotesk";
    font-weight: 500;
    display: flex;
    padding: 9px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 25px;
    background: #353535;
    color: #faf5ef;
    border: solid 1px #353535;
    transition: all 0.2s ease-in-out;
    width: fit-content;
    text-decoration: none;
  }

  .button-2:hover {
    background: transparent;
    color: #353535;
    border: solid 1px #353535;
  }
}

.blog-card:nth-child(4) .card-top {
  width: 50%;
  flex-shrink: 0;
}

.blog-card:nth-child(4) .card-image-wrapper {
  height: 350px;
  margin-bottom: 0;
}

.blog-card:nth-child(4) .card-content {
  width: 50%;
  padding-right: 20px;
}

.blog-card:nth-child(4) .card-below-image {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
}

.pagination {
  margin-top: 50px;
  text-align: center;
  width: 100%;
  display: block;
}

.pagination .page-numbers {
  font-family: "Clash Grotesk";
  font-weight: 500;
  display: inline-block;
  padding: 9px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 25px;
  background: transparent;
  color: #353535;
  border: solid 1px #353535;
  transition: all 0.2s ease-in-out;
  width: fit-content;
  text-decoration: none;
}

.pagination .page-numbers.current {
  background-color: #353535;
  color: #faf5ef;
}

.pagination .page-numbers:hover {
  background: #353535;
  color: #faf5ef;
  border: solid 1px #353535;
}

.single-post-wrapper {
  display: flex;
  flex-direction: column;
  gap: 50px;

  .single-post-top {
    display: flex;
    justify-content: space-between;

    .post-description {
      max-width: 500px;
    }

    .post-image {
      img {
        object-fit: cover;
        height: 320px;
        width: 100%;
      }
    }
  }
}

.post-return {
  display: flex;
  justify-content: center;
}

.breadcrumb {
  padding: 10px 0;
  font-size: 1rem;
  color: #353535;
  font-weight: 700;
}

.breadcrumb a {
  color: #353535;
  text-decoration: none;
  font-size: 1rem;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.history {
  display: flex;
  flex-direction: column;
  gap: 150px;
  margin-bottom: 150px;

  p {
    color: #353535;
    /* corps de txt */
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 27px */
  }

  ul {
    color: #353535;
    /* corps de txt */
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 27px */
  }

  h4 {
    color: var(--gris, #353535);
    text-align: center;
    font-family: "Clash Grotesk";
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }

  h3 {
    color: #353535;
    font-family: "Clash Grotesk";
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-block: 0;
  }

  h2 {
    color: #353535;
    font-family: "Clash Grotesk";
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    /* 64px */
    margin-block: 0;
  }

  .history-card:nth-child(even) {
    flex-direction: row-reverse;
  }

  .history-cards {
    display: flex;
    flex-direction: column;
    gap: 100px;
  }

  .history-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;

    .history-card-left {
      display: flex;
      flex-direction: column;
      max-width: 500px;
      align-items: center;
      justify-content: center;
      width: 100%;
    }

    .history-card-right {
      img {
        border-radius: 10px;
        display: flex;
        width: 100%;
        height: auto;
        justify-content: center;
        align-items: center;
        gap: 10px;
      }
    }
  }
}

.cms {
  p {
    color: #353535;
    /* corps de txt */
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 27px */
  }

  ul {
    color: #353535;
    /* corps de txt */
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 27px */
  }

  h1 {
    color: #353535;
    font-family: "Clash Grotesk";
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    /* 64px */
    margin-block: 0;
  }

  h2 {
    color: #353535;
    font-family: "Clash Grotesk";
    font-size: 54px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    /* 64px */
    margin-block: 0;
  }

  h3 {
    color: #353535;
    font-family: "Clash Grotesk";
    font-size: 44px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-block: 0;
  }

  h4 {
    color: #353535;
    font-family: "Clash Grotesk";
    font-size: 34px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-block: 0;
  }

  h5 {
    color: #353535;
    font-family: "Clash Grotesk";
    font-style: normal;
    font-size: 24px;
    font-weight: 700;
    line-height: normal;
    margin-block: 0;
    letter-spacing: normal;
  }

  h6 {
    color: #353535;
    font-family: "Clash Grotesk";
    font-style: normal;
    font-size: 14px;
    font-weight: 700;
    line-height: normal;
    margin-block: 0;
    letter-spacing: normal;
  }
}

/* Contact Page Refinements */
.section-adress .adress-bottom {
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-adress .adress-bottom img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.section-adress .adress-bottom p {
  margin: 0;
}

.section-mail {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.section-mail h4 {
  width: 100%;
}

.section-mail .section-mail-line img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.section-mail p {
  margin: 0;
}

.section-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
}

.section-socials h4 {
  width: 100%;
}

.section-socials a img {
  width: 30px;
  height: auto;
  transition: transform 0.2s;
}


.section-socials a:hover img {
  transform: scale(1.1);
}

/* Search Bar Styles */
.header-3 {
  display: flex;
  align-items: center;
  gap: 15px;
}

.search-form {
  display: flex;
  align-items: center;
  border: 1px solid #353535;
  border-radius: 25px;
  padding: 5px 15px;
  background: white;
  transition: all 0.3s ease;
}

.search-form:focus-within {
  border-color: #4169d2;
  box-shadow: 0 0 5px rgba(65, 105, 210, 0.3);
}

.search-field {
  border: none;
  outline: none;
  background: transparent;
  width: 150px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #353535;
}

.search-submit {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: #353535;
  transition: color 0.3s ease;
}

.search-submit:hover {
  color: #4169d2;
}

.search-submit svg {
  width: 20px;
  height: 20px;
}

/* Search Results Page Styles */
.search-section {
  margin-bottom: 60px;
}

.search-section h2 {
  font-family: "Clash Grotesk";
  color: #353535;
  font-size: 48px;
  margin-bottom: 40px;
  text-align: left;
}

/* Page List Styles */
.search-section ul {
  list-style: none;
  padding: 0;
}

.search-section ul li {
  margin-bottom: 10px;
}

.search-section ul li a {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: #353535;
  text-decoration: none;
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  transition: all 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}

.search-section ul li a:hover {
  background-color: #f5f5f5;
  border-color: #353535;
}

/* Hamburger Menu Styles */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  transition: all 0.3s ease;
}

.hamburger-btn span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #353535;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger-btn.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger-btn.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: flex;
  justify-content: flex-end;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-nav.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-content {
  width: 80%;
  max-width: 400px;
  height: 100%;
  background-color: #e7dccf;
  padding: 80px 40px 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

.mobile-nav.active .mobile-nav-content {
  transform: translateX(0);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-nav-links a {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #353535;
  text-decoration: none;
  transition: color 0.2s ease;
  padding: 8px 0;
}

.mobile-nav-links a:hover {
  color: #4169d2;
}

.mobile-search {
  display: flex;
  background: #fff;
  border-radius: 25px;
  padding: 8px 20px;
  border: 1px solid #353535;
  align-items: center;
  gap: 10px;
}

.mobile-search .search-field {
  border: none;
  background: transparent;
  flex: 1;
  outline: none;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #353535;
}

.mobile-search .search-submit {
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 0;
  color: #353535;
}

.mobile-search .search-submit svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 1023px) {

  .header-2,
  .header-right {
    display: none !important;
  }

  .hamburger-btn {
    display: flex;
  }

  .footer-top {
    flex-wrap: wrap;
    gap: 50px;
  }

  .blog-bottom {
    flex-direction: column;
    gap: 50px;
    align-items: center;

    .blog-card {
      min-width: 400px;
    }
  }

  .wrapper-our-friends {
    flex-direction: column;
    gap: 50px;
    align-items: center;
  }

  .offer-card {
    flex-direction: column;
    gap: 20px;
  }

  .about-card {
    flex-direction: column-reverse;
    gap: 20px;
  }

  .about-card:nth-child(even) {
    flex-direction: column-reverse !important;
    gap: 20px;
  }

  .manifest-card {
    flex-direction: column-reverse !important;
    gap: 20px;
  }

  .manifest-card:nth-child(even) {
    flex-direction: column-reverse !important;
    gap: 20px;
  }

  .reason-card {
    flex-direction: column-reverse !important;
    gap: 20px;
  }

  .reason-card:nth-child(even) {
    flex-direction: column-reverse !important;
    gap: 20px;
  }

  .blog-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;

    .blog-card:nth-child(4) {
      background-color: #353535;
      color: #fff;
      border-radius: 12px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      padding: 30px 40px;

      h3 {
        color: #fff;
        font-family: "Clash Grotesk";
        font-size: 32px;
        font-style: normal;
        font-weight: 700;
        line-height: 100%;
        /* 32px */
      }

      p {
        color: #fff;
        font-family: Inter;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
      }
    }
  }

  .newsletter-right {
    display: none;
  }

  /* Intro Cards Carousel for Mobile */
  .intro-wrapper {
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
    padding-left: calc((100vw - 400px) / 2);
    padding-right: calc((100vw - 400px) / 2);
    gap: 32px;
  }

  .intro-wrapper::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
  }

  .intro-wrapper .intro-card {
    flex-shrink: 0;
    scroll-snap-align: center;
    width: 400px;
  }

  .intro-wrapper .intro-card:nth-child(2) {
    height: 462px;
    /* Match other cards height on mobile */
  }
}
