/*
Theme Name: La Chica
Author: Marouane
Version: 1.0
Description: Thème WordPress personnalisé LA CHICA
*/
/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #0f0f0f;
    color: #fff;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: rgba(0,0,0,0.9);
    border-bottom: 1px solid rgba(255,255,255,0.1);
	margin-top : absolute;
}

.logo {
    font-weight: 800;
    font-size: 25px;
    letter-spacing: 3px;
    color: black;
    position: relative;
    cursor: pointer;
    text-decoration: none;
    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 a {
    margin: 0 15px;
    text-decoration: none;
    color: #ccc;
    transition: 0.3s;
    font-size: 15px;
}

.nav-links a:hover {
    color: #c8ff00;
}
.nav-links .active {
    color: #c8ff00;
}

.icons .cart {
    font-size: 22px;
    cursor: pointer;
    transition: 0.3s;
}

.icons .cart:hover {
    transform: scale(1.2);
}

/* SECTION */
.collections-luxe {
    padding: 60px 40px;
    text-align: center;
}

/* TITLES */
.title {
    font-size: 40px;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.subtitle {
    color: #aaa;
    margin-bottom: 50px;
}

/* CARDS */
.cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.card {
    position: relative;
    width: 300px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: 0.4s;
}

.card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: 0.4s;
}

.card:hover img {
    transform: scale(1.1);
}

/* OVERLAY CONTENT */
.card .content {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    text-align: left;
}

.card h2 {
    font-size: 18px;
    margin-bottom: 10px;
}

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

.card button:hover {
    background: #fff;
}

/* FEATURES */
.features {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    color: #ccc;
    font-size: 14px;
}

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

.features div:hover {
    color: #c8ff00;
    border-color: #c8ff00;
}

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

    .navbar {
        padding: 20px;
        flex-direction: column;
        gap: 15px;
    }

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

    .card {
        width: 90%;
    }
}
/* FIX PAGE COLLECTION WORDPRESS */


.collections-luxe {
    width: 100% !important;
    min-height: 100vh !important;
    padding: 120px 40px 70px !important;
    margin: 0 auto !important;
    text-align: center !important;
}

.collections-luxe .cards {
    max-width: 1100px !important;
    margin: 50px auto 0 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: stretch !important;
    gap: 30px !important;
    flex-wrap: wrap !important;
}

.collections-luxe .card {
    width: 300px !important;
    height: 420px !important;
}

.collections-luxe .card img {
    width: 100% !important;
    height: 280px !important;
    object-fit: cover !important;
    display: block !important;
}

.collections-luxe .card .content {
    position: relative !important;
    padding: 18px !important;
    background: #111 !important;
    text-align: left !important;
}

.collections-luxe .btn-discover {
    display: inline-block !important;
    margin-top: 12px !important;
    padding: 10px 25px !important;
    background: #c8ff00 !important;
    color: #000 !important;
    text-decoration: none !important;
    border-radius: 30px !important;
    font-weight: 800 !important;
}
/* ===== FIX STRUCTURE COLLECTION ===== */

.collection-page {
    width: 100%;
    min-height: 100vh;
    padding-top: 120px;
    background: #000;
}

.collections-luxe {
    width: 100%;
    padding: 60px 40px 80px !important;
    margin: 0 auto !important;
    text-align: center !important;
}

.collections-luxe .title {
    font-size: 46px !important;
    letter-spacing: 6px;
    margin-bottom: 15px;
}

.collections-luxe .subtitle {
    color: #aaa;
    margin-bottom: 60px;
}

.collections-luxe .cards {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto !important;
    display: flex !important;
    justify-content: center !important;
    align-items: stretch !important;
    gap: 35px !important;
    flex-wrap: wrap !important;
}

.collections-luxe .card {
    width: 320px !important;
    height: 430px !important;
    background: #181818 !important;
    border-radius: 22px !important;
    padding: 18px !important;
    overflow: hidden !important;
    position: relative !important;
    text-align: left !important;
}

.collections-luxe .card img {
    width: 100% !important;
    height: 260px !important;
    object-fit: cover !important;
    border-radius: 16px !important;
    display: block !important;
}

.collections-luxe .card .content {
    position: relative !important;
    padding: 18px 5px 0 !important;
    background: transparent !important;
}

.collections-luxe .card h2 {
    font-size: 23px !important;
    line-height: 1.3 !important;
    margin-bottom: 20px !important;
    color: #fff !important;
}

.collections-luxe .btn-discover {
    display: inline-block !important;
    background: #c8ff00 !important;
    color: #000 !important;
    padding: 12px 28px !important;
    border-radius: 30px !important;
    font-weight: 800 !important;
    text-decoration: none !important;
}

.collections-luxe .features {
    max-width: 1100px;
    margin: 70px auto 0 !important;
    display: flex !important;
    justify-content: center !important;
    gap: 30px !important;
    flex-wrap: wrap !important;
}

/* MOBILE */
@media (max-width: 768px) {
    .collection-page {
        padding-top: 100px;
    }

    .collections-luxe {
        padding: 40px 15px 60px !important;
    }

    .collections-luxe .title {
        font-size: 32px !important;
    }

    .collections-luxe .cards {
        flex-direction: column !important;
        align-items: center !important;
    }

    .collections-luxe .card {
        width: 92% !important;
        max-width: 360px !important;
        height: auto !important;
    }

    .collections-luxe .features {
        flex-direction: column !important;
        align-items: center !important;
    }

    .collections-luxe .features div {
        width: 90%;
        text-align: center;
    }
}