/* intégration des typos */
@font-face {
    font-family: "Helvetica";
    src: url("../../font/Helvetica.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}
  
@font-face {
    font-family: "Helvetica-Bold";
    src: url("../../font/Helvetica-Bold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
}
  
@font-face {
    font-family: "Helvetica-Oblique";
    src: url("../../font/Helvetica-Oblique.ttf") format("truetype");
    font-weight: normal;
    font-style: italic;
}
  
@font-face {
    font-family: "Helvetica-BoldOblique";
    src: url("../../font/Helvetica-BoldOblique.ttf") format("truetype");
    font-weight: bold;
    font-style: italic;
}

body {
    margin: 0;
    font-family: Helvetica, sans-serif;
}

/* header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    height: 100px;
}

.logo-container {
    flex: 1;
}

.logo {
    height: 110px;
    width: auto;
}

.navigation {
    flex: 2;
    display: flex;
    justify-content: flex-end;
    gap: 50px;
}

.nav-link {
    text-decoration: none;
    font-size: 25px;
    color: #000;
    position: relative;
    margin-right: 50px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #000;
    transition: width 0.3s ease-in-out, left 0.3s ease-in-out;
}

.nav-link:hover::after {
    width: 100%;
}







.design-section {
    width: 95%;
    margin: 50px auto;
}
.small-title {
    font-size: 30px;
    font-weight: normal;
    text-transform: uppercase;
    margin-bottom: 50px;
}
.content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.big-title {
    margin-top: 50px;
    font-size: 150px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 50px;
}
.text {
    margin-top: -50px;
    width: 35%;
    font-size: 25px;
    line-height: 1.2;
}
.mockup-section,
.brandboard-section {
    margin-top: 100px;
    display: flex;
    flex-direction: column;
}
.mockup-title,
.brandboard-title {
    font-size: 24px;
    font-weight: normal;
    text-transform: uppercase;
    margin-bottom: 5px;
    text-align: left;
    margin-left: 4%; /* Aligne avec la première image */
}
.mockup-images {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.mockup-images img {
    width: 30%;
    height: 30vw; /* Force un format carré en fonction de la largeur de l'écran */
    object-fit: cover;
}
.brandboard-image {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.brandboard-image img {
    width: 94%; /* Prend la largeur des 3 images mockup combinées avec les gaps */
    height: auto;
}

.brandboard-section{
    margin-bottom: 50px;
}





  /* Footer */
  .footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 40px 0;
    font-family: Arial, sans-serif;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .footer-section {
    flex: 1 1 250px;
    margin: 20px;
  }
  
  .footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
    text-transform: uppercase;
  }
  
  .footer-section p,
  .footer-section ul {
    font-size: 14px;
    line-height: 1.8;
  }
  
  .footer-section ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-section ul li {
    margin-bottom: 10px;
  }
  
  .footer-section ul li a {
    color: #ecf0f1;
    text-decoration: none;
  }
  
  .footer-section ul li a:hover {
    text-decoration: underline;
  }
  
  .social-links a {
    color: #ecf0f1;
    margin-right: 15px;
    font-size: 20px;
    transition: color 0.3s;
  }
  
  .social-links a:hover {
    color: #ffffff;
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid rgba(173, 216, 230, 0.5);
    padding-top: 20px;
    font-size: 14px;
  }


@media (max-width: 768px) {
    /* header */
    .header {
        padding: 10px 15px;
        height: 60px;
    }

    .logo-container {
        flex: none;
        margin-right: 10px;
    }

    .logo {
        height: 40px;
        width: auto;
    }

    .burger-menu {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 25px;
        height: 18px;
        cursor: pointer;
        margin-left: auto;
    }

    .burger-menu span {
        display: block;
        height: 2px;
        width: 100%;
        background-color: #000;
        border-radius: 2px;
        transition: all 0.3s ease-in-out;
    }

    .navigation {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        background-color: #fff;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        width: 100%;
        z-index: 10;
        padding: 15px 20px;
    }

    .nav-link {
        text-decoration: none;
        font-size: 18px;
        color: #000;
        margin-bottom: 15px;
        text-align: center;
        margin-left: 100px;
    }

    .nav-link:last-child {
        margin-bottom: 0;
    }

    .burger-menu.active span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .navigation.active {
        display: flex;
    }







    .content {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        padding: 0 5%; /* Ajoute un espace entre le texte et le bord */
    }
    .big-title {
        font-size: 70px; /* Réduction de la taille du titre pour mobile */
        margin-top: 20px;
    }
    .text {
        width: 90%;
        font-size: 22px;
        margin-top: 20px;
    }
    .mockup-images {
        flex-direction: column;
        align-items: center;
    }
    .mockup-images img {
        width: 90%;
        height: 90vw; /* Force un format carré en mobile aussi */
        object-fit: cover;
    }







    /* footer */
    .footer-section p  {
        color: #ecf0f1;
        text-decoration: none;
      }
}