/* ===========================
   100 Sushis - Feuille de style
   =========================== */

:root {
  --color-accent: #E8734F;
  --color-accent-dark: #c65c3b;
  --color-white: #ffffff;
  --color-black: #1a1a1a;
  --color-gray-dark: #333333;
  --color-gray-light: #f4f2ef;
  --color-ubereats: #06C167;
  --overlay-dark: rgba(10, 8, 6, 0.65);
  --overlay-hero-light: rgba(250, 248, 245, 0.15);
  --overlay-hero-dark: rgba(20, 15, 10, 0.45);
  --font-title: "Poppins", "Segoe UI", system-ui, sans-serif;
  --font-body: "Helvetica Neue", Arial, sans-serif;
  --max-width: 1100px;
  --header-height: 88px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
}

h1, h2, h3 {
  font-family: var(--font-title);
  font-weight: 700;
  margin: 0 0 0.5em 0;
}

p {
  margin: 0 0 1em 0;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ---------- Fond flouté plein écran ---------- */
.hero-background {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding-top: var(--header-height);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.55);
}

.hero-background::before {
  content: "";
  position: absolute;
  inset: -15px;
  background-image: url("../images/image10.webp");
  background-size: cover;
  background-position: center;
  filter: blur(12px);
  z-index: 0;
}

.hero-background::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(var(--overlay-hero-light), var(--overlay-hero-light)), linear-gradient(var(--overlay-hero-dark), var(--overlay-hero-dark));
  z-index: 1;
}

.hero-background > * {
  position: relative;
  z-index: 2;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  min-height: var(--header-height);
  background: rgba(10, 8, 6, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.25rem 2rem;
  min-height: var(--header-height);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.main-nav a {
  text-decoration: none;
}

/* ---------- Menu déroulant (navbar) ---------- */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown-menu {
  display: none;
  flex-direction: column;
  gap: 0.15rem;
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 240px;
  max-width: calc(100vw - 2.5rem);
  padding: 0.75rem 0.5rem 0.5rem 0.5rem;
  background: rgba(15, 12, 10, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  z-index: 60;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  display: flex;
}

.nav-dropdown-menu a {
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.nav-dropdown-menu a:hover {
  background: rgba(232, 115, 79, 0.18);
  color: var(--color-accent);
}

/* ---------- Boutons pilule ---------- */
.btn {
  display: inline-block;
  padding: 0.7em 1.8em;
  border: 1px solid var(--color-accent);
  border-radius: 999px;
  background: transparent;
  color: var(--color-white);
  text-decoration: none;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, transform 0.2s ease, text-shadow 0.2s ease;
  cursor: pointer;
}

.btn:hover {
  border-color: var(--color-white);
  color: var(--color-white);
  background: transparent;
  transform: scale(1.06);
  text-shadow: 0 0 0.5px var(--color-white), 0 0 0.5px var(--color-white);
  -webkit-text-stroke: 0.4px var(--color-white);
}

.btn-accent {
  border-width: 2px;
}

.btn-small {
  padding: 0.5em 1.3em;
  font-size: 0.85rem;
}

.btn-large {
  padding: 0.45em 1.1em;
  font-size: 1.1rem;
}

/* ---------- Responsive mobile (navbar) ---------- */
@media (max-width: 600px) {
  .site-header {
    padding: 0.85rem 1rem;
    gap: 0.5rem;
  }

  .main-nav {
    gap: 0.4rem;
  }

  .btn-small {
    padding: 0.4em 0.9em;
    font-size: 0.75rem;
  }
}

/* ---------- Page d'accueil ---------- */
.hero-content {
  min-height: calc(100vh - var(--header-height));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem 1.25rem;
  gap: 3rem;
}

.hero-split {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.hero-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-divider {
  align-self: stretch;
  width: 1px;
  background: rgba(255, 255, 255, 0.4);
}

.hero-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-logo {
  max-width: 340px;
  margin: 0 auto 1rem auto;
}

.hero-subtitle {
  font-family: var(--font-title);
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1.5rem;
}

.hero-address,
.hero-phone {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.hero-icon {
  width: 18px;
  height: 18px;
  fill: var(--color-accent);
  flex-shrink: 0;
}

.hero-address a,
.hero-phone a {
  text-decoration: none;
  color: var(--color-white);
}

.hero-address a:hover,
.hero-phone a:hover {
  color: var(--color-accent);
}

a.link-underline {
  text-decoration: underline;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-weight: 400;
}

.social-icon {
  width: 18px;
  height: 18px;
  fill: var(--color-accent);
  transition: fill 0.2s ease;
}

.social-btn:hover .social-icon {
  fill: var(--color-white);
}

.hero-center {
  text-align: center;
}

.welcome-text {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.05rem;
  text-align: left;
}

@media (max-width: 800px) {
  .hero-split {
    flex-direction: column;
    gap: 2rem;
  }

  .hero-divider {
    width: 80%;
    height: 1px;
  }
}

/* ---------- Avis Google ---------- */
.reviews-section {
  padding: 3rem 1.25rem 4rem 1.25rem;
  text-align: center;
}

.reviews-section h2 {
  color: var(--color-white);
  margin-bottom: 2rem;
}

.review-carousel {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.review-slide {
  display: none;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 16px;
  padding: 1.75rem;
  text-align: left;
}

.review-slide.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.review-stars {
  color: var(--color-accent);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
}

.review-author {
  display: block;
  margin-top: 0.75rem;
  font-family: var(--font-title);
  font-weight: 600;
  color: var(--color-accent);
}

.carousel-btn {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--color-white);
  background: transparent;
  color: var(--color-white);
  font-size: 1.3rem;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.15s ease;
}

.carousel-btn:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  transform: scale(1.05);
}

.review-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.review-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1px solid var(--color-white);
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.review-dots button.active {
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.reviews-more {
  margin-top: 2rem;
}

/* ---------- Pages menu et contact (fond clair) ---------- */
.content-page {
  background: linear-gradient(to bottom, var(--color-black) 0, var(--color-black) var(--header-height), var(--color-gray-light) var(--header-height), var(--color-gray-light) 100%);
  color: var(--color-gray-dark);
  min-height: 100vh;
  padding-top: var(--header-height);
}

.page-title-banner {
  position: relative;
  overflow: hidden;
  padding: 3rem 1.25rem;
  text-align: center;
  color: var(--color-white);
}

.page-title-banner::before {
  content: "";
  position: absolute;
  inset: -15px;
  background-image: url("../images/image10.webp");
  background-size: cover;
  background-position: center;
  filter: blur(12px);
  z-index: 0;
}

.page-title-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--overlay-dark);
  z-index: 1;
}

.page-title-banner > * {
  position: relative;
  z-index: 2;
}

.page-title-banner h1 {
  font-size: 2.2rem;
  margin-bottom: 0.25rem;
}

.page-title-banner p {
  color: var(--color-accent);
  font-family: var(--font-title);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
}

/* ---------- Menu ---------- */
.menu-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3rem 1.25rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  text-align: center;
}

.menu-section h2 {
  display: inline-block;
  font-size: 1.6rem;
  color: var(--color-accent-dark);
  margin: 0 auto 1.5rem auto;
  padding-bottom: 0.5rem;
  position: relative;
}

.menu-section h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 3px;
  background: var(--color-accent);
  border-radius: 3px;
}

.menu-section > p {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.menu-note {
  font-style: italic;
  color: #6b6b6b;
  font-size: 0.9rem;
}

.menu-list {
  list-style: none;
  margin: 0 auto 1.25rem auto;
  padding: 0;
  max-width: 380px;
}

.menu-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.15);
}

.menu-list li .item-name {
  flex: 1;
  text-align: left;
}

.menu-list li .item-price {
  font-weight: 700;
  color: var(--color-accent-dark);
  white-space: nowrap;
}

.menu-subtitle {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.05rem;
  margin: 1.25rem 0 0.5rem 0;
  color: var(--color-gray-dark);
}

.menu-composition {
  background: rgba(232, 115, 79, 0.08);
  border: 1px solid rgba(232, 115, 79, 0.25);
  padding: 0.85rem 1.25rem;
  border-radius: 8px;
  margin: 0.75rem auto 1.25rem auto;
  max-width: 480px;
  font-size: 0.95rem;
}

.decor-image {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem 2rem 1.25rem;
}

.decor-image img {
  border-radius: 12px;
  width: 100%;
  max-height: 320px;
  object-fit: cover;
}

.menu-gallery {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 1.25rem 3rem 1.25rem;
  text-align: center;
}

.menu-gallery h2 {
  display: inline-block;
  font-size: 1.6rem;
  color: var(--color-accent-dark);
  margin: 0 auto 1.5rem auto;
  padding-bottom: 0.5rem;
  position: relative;
}

.menu-gallery h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 3px;
  background: var(--color-accent);
  border-radius: 3px;
}

.menu-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.menu-gallery-grid img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: contain;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.menu-gallery-grid img:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* ---------- Lightbox (agrandissement des images) ---------- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: rgba(10, 8, 6, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 200;
}

.lightbox.open {
  display: flex;
}

.lightbox-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--color-white);
  background: transparent;
  color: var(--color-white);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.lightbox-close:hover {
  border-color: var(--color-accent);
  transform: scale(1.1);
}

.menu-gallery-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  margin-top: 2rem;
}

.btn-icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
  vertical-align: -2px;
  margin-right: 0.35em;
}

.btn-phone-cta {
  color: var(--color-accent-dark);
  border-color: var(--color-accent);
}

.btn-phone-cta:hover {
  color: var(--color-black);
  border-color: var(--color-black);
  background: transparent;
  text-shadow: none;
  -webkit-text-stroke: 0;
}

.btn-ubereats {
  color: var(--color-ubereats);
  border-color: var(--color-ubereats);
}

.btn-ubereats:hover {
  color: var(--color-black);
  border-color: var(--color-black);
  background: transparent;
  text-shadow: none;
  -webkit-text-stroke: 0;
}

.allergen-note {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.5rem 1.25rem;
  font-size: 0.9rem;
  color: #6b6b6b;
  text-align: center;
}

/* ---------- Contact ---------- */
.contact-wrapper {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3rem 1.25rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

@media (max-width: 800px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}

.contact-photos img {
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.contact-info h2 {
  color: var(--color-accent-dark);
  font-size: 1.3rem;
  margin-top: 1.5rem;
}

.contact-info h2:first-child {
  margin-top: 0;
}

.contact-info a.link-accent {
  color: var(--color-accent-dark);
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.contact-info a.link-accent:hover {
  color: var(--color-black);
}

.contact-info a.link-accent.link-ubereats {
  color: var(--color-ubereats);
}

.contact-info a.link-accent.link-ubereats:hover {
  color: var(--color-black);
}

.social-icons-light {
  justify-content: flex-start;
  margin: 0.5rem 0 1rem 0;
}

.social-icons-light .social-btn {
  color: var(--color-accent-dark);
  border-color: var(--color-accent);
}

.social-icons-light .social-btn:hover {
  color: var(--color-black);
  border-color: var(--color-black);
  background: transparent;
  text-shadow: none;
  -webkit-text-stroke: 0;
}

.social-icons-light .social-icon {
  fill: var(--color-accent);
}

.social-icons-light .social-btn:hover .social-icon {
  fill: var(--color-black);
}

.hours-table {
  width: auto;
  max-width: 380px;
  border-collapse: collapse;
  margin-top: 0.5rem;
}

.hours-table td {
  padding: 0.45rem 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.15);
}

.hours-table td:first-child {
  padding-right: 2rem;
}

.hours-table td:last-child {
  text-align: right;
  font-weight: 600;
}

.loyalty-box {
  background: rgba(232, 115, 79, 0.08);
  border-left: 3px solid var(--color-accent);
  padding: 1rem 1.25rem;
  border-radius: 6px;
  margin-top: 0.75rem;
}

.map-wrapper {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem 3rem 1.25rem;
}

.map-wrapper iframe {
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: 12px;
}

/* ---------- Footer ---------- */
.site-footer {
  text-align: center;
  padding: 2rem 1.25rem;
  font-size: 0.85rem;
  color: #8a8a8a;
}

.content-page .site-footer {
  background: var(--color-black);
  color: #cfcfcf;
}

.footer-copyright {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  opacity: 0.8;
}
