/* NAVBAR GLOBALE */
/* --- NAVBAR --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(270deg, #f8b7d4, #cbb4f3, #fbc2eb, #cbb4f3);
    background-size: 800% 800%;
    padding: 15px 20px;
    color: white;
    position: relative;
    animation: gradientMove 15s ease infinite;
    border-radius: 20px; /* <-- arrondi des coins */
}


 
 body {
    margin: 20px; /* espace autour de la navbar */
    font-family: Arial, sans-serif;
    background: #f5f5f5;
}


/* Animation du gradient */
@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}



/* LOGO */

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo svg {
    display: block;
    animation: rotateLogo 3s linear infinite;
}

/* Animation rotation avec pause */
@keyframes rotateLogo {
    0%   { transform: rotate(0deg); }
    70%  { transform: rotate(360deg); } /* rotation complète */
    100% { transform: rotate(360deg); } /* pause avant de recommencer */
}



/* MENU BURGER */
.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* CONTAINER NAV */
.nav-container {
    display: flex;
    align-items: center;
    gap: 25px;
}

/* LIENS */
.nav-links {
    display: flex;
    gap: 20px;
    list-style: none;
}

/* Style par défaut des liens */
.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 12px; /* espace autour du texte pour le border */
    border-radius: 8px; /* coins arrondis pour l’encadrement */
    transition: all 0.3s ease; /* transition douce */
}

/* Lien au survol */
.nav-links a:hover {
    text-decoration: none;
    color: #ff4b6e; /* rose indien */
    background: rgba(255, 75, 110, 0.2); /* léger fond au survol */
}

/* Lien actif */
.nav-links a.active {
    color: #ff4b6e; /* texte rose indien */
    border: 2px solid #ff4b6e; /* encadrement rose indien */
    background: rgba(255, 75, 110, 0.1); /* léger fond pastel */
}


/* BARRE DE RECHERCHE */
.search-bar {
    display: flex;
    background: white;
    border-radius: 20px;
    overflow: hidden;
}

.search-bar input {
    border: none;
    padding: 8px 12px;
    outline: none;
    width: 150px;
}

.search-bar button {
    background: #e69bc9;
    color: white;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-bar button:hover {
    background: #d88ec0;
}



/* RESPONSIVE MODE */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    

    /* NAV CONTAINER ANIMÉ (SLIDE DOWN) */
.nav-container {
    max-height: 0;
    overflow: hidden;
    flex-direction: column;
    background: linear-gradient(180deg, #f8b7d4, #cbb4f3);
    width: 100%;
    position: absolute;
    top: 65px;
    left: 0;
    text-align: center;
    gap: 15px;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0;
}

.nav-container.active {
    max-height: 300px;
    padding: 20px 0;
}


        


    .nav-links {
        flex-direction: column;
        gap: 10px;
    }

    .search-bar input {
        width: 120px;
    }
}

/* Carousel plein écran avec coins arrondis */
.carousel {
    position: relative;
    width: 90vw;       /* laisse un peu d’espace autour */
    height: 90vh;      /* prend presque toute la fenêtre */
    margin: 20px auto;
    overflow: hidden;
    border-radius: 30px;  /* coins arrondis */
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.carousel-inner {
    display: flex;
    transition: transform 0.8s ease-in-out;
    height: 100%;
}

.carousel-item {
    min-width: 100%;
    height: 100%;
    position: relative;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;  /* image bien visible */
    border-radius: 30px;
}

/* Texte sur les images */
.carousel-caption {
    position: absolute;
    bottom: 50px;
    left: 50px;
    color: white;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.carousel-caption h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.carousel-caption button {
    padding: 10px 20px;
    background: #ff4b6e;
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
}

.carousel-caption button:hover {
    background: #e6395e;
}

/* Boutons de contrôle */
.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.5);
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 32px;
    transition: background 0.3s;
    z-index: 10;
}

.carousel-control:hover {
    background: rgba(255,255,255,0.8);
}

.carousel-control.prev {
    left: 20px;
}

.carousel-control.next {
    right: 20px;
}


/* Section Clothes */
.clothes-section {
    padding: 50px 20px;
    background: #f5f5f5;
    text-align: center;
}

.clothes-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #ff4b6e;
}

/* Container des cards */
.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* Card */
.card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    padding: 20px;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
}

/* Image */
.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 15px;
}

/* Titre */
.card h3 {
    margin-bottom: 15px;
    color: #333;
}

/* Barre de prix améliorée */
.price-bar {
    width: 100%;
    height: 20px;
    background: #eee;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.price-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff4b6e, #ff758f);
    text-align: right;
    padding-right: 5px;
    color: white;
    font-weight: bold;
    line-height: 20px;
    transition: width 0.5s ease;
}

/* Slider quantité */
.quantity-slider {
    width: 100%;
    height: 10px;
    -webkit-appearance: none;
    background: #eee;
    border-radius: 10px;
    outline: none;
    margin-top: 5px;
    margin-bottom: 10px;
}

.quantity-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: #4bc0c8;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.quantity-slider::-webkit-slider-thumb:hover {
    background: #33a1a9;
}

.quantity-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: #4bc0c8;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

label {
    display: block;
    text-align: left;
    margin-bottom: 5px;
    color: #555;
    font-weight: bold;
}

.shoes-section {
    padding: 50px 20px;
    background: #fff; /* fond blanc pour différencier */
    text-align: center;
}

.shoes-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #4bc0c8; /* bleu pastel pour Shoes */
}

.accessories-section {
    padding: 50px 20px;
    background: #f0f0f5; /* fond léger gris clair */
    text-align: center;
}

.accessories-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #ffb347; /* couleur orange pastel pour Accessories */
}

/* --- INTRO SECTION --- */
.intro {
    text-align: center;
    margin-top: 80px;
    margin-bottom: 50px;
    animation: fadeSlideIn 1.5s ease-out forwards;
    opacity: 0;
}

.intro-title {
    font-size: 48px;
    font-weight: bold;
    color: #ff4b6e;
    animation: slowZoom 3s ease-out forwards;
}

.intro-title span {
    color: #c85ed6; /* joli violet pastel */
}

.intro-subtitle {
    margin-top: 10px;
    font-size: 24px;
    color: #8a8a8a;
    animation: fadeIn 2s ease-out forwards;
}

/* --- Animations --- */
@keyframes fadeSlideIn {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slowZoom {
    0% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}


.region-select {
    margin: 30px auto;
    text-align: center;
    font-family: Arial, sans-serif;
}

.region-select label {
    font-size: 20px;
    font-weight: bold;
    color: #ff4b6e;
    margin-right: 10px;
}

.region-select select {
    padding: 10px 15px;
    border-radius: 12px;
    border: 2px solid #ffc4ff;
    background: #ffe5f7;
    font-size: 16px;
    outline: none;
    transition: 0.3s ease;
    cursor: pointer;
}

/* Effet au focus */
.region-select select:focus {
    border-color: #ff9dff;
    box-shadow: 0 0 10px rgba(255, 157, 255, 0.6);
}

/* Effet au survol */
.region-select select:hover {
    background: #ffd5f1;
}


.contact-section {
    text-align: center;
    padding: 50px 20px;
    background: #ffe5f7;
    border-radius: 20px;
    margin: 50px auto;
    max-width: 800px;
    box-shadow: 0 4px 20px rgba(255, 75, 110, 0.2);
}

.contact-section h2 {
    font-size: 36px;
    color: #ff4b6e;
    margin-bottom: 15px;
}

.contact-section p {
    font-size: 18px;
    color: #8a8a8a;
    margin-bottom: 25px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border-radius: 12px;
    border: 2px solid #ffc4ff;
    outline: none;
    font-size: 16px;
    resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #ff9dff;
    box-shadow: 0 0 10px rgba(255, 157, 255, 0.6);
}

.contact-form button {
    padding: 12px;
    border-radius: 12px;
    border: none;
    background: #ff4b6e;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s ease;
}

.contact-form button:hover {
    background: #ff1a52;
}

.contact-info {
    margin-top: 25px;
    font-size: 16px;
    color: #8a8a8a;
}

.social-icons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icons img {
    width: 35px;
    height: 35px;
    transition: transform 0.3s ease;
}

.social-icons img:hover {
    transform: scale(1.2);
}
.social-icons a {
    font-size: 28px;
    color: #ff4b6e;
    margin: 0 10px;
    transition: transform 0.3s, color 0.3s;
}

.social-icons a:hover {
    transform: scale(1.2);
    color: #ff1a52;
}
.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #ff4b6e; /* rose pastel */
    color: white;
    border-radius: 50%;
    font-size: 18px;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    transform: scale(1.2);
}



