/* PASSE PASSE STORE — static recreation */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}

body {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: #4a4a4a;
  background-color: #e2d7c6;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border: 0;
}

a {
  color: #333;
  text-decoration: none;
}

a:hover {
  color: #007a99;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ——— Header ——— */
#site-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

#site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 58px;
  position: relative;
}

#site-logo {
  flex-shrink: 0;
}

#site-logo img {
  display: block;
  max-width: 52px;
  max-height: 52px;
  width: 52px;
  height: auto;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* Main nav */
.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2px;
}

.site-nav a {
  display: block;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #333;
  padding: 8px 10px;
  line-height: 1.2;
  white-space: nowrap;
  transition: color 0.2s, background-color 0.2s;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: #fff;
  background: #767676;
}

.site-nav--desktop {
  flex: 1;
  display: flex;
  justify-content: center;
}

.social-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  height: 58px;
}

.social-menu li {
  margin: 0;
}

.social-menu a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 4px;
  color: #929292;
  font-size: 23px;
  line-height: 58px;
  transition: color 0.2s;
}

.social-menu a:hover {
  color: #333;
}

.social-menu svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #333;
  line-height: 58px;
  padding: 0 8px;
}

.mobile-menu-btn .close-text {
  display: none;
}

.mobile-menu-btn.is-open .menu-text {
  display: none;
}

.mobile-menu-btn.is-open .close-text {
  display: inline;
}

#mobile-dropdown {
  display: none;
  background: #fff;
  border-top: 1px solid #eee;
  padding: 12px 5% 20px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

#mobile-dropdown.is-open {
  display: block;
}

.site-nav--mobile ul {
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  margin-bottom: 16px;
}

.site-nav--mobile a {
  padding: 12px 8px;
  border-bottom: 1px solid #eee;
  text-align: center;
}

#mobile-dropdown .social-menu ul {
  justify-content: center;
  height: auto;
}

#mobile-dropdown .social-menu a {
  line-height: 1.5;
  padding: 8px;
}

/* ——— Main ——— */
#main {
  background: #fff;
  overflow: hidden;
}

.section-inner {
  max-width: 1146px;
  margin: 0 auto;
  padding: 10px 0;
}

.section-inner--wide {
  max-width: 1270px;
}

.section-inner--carousel {
  max-width: 1294px;
}

/* Hero */
.hero {
  text-align: center;
}

.hero img {
  width: 100%;
  max-width: 100%;
  height: 427px;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Announcement bar */
.announce {
  background: #ababab;
  padding: 10px;
  text-align: center;
  transition: background-color 0.3s;
}

.announce:hover {
  background: #303030;
}

.announce h2 {
  margin: 0;
  font-family: Roboto, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  color: #fff;
}

/* Categories */
.categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 27px;
  padding: 20px 0 10px;
}

.category {
  width: 25%;
  min-width: 200px;
  max-width: 300px;
  text-align: center;
}

.category-title {
  margin: 0 0 -25px;
  padding: 8px;
  background: #fff;
  border: 8px solid #fff;
  position: relative;
  z-index: 2;
}

.category-title a {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 32px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1;
  color: #000;
}

.category-title a:hover {
  color: #000;
}

.category-img {
  display: block;
  border: 9px solid #fff;
  margin-top: -15px;
  overflow: hidden;
}

.category-img img {
  display: block;
  width: 100%;
  transition: transform 0.4s ease, filter 0.3s ease;
}

.category-img:hover img,
.img-grow:hover {
  transform: scale(1.08);
}

.category:hover .category-img img {
  filter: brightness(1) contrast(1.6) saturate(0);
}

.img-grow {
  display: inline-block;
  transition: transform 0.4s ease, opacity 0.3s ease;
}

.img-grow img {
  display: block;
  width: 100%;
  transition: inherit;
}

a.img-grow:hover {
  opacity: 0.6;
  transform: scale(1.05);
}

/* Section titles */
.section-title {
  background: #767676;
  margin: 0;
  padding: 8px 12px;
  font-family: Roboto, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  color: #fff;
}

/* Spacers */
.spacer {
  background: #e2d7c6;
  height: 100px;
  width: 100%;
}

/* Content rows */
.content-row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

.content-row__media {
  width: 47%;
  flex: 0 0 47%;
}

.content-row__media--narrow {
  width: 44%;
  flex: 0 0 44%;
}

.content-row__text {
  width: 50%;
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 12px;
}

.content-row__text p {
  font-family: Roboto, sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: #7a7a7a;
  margin: 0 0 1em;
}

.content-row__text a {
  color: #7a7a7a;
  text-decoration: underline;
}

.content-row__text a:hover {
  color: #007a99;
}

.content-row__media img {
  display: block;
  width: 100%;
}

.content-row__extra {
  margin-top: 8px;
}

/* Vente en ligne special layout */
.online-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0;
}

.online-row__media {
  width: 43%;
  flex: 0 0 43%;
  padding: 0 10px;
}

.online-row__content {
  width: 50%;
  flex: 0 0 50%;
  padding: 0 10px;
}

.online-row__content p {
  font-family: Roboto, sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: #7a7a7a;
}

.discogs-btn {
  max-width: 500px;
  margin-top: 8px;
}

.discogs-btn img {
  max-width: 280px;
  width: 100%;
}

/* Events social buttons */
.social-btns {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 8px;
}

.social-btns a {
  display: block;
  max-width: 280px;
}

.social-btns img {
  width: 100%;
  display: block;
}

/* Carousel */
.carousel-wrap {
  background: #d7d7d7;
  padding: 20px 40px 40px;
  position: relative;
  margin: 10px auto;
  max-width: 98%;
}

.carousel {
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  gap: 0;
}

.carousel-slide {
  flex: 0 0 300px;
  width: 300px;
  padding: 0 5px;
  box-sizing: content-box;
}

.carousel-slide img {
  display: block;
  width: 300px;
  height: 300px;
  object-fit: cover;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  cursor: pointer;
  color: #fff;
  z-index: 5;
  padding: 8px;
  opacity: 0.85;
}

.carousel-btn:hover {
  opacity: 1;
}

.carousel-btn svg {
  width: 40px;
  height: 40px;
  fill: currentColor;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.4));
}

.carousel-btn.prev {
  left: 4px;
}

.carousel-btn.next {
  right: 4px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.carousel-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #999;
  cursor: pointer;
  padding: 0;
}

.carousel-dots button.active {
  background: #333;
}

/* Contact */
.contact-header {
  background: #e2d7c6;
  text-align: center;
  padding: 40px 10%;
  min-height: 179px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-header h2 {
  margin: 0;
  font-family: Poppins, sans-serif;
  font-size: 42px;
  font-weight: 600;
  line-height: 1.2;
  color: #1c244b;
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px 0 40px;
}

.contact-list {
  width: 50%;
  flex: 0 0 50%;
  list-style: none;
  margin: 0;
  padding: 20px;
  text-align: center;
}

.contact-list li {
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  color: #324a6d;
  padding: 12.5px 0;
}

.contact-list li:not(:last-child) {
  border-bottom: 1px solid #324a6d;
}

/* Map */
.map-wrap {
  max-width: 80%;
  margin: 0 auto 30px;
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 316px;
  border: 0;
  filter: brightness(0.95) contrast(1.07) saturate(0.05);
  transition: filter 0.3s;
}

.map-wrap:hover iframe {
  filter: none;
}

/* Copyright bar */
.copyright-bar {
  background: #467ff7;
  min-height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 3%;
  text-align: center;
}

.copyright-bar p {
  margin: 0;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  color: #fff;
}

/* Footer */
#footer-bottom {
  background: #1b1b1b;
  color: #fff;
  padding: 15px 0;
  text-align: center;
}

#copyright {
  font-size: 12px;
  line-height: 1.6;
}

#copyright a {
  color: #fff;
  text-decoration: underline;
}

#copyright a:hover {
  opacity: 0.8;
}

/* Scroll top */
#scroll-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s, background 0.2s;
  z-index: 999;
}

#scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

#scroll-top:hover {
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
}

#scroll-top svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Mentions legales page */
.legal-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px 60px;
  font-family: Roboto, sans-serif;
  color: #4a4a4a;
}

.legal-page h1 {
  font-family: Poppins, sans-serif;
  font-size: 32px;
  color: #1c244b;
  margin: 0 0 24px;
}

.legal-page h2 {
  font-family: Roboto, sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin: 28px 0 12px;
  background: #767676;
  color: #fff;
  padding: 8px 12px;
}

.legal-page p,
.legal-page li {
  font-size: 14px;
  line-height: 1.8;
  color: #7a7a7a;
}

.legal-page ul {
  padding-left: 1.2em;
}

.legal-page a {
  color: #007a99;
  text-decoration: underline;
}

/* ——— Responsive ——— */
@media (max-width: 1024px) {
  .category-title a {
    font-size: 28px;
  }

  .contact-header h2 {
    font-size: 42px;
  }

  .contact-list li {
    font-size: 14px;
  }

  .map-wrap iframe {
    height: 320px;
  }

  .announce h2 {
    font-size: 16px;
  }

  .site-nav--desktop a {
    font-size: 11px;
    padding: 8px 6px;
    letter-spacing: 0.04em;
  }
}

@media (max-width: 767px) {
  .mobile-menu-btn {
    display: block;
  }

  .site-nav--desktop {
    display: none;
  }

  #site-header-inner .social-menu--desktop {
    display: none;
  }

  .hero {
    display: none;
  }

  .announce h2 {
    font-size: 14px;
  }

  .categories {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 16px 12px;
  }

  .category {
    width: 100%;
    max-width: none;
    min-width: 0;
  }

  .category-title {
    text-align: left;
  }

  .category-title a {
    font-size: 22px;
  }

  .content-row__media,
  .content-row__media--narrow,
  .content-row__text,
  .online-row__media,
  .online-row__content {
    width: 100%;
    flex: 0 0 100%;
  }

  .content-row__text,
  .online-row__content {
    padding: 16px 12px;
  }

  .section-inner {
    padding: 10px 8px;
  }

  .spacer {
    height: 60px;
  }

  .contact-header {
    padding: 30px 16px;
    min-height: auto;
  }

  .contact-header h2 {
    font-size: 28px;
    line-height: 1.1;
  }

  .contact-list {
    width: 100%;
    flex: 0 0 100%;
    padding: 10px 16px;
  }

  .contact-list li {
    padding: 8px 0;
  }

  .map-wrap {
    max-width: 100%;
    padding: 0 8px;
  }

  .map-wrap iframe {
    height: 218px;
  }

  .carousel-wrap {
    padding: 16px 28px 32px;
  }

  .carousel-slide {
    flex: 0 0 220px;
    width: 220px;
  }

  .carousel-slide img {
    width: 220px;
    height: 220px;
  }

  .copyright-bar p {
    font-size: 14px;
  }

  .social-btns a,
  .discogs-btn img {
    max-width: 100%;
  }
}
