/*  FONTS  */
    @font-face {
      font-family: 'AvantGarde1';
      src: url('../font/ITCAvantGardeStd-Bk.otf');
    }

    @font-face {
      font-family: 'AvantGarde2';
      src: url('../font/ITCAvantGardeStd-Demi.otf');
    }

    @font-face {
      font-family: 'AvantGarde3';
      src: url('../font/ITCAvantGardeStd-XLt.otf');
    }

/*  GLOBAL  */

      * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      }

body { 
        background-color: white;
        background-image: url("../img/background.webp");
        background-size: 100vw 100vh;
        background-attachment: fixed;
        font-family: "AvantGarde1", Arial, sans-serif;
        color: white;
        line-height: 1.6;
      }
    /*  CONTENEUR PRINCIPAL  */
.container {
              display: flex;
              flex-direction: column;
              justify-content: center;
              align-items: center;
              min-height: 100vh;
              background-color blur: rgba(255, 255, 255, 0.2);
              backdrop-filter: blur(15px);
              text-align: center;
            }
.top-navigation {
                  position: fixed;
                  top: 0;
                  left: 0;
                  right: 0;
                  width: 100%;
                  height: 80px;
                  display: flex;
                  justify-content: space-between;
                  align-items: center;
                  padding: 0 40px;
                  z-index: 1000;
                  pointer-events: none; /* permet de cliquer à travers la nav */
                }

.nav-btn {
            pointer-events: all; /* réactive les clics sur les boutons */
            padding: 12px 30px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 25px;
            color: white;
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
          }

.nav-btn:hover {
                  background: rgba(255, 255, 255, 0.2);
                  transform: translateY(-2px);
                  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
                }

.nav-btn-left {
                margin-right: auto;
              }

.nav-btn-right {
                  margin-left: auto;
                }

/*  SECTION ABOUT  */
.section {
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 4rem 10%;
          }

.content-wrapper {
                    background-color: rgba(255, 255, 255, 0.15);
                    border: 1px solid rgba(255, 255, 255, 0.3);
                    border-radius: 20px;
                    padding: 2rem;
                    max-width: 1000px;
                  }


.cv-container {
                display: flex;
                justify-content: center;
                align-items: flex-start;
                gap: 60px;
                padding: 80px;
                background-color: rgba(255, 255, 255, 0.05);
                backdrop-filter: blur(15px);
                min-height: 100vh;
              }

.cv-left, .cv-right {
                      flex: 1;
                      background-color: rgba(255, 255, 255, 0.12);
                      border: 1px solid rgba(255, 255, 255, 0.25);
                      border-radius: 20px;
                      padding: 40px;
                    }

.cv-left {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100%;
          }

/* Bloc image */
.cv-photo {
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 20px;
            overflow: hidden;
            border-radius: 15px;
          }


.cv-photo img {
                width: 100%;
                height: auto;
                object-fit: cover;
                display: block;
                border-radius: 15px;
                max-width: 100%;
                flex-shrink: 0;
              }

.cv-container {
                align-items: flex-start !important;
              }



h1 {
      font-family: 'AvantGarde2';
      color: #283583;
      font-size: 4rem;
      line-height: 1;
    }

h2 {
    font-family: 'AvantGarde2';
    color: #283583;
    font-size: 1rem;
    line-height: 1;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
  }

h3 {
    font-family: 'AvantGarde2';
    font-size: 1.3rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: #ffffff;
  }

.cv-section {
              margin-bottom: 30px;
            }

.cv-section p, .cv-section li {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 8px;
}

ul {
  list-style: none;
  padding: 0;
}

a {
  color: #ffffff;
  text-decoration: underline;
  transition: 0.3s;
}

a:hover {
  color: #b5b5ff;
}

.skills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.skills li {
  background-color: rgba(255, 255, 255, 0.15);
  padding: 8px 15px;
  border-radius: 8px;
}

.highlight {
  font-family: 'AvantGarde2';
  font-style: italic;
}

@media (max-width: 900px) {
  .cv-container {
    flex-direction: column;
    padding: 40px 20px;
  }
}
