@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;900&display=swap');

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: #0a0a0a;
    color: white;
}

/* NAVBAR */
.navbar {
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-weight: 500;
    opacity: 0.8;
}

.navbar a:hover {
    opacity: 1;
}

/* HERO */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 80px;
}

/* TEXTE HERO */
.hero-text h1 {
    font-size: 80px;
    font-weight: 900;
    line-height: 1.1;
}

.hero-text p {
    opacity: 0.7;
    margin: 20px 0;
}

/* BOUTON */
.btn-primary {
    padding: 15px 35px;
    border: none;
    border-radius: 30px;
    background: white;
    color: black;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.btn-primary:hover {
    transform: scale(1.05);
}

/* IMAGE HERO */
.hero img {
    width: 500px;
    transition: 0.5s;
}

.hero img:hover {
    transform: rotate(-5deg) scale(1.05);
}

/* SECTION PRODUITS */
.section {
    padding: 100px 80px;
}

.section h2 {
    font-size: 50px;
    margin-bottom: 50px;
}

/* GRID PRODUITS */
.products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARTE */
.product {
    background: #111;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.4s;
}

.product img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product:hover {
    transform: translateY(-10px) scale(1.03);
}

/* TEXTE PRODUIT */
.product-content {
    padding: 20px;
}

.price {
    color: #00f7ff;
    font-weight: bold;
}
.stores {
    padding: 100px 80px;
    text-align: center;
}

.subtitle {
    opacity: 0.7;
    margin-bottom: 50px;
}

/* GRID */
.store-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* CARTE */
.store-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(15px);
    padding: 40px;
    border-radius: 20px;
    transition: 0.4s;
    cursor: pointer;
}

/* HOVER */
.store-card:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(243, 242, 242, 0.908);
}

/* TITRE */
.store-card h3 {
    margin-bottom: 10px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .store-grid {
        grid-template-columns: 1fr;
    }
}
.footer {
    background: #020617;
    padding: 60px 80px 20px;
    margin-top: 100px;
}

/* CONTAINER */
.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* BOX */
.footer-box h3,
.footer-box h4 {
    margin-bottom: 15px;
}

/* LIENS */
.footer-box a {
    display: block;
    color: white;
    opacity: 0.7;
    text-decoration: none;
    margin-bottom: 8px;
    transition: 0.3s;
}

.footer-box a:hover {
    opacity: 1;
    transform: translateX(5px);
}

/* TEXTE */
.footer-box p {
    opacity: 0.7;
    margin: 5px 0;
}

/* BAS DU FOOTER */
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    opacity: 0.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer {
        padding: 40px;
    }
}.footer {
    background: #020617;
    padding: 60px 80px 20px;
    margin-top: 100px;
}

/* CONTAINER */
.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* BOX */
.footer-box h3,
.footer-box h4 {
    margin-bottom: 15px;
}

/* LIENS */
.footer-box a {
    display: block;
    color: white;
    opacity: 0.7;
    text-decoration: none;
    margin-bottom: 8px;
    transition: 0.3s;
}

.footer-box a:hover {
    opacity: 1;
    transform: translateX(5px);
}

/* TEXTE */
.footer-box p {
    opacity: 0.7;
    margin: 5px 0;
}

/* BAS DU FOOTER */
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    opacity: 0.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer {
        padding: 40px;
    }
}