
/* navbar */
@import url('https://fonts.googleapis.com/css?family=Quicksand:400,500,700');

html,
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Quicksand", sans-serif;
    font-size: 62.5%;
    font-size: 10px;
    background-color: #ffffff;
    color: #1e1e1e;
}

/* Navbar section */
.nav {
    width: 100%;
    height: 80px;
    position: fixed;
    line-height: 65px;
    text-align: center;
    top: 0;
    z-index: 1000;
    background-color: #ffffff;
    border-bottom: 2px solid #ff9500;
    padding-top: 20px;
    padding-bottom: 20px;
    transition: all 0.4s ease;
}

.nav div.logo {
    float: left;
    width: auto;
    height: auto;
    padding-left: 3rem;
}

.nav div.logo a {
    text-decoration: none;
    color: #ff9500;
    font-size: 2.5rem;
}

.nav div.logo a:hover {
    color: #1e1e1e;
}

.nav div.main_list {
    height: 65px;
    float: right;
}

.nav div.main_list ul {
    width: 100%;
    height: 65px;
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav div.main_list ul li {
    width: auto;
    height: 65px;
    padding-right: 3rem;
}

.nav div.main_list ul li a {
    text-decoration: none;
    color: #ff9500;
    font-size: 2.4rem;
    line-height: 65px;
    display: inline-block;
}

.nav div.main_list ul li a:hover {
    color: #1e1e1e;
}

.navTrigger {
    cursor: pointer;
    width: 30px;
    height: 25px;
    margin: auto;
    position: absolute;
    right: 30px;
    top: 0;
    bottom: 0;
    display: none;
}

.navTrigger i {
    background-color: #ff9100;
    border-radius: 2px;
    content: '';
    display: block;
    width: 100%;
    height: 4px;
    margin: 6px 0;
}

.affix {
    padding: 0;
    background-color: #ffffff;
    border-bottom: 2px solid #ff9500;
}



/* Home section */
.home {
    width: 100%;
    height: 100vh;
    background-image: url("../img/test.png");
    background-position: center top;
    background-size: cover;
}

/* Hero image and overlay text */
.custom-image-container {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 100px;
}

.floating-image {
    position: absolute;
    top: 150px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.floating-image::after {
    content: "Votre texte";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

/* Marvel cards section */
.marvel-container {
    width: 100%;
    min-height: 100vh;
    padding: 50px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.marvel-container h1 {
    color: #ff9500;
    margin-bottom: 40px;
    font-size: 3rem;
    text-transform: uppercase;
}

.carousel-wrapper {
    width: 100%;
    padding: 20px 0;
    position: relative;
}

#autoWidth {
    display: flex;
    gap: 100px;
    margin-left: 100px;
    padding: 20px 40px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    list-style: none;
}
#autoWidth::-webkit-scrollbar {
    display: none;
}

.box {
    width: 70px;
    min-width: 230px;
    height: 300px;
    background: #f9f9f9;
    border: 2px solid #ff9500;
    border-radius: 10px;
    box-shadow: 2px 10px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    scroll-snap-align: start;
    transition: all 0.3s ease;
}

.box:hover {
    background-color: #fff3e0;
    transform: scale(1.02);
}

.box2 {
    margin-top: 40px;
    width: 1000px;
    min-width: 350px;
    height: 600px;
    background: #f9f9f9;
    border: 2px solid #ff9500;
    border-radius: 10px;
    box-shadow: 2px 10px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    scroll-snap-align: start;
    transition: all 0.3s ease;
}

.box2:hover {
    background-color: #fff3e0;
    transform: scale(1.02);
}
.marvel {
    color: #ff9500;
    font-weight: bold;
    letter-spacing: 2px;
    font-size: 25px;
    text-transform: uppercase;
}

.details p {
    font-family: 'Calibri', sans-serif;
    font-weight: bold;
    color: #ff9500;
    text-align: center;
    margin-top: 20px;
    line-height: 1.5;
}

.titre {
    font-size: 18px; margin-left: 440px; background: transparent;
}

.texteelec {
    font-size: 14px; margin-left: 310px; 
}

.logo-mobile {
    display: none;
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #ff9500;
    font-size: 24px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid;
    border-color: #ff9500;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.4);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.logo {
    height: 60px;
    width: auto;
    margin-bottom: 10px;
}

/* Buttons */


.btn {
    padding: 12px 20px;
    border: none;
    border-radius: 10px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    color: white;
    background-color: #ff9500;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #cc7a00;
}

/* footer */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.page-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto; 
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.content-wrapper {
    flex: 1; 
    padding: 20px;
}

.footer-distributed {
    background: #222;
    color: white;
    padding: 30px 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 30px;
}


/* fin footer */


.contact-buttons {
    display: flex;
    gap: 30px;
    margin-bottom: 0px;
    margin-left: 350px;
    /* margin-bottom: 44px; */
    /* justify-content: center; */
  }

  
  .btn {
    padding: 12px 20px;
    border: none;
    border-radius: 10px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    color: white;
    background-color: #ff9500;
    transition: background-color 0.3s ease;
  }
  
  .btn:hover {
    background-color: #0056b3;
  }
  
  .mail-btn {
    background-color: #ff9500;
  }
  
  .mail-btn:hover {
    background-color: #d8c302;
    transform: scale(1.1);
  }
  
  .phone-btn {
    background-color: #e7c478;
    border: 4px solid;
    border-color: #ff9500;
    border-style: double;
  }
  
  .phone-btn:hover {
    background-color: #e3bc3c;
    transform: scale(1.1);
  }
  .lien {
    background-color: #ff9500;
  }
  .lien:hover {
    background-color: #aa7b3a;
    transform: scale(1.1);
  }
  

  .textfinal {
    position: relative;
    height: 500px; 
    background-color: transparent;
  }
  
  .petittexte {
    text-align: center;
    font-size: 14px;
    color: #555;
    margin-top: 5px;
    margin-left: 740px;
    font-size: 12px;
  }
  
  .texte-place {
    position: absolute;
    top: 40px;   
    left: -100px;  
    font-size: 12px;
    color: #ff9500;
  }
  


  .separator {
    border: none;
    height: 2px;
    background-color: #ff9500; 
    margin: 40px 0; 
    width: 80%;     
  }

  .separa {
    width: 100%;
    height: 3px;
    background-color: #ff9500; 
    margin: 0 auto 40px auto;  
    border-radius: 2px;
  }
  

.quisommes {
    font-size: 15px;
    margin-top: 20px;
    width: 1250px;
    min-width: 350px;
    height: 500px;
    background: #f9f9f9;
    border: 2px solid #ff9500;
    border-radius: 10px;
    box-shadow: 2px 10px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    scroll-snap-align: start;
    transition: all 0.3s ease;
    text-align: center;
}
  
.textesommes {
    margin-top: 40px;
    font-size: 0,6rem;
}
  


/* pour téléphone */

@media (max-width: 768px) {
    .navTrigger {
        display: block;
    }
    .nav div.logo {
        margin-left: 15px;
    }
    .nav div.main_list {
        width: 100%;
        height: 0;
        overflow: hidden;
        transition: height 0.3s ease;
        background-color: #eaeaea;
        position: absolute;
        top: 80px;
        left: 0;
        z-index: 999;
    }
    .nav div.show_list {
        height: 100vh; 
        display: block;
    }
    .nav div.main_list ul {
        flex-direction: column;
        width: 100%;
        height: 100vh;
        background-color: #ffffff;
    }
    .nav div.main_list ul li a {
        font-size: 3rem;
        padding: 20px;
        text-align: center;
    }
    .nav {
        width: 100%;
        max-width: 400px;
        height: 80px;
        position: fixed;
        line-height: 65px;
        text-align: center;
        top: 0;
        z-index: 1000;
        background-color: #ffffff;
        border-bottom: 2px solid #ff9500;
        padding-top: 20px;
        padding-bottom: 20px;
        transition: all 0.4s ease;
    }
    html, body {
        overflow-x: hidden;
        width: 100%;
    }
    
    .box2 {
        margin-top: 40px;
        width: 350px;
        min-width: 350px;
        height: 600px;
        background: #f9f9f9;
        border: 2px solid #ff9500;
        border-radius: 10px;
        box-shadow: 2px 10px 12px rgba(0, 0, 0, 0.1);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        padding: 20px;
        scroll-snap-align: start;
        transition: all 0.3s ease;
        position: relative;
    }

    .quisommes {
        font-size: 0.9rem;
        margin-top: 20px;
        width: 350px;
        min-width: 350px;
        height: 430px;
        background: #f9f9f9;
        border: 2px solid #ff9500;
        border-radius: 10px;
        box-shadow: 2px 10px 12px rgba(0, 0, 0, 0.1);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        padding: 20px;
        scroll-snap-align: start;
        transition: all 0.3s ease;
        text-align: center;
    }  

    .textesommes {
        margin-top: 2px;
        font-size: 1rem;
    }

    #autoWidth {
        display: flex;
        gap: 70px;
        margin-left: 78px;
        padding: 20px 40px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
        list-style: none;
    }
    .titre {
        font-size: 1rem; margin-left: 150px; background: transparent;
    }
    .texteelec {
        font-size: 1rem; margin-left: 15px;
    }

    .logo-mobile {
        display: block;
        position: absolute;
        width: 120px;            
        border-radius: 13px;   
        margin-bottom: 30px;
        margin-left: 20px;
      }
      .contact-buttons {
        display: flex;
        position: absolute;
        gap: 15px;
        margin-left: 5px;
        margin-top: 500px;
      }
      .btn {
        padding: 12px 20px;
        border: none;
        border-radius: 8px;
        text-decoration: none;
        font-size: 1rem;
        font-weight: bold;
        color: white;
        background-color: #ff9500;
        transition: background-color 0.3s ease;
      }
}
/* fin téléphone */
