@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap");

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #1a1a1a;
  --surface: #222;
  --border: rgba(255, 255, 255, 0.07);
  --txt: #f0f0f0;
  --muted: #888;
  --pink: #e8317a;
  --pink-dim: rgba(232, 49, 122, 0.12);
}

html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--txt);
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
p {
  line-height: 1.6;
}
.container {
  width: min(1080px, 90%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(26, 26, 26, 0.96);
  border-bottom: 1px solid var(--border);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: cover;
}
.brand span {
  font-weight: 600;
  font-size: 0.95rem;
}
.nav {
  display: flex;
  gap: 0.2rem;
}
.nav a {
  font-size: 0.82rem;
  color: var(--muted);
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  transition:
    color 0.15s,
    background 0.15s;
}
.nav a:hover,
.nav a.active {
  color: var(--txt);
  background: var(--pink-dim);
}
.nav-cta {
  background: var(--pink) !important;
  color: #fff !important;
  font-weight: 600 !important;
}
.nav-cta:hover {
  opacity: 0.85;
}
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--txt);
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  font-size: 0.82rem;
}

.hero {
  padding: 5rem 0 4rem;
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.hero img.logo {
  width: min(180px, 50vw);
  margin-bottom: 1.5rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.hero h1 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.hero p {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 42ch;
  margin: 0 auto 2rem;
}
.hero-btn {
  display: inline-block;
  background: var(--pink);
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.7rem 1.6rem;
  border-radius: 8px;
  transition: opacity 0.15s;
}
.hero-btn:hover {
  opacity: 0.85;
}

.locations {
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}
.locations h4 {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 1rem;
}
.loc-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.loc-item {
  display: flex;
  gap: 1.5rem;
  font-size: 0.88rem;
}
.loc-day {
  color: var(--pink);
  font-weight: 500;
  min-width: 80px;
}
.loc-info {
  color: var(--muted);
}

.produits {
  padding: 5rem 0;
  border-bottom: 1px solid var(--border);
}
.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  margin-bottom: 2rem;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border-radius: 10px;
  overflow: hidden;
}
.card {
  padding: 1.5rem;
}
.card-num {
  font-size: 0.7rem;
  color: var(--pink);
  letter-spacing: 0.1em;
  margin-bottom: 0.6rem;
  display: block;
}
.card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.card p,
.card ul {
  font-size: 0.83rem;
  color: var(--muted);
}
.card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-top: 0.4rem;
}
.card ul li::before {
  content: "— ";
  color: var(--pink);
}

.infos {
  padding: 5rem 0;
  border-bottom: 1px solid var(--border);
}
.infos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.2rem;
}
.feature {
  font-size: 0.85rem;
  color: var(--muted);
  display: flex;
  gap: 0.6rem;
}
.feature::before {
  content: "→";
  color: var(--pink);
  flex-shrink: 0;
}
.hours-list {
  display: flex;
  flex-direction: column;
  margin-top: 1.2rem;
}
.hour-row {
  display: flex;
  justify-content: space-between;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
}
.hour-row:last-child {
  border-bottom: none;
}
.hour-day {
  color: var(--muted);
}
.hour-time.off {
  color: rgba(255, 255, 255, 0.2);
}

#horaires {
  scroll-margin-top: 90px;
}

.galerie {
  padding: 5rem 0;
  border-bottom: 1px solid var(--border);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 1.5rem;
}
.gallery-grid img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  transition: opacity 0.2s;
}
.gallery-grid img:hover {
  opacity: 0.8;
}

.site-footer {
  padding: 3rem 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 2rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.6rem;
}
.footer-brand img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  object-fit: cover;
}
.footer-brand span {
  font-weight: 600;
}
.footer-left p {
  font-size: 0.83rem;
  color: var(--muted);
}
.footer-contact p {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.25rem;
  text-align: right;
}
.footer-contact a {
  transition: color 0.15s;
}
.footer-contact a:hover {
  color: var(--pink);
}
.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.2);
  text-align: center;
}

@media (max-width: 768px) {
  .nav {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem;
    flex-direction: column;
  }
  .nav.open {
    display: flex;
  }
  .nav a {
    text-align: center;
  }
  .nav-toggle {
    display: block;
  }
  .cards {
    grid-template-columns: 1fr;
  }
  .infos-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-inner {
    flex-direction: column;
  }
  .footer-contact p {
    text-align: left;
  }
}
@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
