/* RESET & VARIABLES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --red: #e60000;
  --red-dark: #a80000;
  --black: #000;
  --white: #fff;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  --radius: 12px;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to bottom, #4d0000, #B22222);
  color: var(--white);
  padding-top: 80px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.sticky-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--black);
  color: var(--white);
  z-index: 1000;
  box-shadow: var(--shadow);
}

.navbar {
  max-width: 1200px;
  margin: auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.7rem;
  font-weight: bold;
  color: var(--red);
}

.logo-img {
  width: 45px;
  height: 45px;
  object-fit: contain;
}

.nav-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  transition: background 0.3s;
}
.nav-links a:hover {
  background: var(--red);
}

/* SECTION BOUTIQUE */
main {
  flex: 1;
}

.boutique-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 2rem;
  text-align: center;
}

.boutique-section h1 {
  font-size: 2.5rem;
  color: var(--red);
  margin-bottom: 1rem;
}

.boutique-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* BOUTIQUE IMAGE */
.shop-container {
  position: relative;
  display: inline-block;
}

.shop-door img {
  width: 100%;
  max-width: 600px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.shop-door img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px var(--red);
}

.shop-overlay {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: rgba(230, 0, 0, 0.9);
  color: white;
  padding: 0.4rem 0.8rem;
  font-weight: bold;
  border-radius: 8px;
  z-index: 10;
  font-size: 1rem;
  box-shadow: var(--shadow);
}

/* BOUTON */
.boutique-btn {
  display: inline-block;
  margin-top: 2rem;
  background-color: var(--red);
  color: white;
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px var(--red);
}
.boutique-btn:hover {
  background-color: var(--red-dark);
  box-shadow: 0 0 15px var(--red);
}

/* FOOTER */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 1rem;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer img {
  width: 30px;
  height: auto;
  margin-right: 0.5rem;
}

/* RESPONSIVE */
@media screen and (max-width: 768px) {
  .navbar, .nav-links {
    flex-direction: column;
    align-items: center;
  }

  .boutique-section h1 {
    font-size: 2rem;
  }

  .shop-door img {
    width: 90%;
  }
}
/* ANIMATION DE CHARGEMENT */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 1s ease-out both;
}
.menu-toggle {
  display: none;
  font-size: 2rem;
  color: var(--white);
  cursor: pointer;
}

/* Menu mobile masqué par défaut */
@media screen and (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: center;
    background-color: var(--black);
    padding: 1rem 0;
    border-top: 1px solid rgba(255,255,255,0.2);
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links a {
    display: block;
    padding: 1rem;
    width: 100%;
    text-decoration: none;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .nav-links a:hover {
    background-color: var(--red);
  }

  .navbar {
    flex-wrap: nowrap;
    justify-content: space-between;
  }
}
