/*
Theme Name: La Chica WordPress
Author: Marouane
Version: 1.0
Description: Thème WordPress personnalisé LA CHICA
Text Domain: la-chica
*/
/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #0a0a0a;
    color: #fff;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: rgba(0,0,0,0.9);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.logo {
    font-weight: 800;
    font-size: 25px;
    letter-spacing: 3px;
    color: black;
    position: relative;
    cursor: pointer;
     text-shadow:
        0 0 5px #c8ff00,
        0 0 10px #c8ff00,
        0 0 20px #9cff00,
        0 0 50px rgba(156, 255, 0, 0.6);

    animation: neonPulse 2s infinite alternate;
}
/* ANIMATION GLOW */
@keyframes neonPulse {
    0% {
        text-shadow:
            0 0 5px #c8ff00,
            0 0 10px #c8ff00,
            0 0 20px #9cff00,
            0 0 70px rgba(156, 255, 0, 0.4);
    }

    100% {
        text-shadow:
            0 0 10px #c8ff00,
            0 0 20px #c8ff00,
            0 0 40px #9cff00,
            0 0 70px rgba(156, 255, 0, 0.8);
    }
}


.nav-links {
  
    display: flex;
    gap: 48px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #c8ff00;
}
.nav-links .active {
    color: #c8ff00;
}
.icons a {
    font-size: 20px;
    text-decoration: none;
}

/* BURGER */
.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

/* SIDE MENU */
.side-menu {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100%;
    background: #111;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: 0.4s;
    z-index: 999;
}

.side-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
}

.side-menu.active {
    left: 0;
}

/* OVERLAY */
.overlay-bg {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    top: 0;
    left: 0;
    display: none;
    z-index: 998;
}

.overlay-bg.active {
    display: block;
}

/* HERO */
.hero {
    height: 100vh;
    background: url('assets/hero1.png') top/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    
}

.hero-content {
    margin-top: 22%;
    position: relative;
    text-align: center;
}

.hero h1 {
    font-family: 'Audiowide', cursive;
    font-size: 50px;
    letter-spacing: 3px;
    color: #000000;
    text-shadow:
        0 0 5px #ffffff,
        0 0 10px #ffffff,
        0 0 20px #ffffff,
        0 0 50px rgba(255, 246, 246, 0.6);
}

.hero p {
    font-family: 'Audiowide', cursive;
    margin: 15px 0;
    color: #000000;
    
}

.hero button {
    padding: 12px 30px;
    border: none;
    background: #000000;
    color: #ffffff;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s;
}

.hero button:hover {
    background: #c8ff00;
}

/* PRODUCTS */
.products {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.card {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 20px;
    width: 260px;
    text-align: center;
    transition: 0.3s;
    border: 1px solid rgba(255,255,255,0.05);
}

.card:hover {
    transform: translateY(-10px);
    border: 1px solid #c8ff00;
    box-shadow: 0 0 15px rgba(200, 255, 0, 0.4);
}

.card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 15px;
}

.card h3 {
    margin-bottom: 10px;
}

.card p {
    color: #c8ff00;
    margin-bottom: 15px;
    font-weight: bold;
}

.card button {
    padding: 10px 20px;
    border: none;
    background: #c8ff00;
    color: #000;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: 0.3s;
}

.card button:hover {
    background: #fff;
}
/* ===== ACTIONS ===== */

.card-actions{
    display: flex;
    align-items: left;
    justify-content: left;
    gap: 10px;
    margin-top: 25px;
    width: 100%;
   
}

/* ===== BTN AJOUTER ===== */

.btn-ajouter{
    flex: 1;
    height: 68px;

    border: none;
    border-radius: 50px;

    background: #c6ff00;
    color: #000;

    font-size: 1.4rem;
    font-weight: 700;

    cursor: pointer;

    transition: .3s ease;
    
    box-shadow:
    0 0 20px rgba(198,255,0,.25);
}

.btn-ajouter:hover{
    transform: translateY(-3px);

    background: #d7ff43;

    box-shadow:
    0 0 28px rgba(198,255,0,.4);
}

/* ===== QUANTITY BOX ===== */

.quantity-box{
    flex: 1;
    height: 32  px;

     margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 25px;

    

    background: rgba(255,255,255,.03);

    box-shadow:
    0 0 20px rgba(198,255,0,.08);
}

/* ===== +/- ===== */

.qty-btn{
    background: transparent;
    border: none;
    margin-left: 0px;
    color: #c6ff00;

    font-size: 10px;
    font-weight: 500;

    cursor: pointer;

    transition: .2s ease;
}

.qty-btn:hover{
    transform: scale(1.15);
    color: #e2ff71;
}

/* ===== NUMBER ===== */

.qty-number{
    color: white;

    font-size: 1.5rem;
    font-weight: 600;

    min-width: 10px;
    text-align: center;
}

/* FEATURES */
.features {
    width: 100%;
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    color: #aaa;
    font-size: 14px;
}

.features div {
    padding: 10px 20px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 25px;
}

/* MOBILE */
@media (max-width: 768px) {

    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 32px;
    }

    .products {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 90%;
    }
}
/* POPUP BACKGROUND */
.popup{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.8);
    justify-content:center;
    align-items:center;
    z-index:999;
}

/* POPUP BOX */
.popup-content{
    background:#111;
    color:white;
    width:400px;
    padding:30px;
    border-radius:20px;
    border:2px solid #b6ff00;
    box-shadow:0 0 20px #b6ff00;
    position:relative;
    animation:popupAnim 0.3s ease;
    
}

/* ANIMATION */
@keyframes popupAnim{
    from{
        transform:scale(0.7);
        opacity:0;
    }
    to{
        transform:scale(1);
        opacity:1;
    }
}

/* CLOSE BUTTON */
.close{
    position:absolute;
    top:15px;
    right:20px;
    font-size:30px;
    cursor:pointer;
    color:#b6ff00;
}

.close:hover{
    transform:scale(1.2);
}

/* TITRE */
.popup-content h2{
    color:#b6ff00;
    margin-bottom:15px;
}
/* ===== FOOTER LA CHICA ===== */

.footer {
    background: #0d0d0d;
    color: white;
    padding: 60px 10%;
    border-top: 1px solid rgba(0,255,120,0.2);
    margin-top: 80px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
}

.footer-brand h2 {
    font-size: 32px;
    color: #000000;
    text-shadow:
        0 0 5px #c8ff00,
        0 0 10px #c8ff00,
        0 0 20px #9cff00,
        0 0 50px rgba(156, 255, 0, 0.6);
    margin-bottom: 15px;
}

.footer-brand p {
    color: #bdbdbd;
    max-width: 300px;
    line-height: 1.7;
}

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
}

.footer-links h3,
.footer-contact h3 {
    margin-bottom: 20px;
    color: #9cff00;
}

.footer-links a,
.footer-contact a {
    color: #ccc;
    text-decoration: none;
    margin-bottom: 12px;
    transition: 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #00ff88;
    text-shadow: 0 0 8px #00ff88;
    transform: translateX(5px);
}

.footer-contact p {
    color: #bdbdbd;
    margin-bottom: 10px;
}

.socials {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    color: #777;
    font-size: 14px;
}

/* ===== RESPONSIVE ===== */

@media(max-width: 768px) {
    .footer-container {
        flex-direction: column;
    }
}
/* ===== HERO SLIDER LA CHICA ===== */

.hero-slider {
    position: relative;
    width: 100%;
    height: 680px;
    overflow: hidden;
    background: #050505;
}

.slides {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Flèches */

.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    color: #8aff00;
    border: 1px solid #8aff00;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    z-index: 5;
    transition: 0.3s;
}

.prev:hover,
.next:hover {
    background: #8aff00;
    color: black;
    box-shadow: 0 0 20px #8aff00;
}

.prev {
    left: 30px;
}

.next {
    right: 30px;
}

/* Points */

.dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 6;
}

.dot {
    width: 13px;
    height: 13px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0.6;
}

.dot.active {
    background: #8aff00;
    opacity: 1;
    box-shadow: 0 0 12px #8aff00;
}

/* ===== CARTES PUB ===== */

.promo-cards {
    background: #050505;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    padding: 35px 5%;
}

.promo-card {
    background: linear-gradient(135deg, #0b0b0b, #102000);
    border: 1px solid rgba(138,255,0,0.4);
    border-radius: 18px;
    padding: 30px;
    color: white;
    min-height: 190px;
    transition: 0.3s;
}

.promo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 25px rgba(138,255,0,0.35);
}

.promo-card h3 {
    color: white;
    font-size: 26px;
    margin-bottom: 10px;
}

.promo-card p {
    color: #ddd;
    font-size: 16px;
    margin-bottom: 25px;
}

.promo-card a {
    color: #8aff00;
    border: 1px solid #8aff00;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
}

.promo-card a:hover {
    background: #8aff00;
    color: black;
}

/* Responsive */

@media(max-width: 992px) {
    .hero-slider {
        height: 480px;
    }

    .promo-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 600px) {
    .hero-slider {
        height: 350px;
    }

    .promo-cards {
        grid-template-columns: 1fr;
    }

    .prev,
    .next {
        width: 42px;
        height: 42px;
        font-size: 22px;
    }
}
/* ===== ABOUT SECTION ===== */

.about-section{
    width: 100%;
    min-height: 100vh;
    background: #050505;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 8%;
    gap: 60px;
    overflow: hidden;
}

/* IMAGE */

.about-left{
    width: 45%;
}

.about-left img{
    width: 100%;
    height: 700px;
    border-radius: 25px;
    border: 2px solid rgba(138,255,0,0.2);
    box-shadow: 0 0 35px rgba(138,255,0,0.15);
}

/* TEXTE */

.about-right{
    width: 50%;
    color: white;
}

.about-mini{
    color: #8aff00;
    letter-spacing: 5px;
    font-size: 18px;
    font-weight: bold;
}

.about-right h2{
    font-size: 75px;
    line-height: 75px;
    margin: 20px 0;
    font-weight: 900;
}

.about-right p{
    color: #d6d6d6;
    font-size: 20px;
    line-height: 38px;
    margin-bottom: 25px;
}

.about-right p span{
    color: #8aff00;
    font-weight: bold;
}

/* FEATURES */

.about-features{
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.about-box{
    background: linear-gradient(135deg,#0a0a0a,#112200);
    border: 1px solid rgba(138,255,0,0.3);
    padding: 25px;
    border-radius: 18px;
    color: white;
    min-width: 180px;
    font-size: 24px;
    transition: 0.4s;
}

.about-box span{
    display: block;
    margin-top: 15px;
    font-size: 16px;
}

.about-box:hover{
    transform: translateY(-8px);
    box-shadow: 0 0 25px rgba(138,255,0,0.3);
    border-color: #8aff00;
}

/* RESPONSIVE */

@media(max-width: 1000px){

    .about-section{
        flex-direction: column;
    }

    .about-left,
    .about-right{
        width: 100%;
    }

    .about-right h2{
        font-size: 50px;
        line-height: 50px;
    }

}
/* ===== BANDE DÉFILANTE INFINIE ===== */

.marquee{
    width: 100%;
    height: 50px;
    overflow: hidden;
    background: #8aff00;
    padding: 18px 0;
    border-top: 2px solid #b7ff52;
    border-bottom: 2px solid #b7ff52;
    box-shadow: 0 0 25px #8aff00;
    position: relative;
      display: flex;
    justify-content: center;
    align-items: center;
}

.marquee-content{
    display: flex;
    width: max-content;
    animation: marqueeLoop 25s linear infinite;
     text-align: center;
}

.marquee-content span{
    white-space: nowrap;
    color: black;
    text-shadow:
        0 0 5px #ffffff,
        0 0 10px #ffffff,
        0 0 20px #ffffff,
        0 0 50px rgba(255, 246, 246, 0.6);
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 2px;
    padding-right: 80px;
}

/* BOUCLE INFINIE */

@keyframes marqueeLoop{

    0%{
        transform: translateX(0);
    }

    100%{
        transform: translateX(-50%);
    }

}
/* ===== BADGE BIO ===== */

.bio-badge{
    position: absolute;

    right: 70px;
    top: 850px;

    z-index: 100;
}

.bio-badge img{

    width: 150px;

    filter:
    drop-shadow(0 0 15px #8aff00)
    drop-shadow(0 0 35px rgba(138,255,0,0.5));

    animation: bioPulse 2.5s infinite ease-in-out;
}

/* ANIMATION */

@keyframes bioPulse{

    0%{
        transform: scale(1);
    }

    50%{
        transform: scale(1.05);
    }

    100%{
        transform: scale(1);
    }

}

/* MOBILE */

@media(max-width:768px){

    .bio-badge{

        right: 15px;
        top: 90px;
    }

    .bio-badge img{
        width: 95px;
    }

}
