@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@100&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Clicker+Script&family=Poppins:wght@200;300;400;500;600;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css');
*{
    margin: 0;
    padding: 0;
    font-family:'Poppins', sans-serif;
    box-sizing: border-box;
}

body{
    background: #000000;
    color: #fff;
}

.container{
    padding: 10px 10%;
}
nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.logo{
    width: 140px;
}
nav ul li{
    display: inline-block;
    list-style: none;
    margin: 10px 20px;
}
nav ul li a{
    color:#fff;
    text-decoration: none;
    font-size: 18px;
    position: relative;
}
nav ul li a::after{
    content: '';
    width: 0;
    height: 3px;
    background: #ff004f;
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: 0.5s;
}

nav ul li a:hover::after{
    width: 100%;
}

.header-text{
    margin-top: 20%;
    font-size: 30px;
}

.header-text h1{
    font-size: 60px;
    margin-top: 20px;
}
.header-text h1 span{
    color:#ff004f ;
}

/*-------------------Footer-------------------*/
.contact-left p{
    margin-top: 30px;
}
.contact-left p i{
    color: #ff004f;
    margin-right: 15px;
    font-size: 25px;
}
.social-icons{
    margin-top: 30px;
}
.social-icons a{
    text-decoration: none;
    font-size: 30px;
    margin-right: 15px;
    color: #ababab;
    display: inline-block;
    transition: 0.3s;
}
.social-icons a:hover{
    color: #ff004f;
    transform: translateY(-5px);
}
.btn.btn2{
    display: inline-block;
    background: #ff004f;
}
.footer {
    background-color: #282a2c;
    color: white;
    padding: 30px 0;
    text-align: center;
  }
  
  .footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  
  .footer-section {
    flex: 1 1 200px;
    margin-bottom: 20px;
  }
  
  .footer-heading {
    color: #ff004f;
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .footer-links {
    list-style: none;
    padding: 0;
  }
  
  .footer-links li {
    margin-bottom: 10px;
  }
  
  .footer-links a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease, transform 0.2s ease;
  }
  
  .footer-links a:hover {
    transform: scale(1.05);
    font-weight: bold;
  }
  
  .contact .social-icons {
    margin-top: 10px;
    margin-bottom: 20px;
  }
  
  .contact .social-icons a {
    color: white;
    margin: 0 10px;
    font-size: 24px;
  }
  
  .contact .social-icons a:hover {
    color: #ff004f;
  }
  
  .contact .btn2 {
    background-color: #ff004f;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    margin-top: 20px;
    transition: background 0.3s ease, transform 0.2s ease;
  }
  
  .contact .btn2:hover {
    transform: scale(1.05)
  }
  
  .footer-divider {
    border: 0;
    border-top: 1px solid #ecf0f1;
    margin: 20px 0;
  }
  
  .footer-copy {
    font-size: 14px;
    margin-top: 20px;
  }

/*-------------------Footer-------------------*/

/* Styles responsifs pour le header et le footer */
@media screen and (max-width: 768px) {
    nav {
        padding: 10px 0;
    }

    .logo {
        width: 120px;
        height: auto;
    }

    .menu-toggle {
        display: block;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 100;
    }

    nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--bg-color);
        padding-top: 60px;
        transition: 0.3s ease;
        z-index: 99;
    }

    nav ul.show {
        right: 0;
    }

    nav ul li {
        display: block;
        margin: 20px 0;
    }

    nav ul li a {
        font-size: 18px;
        padding: 10px 20px;
    }

    .header-text {
        padding: 100px 0;
    }

    .header-text h1 {
        font-size: 40px;
    }

    .header-text p {
        font-size: 16px;
    }

    .social-icons {
        margin: 20px 0;
    }

    .social-icons a {
        margin: 0 10px;
        font-size: 18px;
    }

    .btn2 {
        padding: 10px 25px;
        font-size: 16px;
    }
}

@media screen and (max-width: 480px) {
    .logo {
        width: 100px;
    }

    .header-text h1 {
        font-size: 32px;
    }

    .header-text p {
        font-size: 14px;
    }

    .social-icons a {
        font-size: 16px;
    }

    .btn2 {
        padding: 8px 20px;
        font-size: 14px;
    }

    .footer {
        padding: 40px 0;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .footer-section {
        width: 100%;
        text-align: center;
    }

    .footer-heading {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .footer-links {
        font-size: 14px;
    }

    .footer-links li {
        margin: 8px 0;
    }

    .social-icons {
        justify-content: center;
    }

    .social-icons a {
        margin: 0 8px;
        font-size: 16px;
    }

    .footer-copy {
        font-size: 12px;
        text-align: center;
    }
}

@media screen and (max-width: 320px) {
    .logo {
        width: 80px;
    }

    .header-text h1 {
        font-size: 28px;
    }

    .header-text p {
        font-size: 12px;
    }

    .social-icons a {
        font-size: 14px;
    }

    .btn2 {
        padding: 6px 15px;
        font-size: 12px;
    }

    .footer-heading {
        font-size: 16px;
    }

    .footer-links {
        font-size: 12px;
    }

    .social-icons a {
        font-size: 14px;
    }

    .footer-copy {
        font-size: 10px;
    }
}

