/*
Theme Name: La Chica
Author: Marouane
Version: 1.0
Description: Thème WordPress personnalisé LA CHICA
*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #0a0a0a;
    color: #fff;
}

/* HEADER */
.header {
    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);
}

/* 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;
     text-decoration: none;
    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: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #ccc;
    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;
}

.header nav a {
    margin: 0 12px;
    text-decoration: none;
    color: #ccc;
    transition: 0.3s;
}

.header nav a:hover {
    color: #c8ff00;
}

/* CONTACT SECTION */
.contact {
    max-width: 900px;
    margin: auto;
    padding: 70px 30px;
    text-align: center;
}

.contact h1 {
    font-size: 42px;
    letter-spacing: 3px;
    margin-bottom: 40px;
}

/* FORM */
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
    margin: auto;
}

form input,
form textarea {
    padding: 15px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    background: #111;
    color: #fff;
    outline: none;
    transition: 0.3s;
}

form input:focus,
form textarea:focus {
    border-color: #c8ff00;
}

/* BUTTON */
form button {
    padding: 12px;
    border: none;
    background: #c8ff00;
    color: #000;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: 0.3s;
}

form button:hover {
    background: #fff;
    transform: scale(1.03);
}

/* FEATURES */
.features {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    font-size: 14px;
    color: #aaa;
}

.features div {
    padding: 10px 20px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 25px;
    transition: 0.3s;
}

.features div:hover {
    border-color: #c8ff00;
    color: #c8ff00;
}

/* MOBILE */
@media (max-width: 768px) {

    .header {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .contact h1 {
        font-size: 30px;
    }

    form {
        width: 90%;
    }

    .features {
        flex-direction: column;
        align-items: center;
    }
}