/* Variables Globales */
:root {
    --color-primary: #ff69b4;
    --color-secondary: #09c1ff;
    --color-background: #121212;
    --color-text: #ffffff;
    --font-main: 'Poppins', sans-serif;
    --font-highlight: 'Orbitron', sans-serif;
}

/* Reset */
body, h1, h2, h3, p, ul, li, a {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--color-text);
    background: var(--color-background);
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    background: rgba(0, 0, 0, 0.8);
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    padding: 1rem;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.navbar ul li a {
    text-decoration: none;
    color: var(--color-text);
    font-weight: bold;
    transition: color 0.3s;
}

.navbar ul li a:hover {
    color: var(--color-primary);
}

/* Section Hero */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    text-align: center;
    overflow: hidden;
}

#background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero .content {
    z-index: 1;
}

.hero .hero-title {
    font-size: 4rem;
    font-family: var(--font-highlight);
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.8);
}

.hero .highlight {
    color: var(--color-primary);
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.8);
}

.hero .btn-primary {
    margin-top: 1.5rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
    color: white;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.hero .btn-primary:hover {
    background: linear-gradient(45deg, var(--color-secondary), var(--color-primary));
    transform: scale(1.1);
}

/* Section Container */
.section-container {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

/* Section À Propos */
.about-section {
    background: linear-gradient(135deg, var(--color-primary), #ff9a47, var(--color-secondary));
    padding: 4rem 2rem;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 15%, 100% 0, 100% 85%, 0 100%);
}

.about-section .section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #ffffff;
    text-transform: uppercase;
    font-family: var(--font-highlight);
    text-shadow: 0px 3px 10px rgba(0, 0, 0, 0.5);
}

.about-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #ffffff;
}

/* Floating Image */
.floating-image {
    position: relative;
    width: 150px;
    height: 150px;
    animation: rotateImage 6s infinite linear;
}

.floating-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3);
}

/* Animation de Rotation */
@keyframes rotateImage {
    0% {
        transform: rotateY(0deg) rotateX(0deg);
    }
    100% {
        transform: rotateY(360deg) rotateX(360deg);
    }
}


.about-text .highlight {
    color: var(--color-primary);
    font-weight: bold;
    text-shadow: 0px 2px 8px rgba(0, 0, 0, 0.3);
}

.dynamic-text {
    color: var(--color-secondary);
    font-weight: bold;
    animation: gradient-animate 3s ease-in-out infinite;
    background: linear-gradient(45deg, var(--color-primary), var(--color-secondary), #ff9a47);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes gradient-animate {
    0% { background-position: 0%; }
    100% { background-position: 100%; }
}

/* Section Caractéristiques */
.features-section {
    background: linear-gradient(135deg, #ff69b4, #ff9a47, #09c1ff);
    padding: 4rem 2rem;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 15%, 100% 0, 100% 85%, 0 100%);
}

.features-section .section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #ffffff;
    text-transform: uppercase;
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0px 3px 10px rgba(0, 0, 0, 0.5);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Feature Card */
.feature-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    perspective: 1000px;
}

.feature-card:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(-5deg);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.5);
}

.feature-icon {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 3rem;
    color: #ffffff;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.feature-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: brightness(0.7);
}

.feature-card:hover .feature-image img {
    transform: scale(1.1);
    filter: brightness(1);
}

.feature-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    text-align: center;
    padding: 1.5rem;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-overlay {
    transform: translateY(0);
}

.feature-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #ff69b4;
    font-family: 'Orbitron', sans-serif;
}

.feature-overlay p {
    font-size: 1rem;
    line-height: 1.6;
    color: #ffffff;
}



/* Diaporama pour Événements Exclusifs */
/* Diaporama pour Événements Exclusifs */
.feature-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 200px;
    width: 100%;
}

.carousel-images {
    display: flex;
    width: 100%;
    transition: transform 0.5s ease-in-out; /* Animation fluide */
}

.carousel-images img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    flex-shrink: 0;
    border-radius: 15px;
}

/* Section Galerie */
.gallery-section {
    background: radial-gradient(circle, rgba(255, 105, 180, 0.2), rgba(9, 193, 255, 0.2), rgba(255, 154, 71, 0.2));
    position: relative;
    padding: 4rem 2rem;
    color: #ffffff;
    overflow: hidden;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 105, 180, 0.4), rgba(9, 193, 255, 0.4), rgba(255, 154, 71, 0.4));
    animation: color-shift-bg 10s infinite;
    z-index: -2;
    filter: blur(150px);
}

.gallery-section .section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--color-primary);
    text-transform: uppercase;
    font-family: 'Orbitron', sans-serif;
}

/* Grille de la Galerie */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    perspective: 1000px;
}


/* Objets flottants en 3D */
.floating-objects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.floating-object {
    position: absolute;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #ff69b4, #09c1ff);
    border-radius: 50%;
    animation: float 6s infinite ease-in-out;
    filter: blur(2px);
    opacity: 0.9;
}

/* Positions des objets flottants */
.floating-object:nth-child(1) {
    top: 15%;
    left: 20%;
    animation-duration: 8s;
}

.floating-object:nth-child(2) {
    top: 30%;
    left: 70%;
    animation-duration: 10s;
}

.floating-object:nth-child(3) {
    bottom: 20%;
    left: 40%;
    animation-duration: 12s;
}

/* Animation des objets flottants */
@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(45deg);
    }
}

/* Animation du fond */
@keyframes color-shift-bg {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Carte d'Image */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transform: rotateY(0deg);
    background: linear-gradient(45deg, #ff69b4, #09c1ff);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.gallery-item:hover {
    transform: rotateY(10deg) rotateX(5deg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
}

/* Conteneur des Images */
.gallery-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 200px;
}

.gallery-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out;
    filter: brightness(0.8);
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(1);
}

/* Couleurs Animées */
.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.5), rgba(9, 193, 255, 0.5));
    mix-blend-mode: overlay;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 1;
}


/* Animation du Dégradé de Fond */
@keyframes color-shift-bg {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}









/* Animations */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
    transition-duration: 1s;
}




/* Section Boutique */
.shop-section {
    background: linear-gradient(135deg, #121212, #292929);
    position: relative;
    padding: 4rem 2rem;
    color: #ffffff;
    overflow: hidden;
}

.shop-section .section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--color-primary);
    text-transform: uppercase;
    font-family: 'Orbitron', sans-serif;
}

/* Grille des Produits */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Carte Produit */
.shop-item {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #ff69b4, #09c1ff);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.shop-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.shop-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.shop-item h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.shop-item p {
    font-size: 1rem;
    color: #ddd;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.shop-item .price {
    display: block;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.shop-item .info {
    font-size: 0.9rem;
    color: var(--color-secondary);
    font-style: italic;
}

/* Footer avec Géométrie et Couleurs Dynamiques */
.footer-section {
    position: relative;
    padding: 2rem 1rem;
    background: linear-gradient(135deg, #121212, #292929); /* Fond de base */
    color: #ccc;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.5);
}

/* Section Footer avec Cubes 3D */
.footer-section {
    position: relative;
    padding: 2rem 1rem;
    background: linear-gradient(135deg, #121212, #292929); /* Fond de base */
    color: #ccc;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.5);
}

/* Contenu Principal */
.footer-section .footer-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: auto;
}

.footer-section .footer-text {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #ffffff;
}

.footer-section .footer-text .developer {
    color: var(--color-primary);
    font-weight: bold;
    animation: heartbeat 1.5s infinite;
}

.footer-section .social-links {
    margin-top: 1rem;
}

.footer-section .social-links a {
    color: var(--color-primary);
    margin: 0 10px;
    font-size: 1.5rem;
    transition: transform 0.3s, color 0.3s;
}

.footer-section .social-links a:hover {
    transform: scale(1.2);
    color: var(--color-secondary);
}

/* Cubes 3D */
.footer-section .floating-objects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.cube {
    position: absolute;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff69b4, #09c1ff);
    transform-style: preserve-3d;
    animation: rotateCube 6s infinite ease-in-out;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.cube:nth-child(1) {
    top: 20%;
    left: 15%;
    animation-duration: 8s;
}

.cube:nth-child(2) {
    top: 40%;
    left: 60%;
    animation-duration: 10s;
}

.cube:nth-child(3) {
    bottom: 15%;
    left: 30%;
    animation-duration: 12s;
}

/* Faces des Cubes */
.cube div {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.3));
    border: 2px solid rgba(255, 255, 255, 0.1);
    backface-visibility: hidden;
}

.cube .front  { transform: translateZ(40px); }
.cube .back   { transform: rotateY(180deg) translateZ(40px); }
.cube .top    { transform: rotateX(90deg) translateZ(40px); }
.cube .bottom { transform: rotateX(-90deg) translateZ(40px); }
.cube .left   { transform: rotateY(-90deg) translateZ(40px); }
.cube .right  { transform: rotateY(90deg) translateZ(40px); }

/* Animation des Cubes */
@keyframes rotateCube {
    0%, 100% {
        transform: rotateX(0deg) rotateY(0deg);
    }
    50% {
        transform: rotateX(180deg) rotateY(180deg);
    }
}

/* Animation Heartbeat */
@keyframes heartbeat {
    0% { transform: scale(1); }
    25% { transform: scale(1.1); }
    50% { transform: scale(1); }
    75% { transform: scale(1.1); }
    100% { transform: scale(1); }
}
