/* Style global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #000;
    color: #fff;
}

/* Header / Navigation */
header {
    background-color: #000;
    color: #fff;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ffd700;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.navbar a {
    color: #ffd700;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

.navbar a:hover {
    color: #fff;
}

.logo {
    font-size: 2.5rem;
    font-family: 'Times New Roman', serif;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(to bottom, #000, #1a1a1a);
    padding: 5rem 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ffd700;
    font-weight: bold;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    max-width: 600px;
    line-height: 1.5;
    color: #fff;
}

.btn {
    background-color: #ffd700;
    color: #000;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.2rem;
    transition: background-color 0.3s ease-in-out, transform 0.3s ease;
    display: inline-block;
}

.btn:hover {
    background-color: #fff;
    transform: scale(1.05);
}

/* Image de la montre */
.hero-image img {
    margin-top: 2rem;
    max-width: 30%;
    height: auto;
    border: 3px solid #ffd700;
    border-radius: 10px;
}

/* Sections */
section {
    padding: 4rem 5%;
    border-bottom: 1px solid #333;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #ffd700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Caractéristiques Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    justify-items: center;
}

.feature-card {
    background-color: #1a1a1a;
    border: 2px solid #ffd700;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    color: #fff;
    max-width: 300px;
}

.feature-card img {
    width: 80px;
    margin-bottom: 1rem;
}

.feature-card h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Points Forts Section */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    justify-items: center;
}

.highlight-card {
    background-color: #1a1a1a;
    border: 2px solid #ffd700;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    color: #fff;
    max-width: 300px;
}

.highlight-card img {
    width: 80px;
    margin-bottom: 1rem;
}

.highlight-card h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Avis Section */
.reviews-section .review {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 10px;
    max-width: 600px;
    margin: 1.5rem auto;
    border: 2px solid #ffd700;
    font-style: italic;
}

/* Section Achat */
.buy-section {
    text-align: center;
}

.buy-section a {
    margin-top: 1rem;
    padding: 1rem 2rem;
}

/* Footer */
footer {
    background-color: #000;
    color: #ffd700;
    text-align: center;
    padding: 2rem;
    border-top: 1px solid #333;
}

/* Avis Section */
.reviews-section {
    padding: 4rem 5%;
}

.review {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 10px;
    max-width: 600px;
    margin: 1.5rem auto;
    border: 2px solid #ffd700;
    color: #fff;
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.review-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 1rem;
    border: 2px solid #ffd700;
}

.review h4 {
    margin: 0;
    font-size: 1.2rem;
}

.review p {
    margin: 0;
    color: #bbb;
}

.stars {
    color: #ffd700;
    font-size: 1.5rem;
}

/* Section Prix */
.price-section {
    text-align: center;
    background: #1a1a1a;
    color: #fff;
    padding: 3rem 5%;
}

.old-price {
    font-size: 1.5rem;
    color: #bbb;
}

.strikethrough {
    text-decoration: line-through;
    color: #bbb;
}

.new-price {
    font-size: 2.5rem;
    color: #ffd700;
    font-weight: bold;
}

.limited-offer {
    font-size: 1.2rem;
    color: #fff;
    margin-top: 0.5rem;
}

.buy-now-btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 1rem 2rem;
    background-color: #ffd700;
    color: #1a1a1a;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 5px;
}

.buy-now-btn:hover {
    background-color: #fff;
    color: #000;
    transition: 0.3s;
}

/* Section Cadeau de Noël */
.christmas-section {
    background-color: #f7f7f7;
    padding: 4rem 5%;
    text-align: center;
    color: #1a1a1a;
}

.christmas-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

.christmas-image {
    max-width: 45%;
    border-radius: 10px;
}

.christmas-text {
    max-width: 45%;
    text-align: left;
}

.christmas-text p {
    font-size: 1.2rem;
    color: #333;
}

.christmas-section .buy-now-btn {
    margin-top: 2rem;
}

/* Style du menu et du header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #000;
    color: #fff;
}

.logo h1 {
    color: #fff;
}
/* Style du menu et du header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #000;
    color: #fff;
    position: fixed; /* Garder le menu en haut */
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000; /* Assurez-vous que le menu est au premier plan */
}

.logo h1 {
    color: #fff;
}

/* Menu classique (non responsive) */
.menu {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
}

.menu li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.menu li a:hover {
    color: gold;
}

/* Burger button */
.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001; /* Toujours au-dessus des autres éléments */
}

.burger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 4px;
    transition: all 0.3s ease;
}

/* Responsiveness */
@media (max-width: 768px) {
    /* Cacher le menu classique */
    .menu {
        display: none;
        flex-direction: column;
        background-color: #000;
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
        height: auto;
        text-align: center;
        z-index: 999; /* Assurez-vous que le menu est au-dessus du contenu */
    }

    .christmas-text {
        margin-top: 20px;
        max-width: 100%;
    }

    .christmas-image {
        max-width: 85%;
    }

    .menu.active {
        display: flex;
    }

    /* Afficher le bouton burger */
    .burger {
        display: flex;
    }

    /* Animation pour le burger */
    .burger.toggle span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 5px);
    }

    .burger.toggle span:nth-child(2) {
        opacity: 0;
    }

    .burger.toggle span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -5px);
    }
}
