/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background: #000;
    color: #fff;
}

/* HEADER */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-container img {
    width: 40px;
}

nav {
    display: flex;
    gap: 20px;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

.btn-nav {
    background: orange;
    padding: 8px 12px;
    border-radius: 6px;
    color: black;
}

/* MOBILE MENU */
.menu-toggle {
    display: none;
    font-size: 24px;
}

/* HERO */
.hero {
    position: relative;
    min-height: 55vh;
    padding: 80px 20px 40px;
    background: url("https://images.unsplash.com/photo-1605902711622-cfb43c4437d1") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.5));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 500px;
}

.hero h1 {
    font-size: 30px;
    font-weight: bold;
    text-shadow: 0 5px 20px rgba(0,0,0,0.8);
}

.hero p {
    margin-top: 10px;
    color: #ddd;
}

/* BUTTON */
.btn-main {
    margin-top: 20px;
    display: inline-block;
    background: linear-gradient(45deg, orange, #ff7b00);
    padding: 14px 24px;
    border-radius: 10px;
    color: black;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}

.btn-main:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255,165,0,0.6);
}

/* SERVICES */
section {
    padding: 40px 20px;
}

.services h2 {
    text-align: center;
    margin-bottom: 20px;
}

.service-grid {
    display: grid;
    gap: 20px;
}

.card {
    background: #111;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s;
}

.card i {
    font-size: 30px;
    color: orange;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(255,165,0,0.2);
}

/* DELIVERY IMAGES */
.delivery-grid {
    display: grid;
    gap: 15px;
}

.delivery-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.delivery-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: 0.4s;
}

.delivery-card:hover img {
    transform: scale(1.1);
}

.delivery-card p {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0,0,0,0.6);
    padding: 5px 10px;
    border-radius: 6px;
}

/* REVIEWS SLIDER */
.review-slider {
    overflow: hidden;
    width: 100%;
}

.review-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scroll 25s linear infinite;
}

.review-card {
    min-width: 260px;
    background: #111;
    padding: 20px;
    border-radius: 12px;
}

.review-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* CTA */
.cta {
    text-align: center;
}

.cta h2 {
    margin-bottom: 15px;
}

/* FORM */
.form-card {
    margin: 20px;
    padding: 25px;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.input-group {
    display: flex;
    align-items: center;
    background: #111;
    margin: 10px 0;
    padding: 10px;
    border-radius: 8px;
}

.input-group i {
    color: orange;
    margin-right: 10px;
}

input, textarea {
    background: none;
    border: none;
    color: white;
    width: 100%;
}

input[type="file"] {
    border: 1px solid orange;
}

/* WHATSAPP */
.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    padding: 15px;
    border-radius: 50%;
    font-size: 22px;
    color: white;
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* FOOTER */
.footer {
    background: #111;
    padding: 30px 20px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: center;
}

.footer-bottom {
    margin-top: 20px;
    text-align: center;
}

.footer-bottom a {
    color: orange;
}

/* MOBILE */
@media(max-width: 768px) {

    nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 20px;
        background: #111;
        padding: 15px;
        border-radius: 10px;
    }

    nav.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .hero {
        min-height: 50vh;
        padding-top: 70px;
    }

    section {
        padding: 30px 15px;
    }
}

nav {
    transition: all 0.3s ease;
}

.about {
    padding: 40px 20px;
}

.about-container {
    max-width: 800px;
    margin: auto;
}

.about h1 {
    text-align: center;
    margin-bottom: 20px;
}

.about h2 {
    margin-top: 25px;
    color: orange;
}

.about p {
    margin-top: 10px;
    line-height: 1.6;
    color: #ccc;
}

.about-img {
    width: 100%;
    border-radius: 12px;
    margin: 20px 0;
}

.about-list {
    list-style: none;
    margin-top: 15px;
}

.about-list li {
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-list i {
    color: orange;
}

.about-cta {
    text-align: center;
    margin-top: 30px;
}

.review-card {
    min-width: 260px;
    background: #111;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}

/* ⭐ stars en haut */
.stars {
    color: orange;
    font-size: 18px;
    margin-bottom: 10px;
}

/* 💬 commentaire centré */
.review-text {
    font-size: 14px;
    color: #ddd;
    margin: 10px 0;
}

/* 👤 nom en bas */
.review-name {
    font-size: 13px;
    color: #aaa;
    margin-top: 10px;
}

.review-card::after {
    content: "";
    width: 40px;
    height: 3px;
    background: orange;
    margin: 10px auto 0;
    border-radius: 2px;
}

textarea {
    width: 100%;
    min-height: 80px;
    resize: none;
    color: white;
}

.input-group.file input {
    border: none;
}