/*
  ========================================================
    THEME : Expression Digitale  (responsive optimisé)
  ========================================================
  Theme Name: Expression Digitale 
  Theme URI: https://expression-digitale.com/
  Author: The Expression
  Author URI: https://expression-digitale.com/
  Description: Votre agence digitale.
  Version: 1.1
  ========================================================
*/

@import url('https://fonts.googleapis.com/css2?family=TASA+Orbiter:wght@400..800&display=swap');

/*----------------------------------------------
  GENERAL ------------------- */

  body {
    background: #171717;
    font-family: "TASA Orbiter", sans-serif;
  }

  p {
    color:#fff;
  }

  a {
    text-decoration: none;
    color: #fff;
  }

  h1 {
    color:#fff;
    font-site:25px;
    text-transform: uppercase;
  }
  /* Container */
  .site-header .container,
  main.site-main,
  footer .footer-container  {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 40px;
  }

/*----------------------------------------------
  HEADER ------------------- */

  .site-header {
      padding: 20px 0;
      position: relative;
      z-index: 1000;
  }

  .header-inner {
      display: flex;
      align-items: center;
      justify-content: ;
  }

  .site-logo img {
      max-height: 40px;
      width: auto;
  }

  .main-nav {
      flex: 1;
      display: flex;
      margin-left:80px;
  }

  .main-nav .menu {
      display: flex;
      gap: 40px;
      list-style: none;
      margin: 0;
      padding: 0;
  }

  .main-nav .menu li a {
      color: #ffffff;
      text-decoration: none;
      font-size: 13px;
      letter-spacing: 2px;
      text-transform: uppercase;
      transition: opacity 0.3s ease;
  }

  .main-nav .menu li a:hover {
      opacity: 0.6;
  }

  .header-actions {
      display: flex;
      align-items: center;
      gap: 20px;
  }

  .header-social {
      display: flex;
      align-items: center;
      gap: 15px;
  }

  .header-social a {
      color: #ffffff;
      font-size: 16px;
      transition: opacity 0.3s ease;
      margin:0 5px;
  }

.header-social a:hover {
    opacity: 0.6;
}

/* Burger */
.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s ease;
}

/* Animation burger → croix */
.burger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ======================
   MOBILE
====================== */
@media (max-width: 1024px) {
  .main-nav {
    margin-left: 0;
  }
.header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
  }
    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #171717;

        display: flex;
        justify-content: center;
        align-items: center;

        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease, visibility 0.4s ease;
    }


      .main-nav.open {
        opacity: 1;
        visibility: visible;
    }

    /* Menu vertical */
    .main-nav .menu {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .main-nav .menu li a {
        font-size: 18px;
        letter-spacing: 3px;
    }

    /* Burger visible */
    .burger {
        display: flex;
    }

}
  /*----------------------------------------------
    FOOTER ------------------- */

    #site-footer {
      text-align: center;
      font-size: 14px;
    }

    #site-footer .footer-container{
      color: #B39E8D;
    }