/* ================================================
   BY SEYLA · home.css
   Hero, info-bar, spécialités, à propos, témoignages
================================================ */

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 7rem 1.5rem 5rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: #000;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.45;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 55% at 50% 45%, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.75) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.5) 0%, transparent 35%, transparent 60%, rgba(0,0,0,0.85) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.hero-content .halal { margin-bottom: 2.2rem; }
.hero-title {
  color: #fff;
  margin-bottom: 0.4rem;
  font-weight: 400;
  line-height: 1;
  font-family: var(--logo);
  font-size: clamp(4.5rem, 12vw, 8.5rem);
  letter-spacing: 1px;
}
.hero-title em {
  font-style: normal;
  color: #fff;
}
.hero-city {
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--texte-soft);
  margin-top: 0.3rem;
}
.hero-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 2rem auto;
}
.hero-rule::before,
.hero-rule::after {
  content: '';
  width: 50px;
  height: 1px;
  background: rgba(255,255,255,0.6);
}
.hero-rule i { color: #fff; font-size: 0.65rem; }
.hero-desc {
  font-size: 1.05rem;
  color: var(--texte-soft);
  line-height: 1.9;
  margin-bottom: 2.8rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  z-index: 2;
}
.hero-scroll::after {
  content: '';
  width: 1px; height: 36px;
  background: linear-gradient(#fff, transparent);
  animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { opacity: 0.2; transform: scaleY(0.6); }
  50%      { opacity: 1;   transform: scaleY(1); }
}

/* ── Info bar (horaires / adresse / tel) ── */
.info-bar {
  background: #000;
  position: relative;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.info-bar::before { display: none; }
.info-bar-inner {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: var(--max);
  margin: 0 auto;
}
.info-bar-item {
  padding: 2rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  border-right: 1px solid var(--border);
}
.info-bar-item:last-child { border-right: none; }
.info-bar-item i {
  font-size: 1.4rem;
  color: #fff;
  flex-shrink: 0;
}
.info-bar-item strong {
  display: block;
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--texte-soft);
  margin-bottom: 0.3rem;
}
.info-bar-item span,
.info-bar-item a {
  font-family: var(--serif);
  font-size: 1rem;
  color: #fff;
  line-height: 1.4;
  display: block;
}
.info-bar-item a:hover { color: var(--texte-soft); }

/* ── Section spécialités ── */
.spec-section { background: var(--surface); position: relative; }
.spec-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.spec-header-text { max-width: 540px; }
.spec-header h2   { margin-bottom: 0.6rem; }
.spec-header p    { font-size: 0.95rem; line-height: 1.8; }
.spec-header .btn { align-self: center; }

.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.spec-card {
  background: var(--surface-2);
  overflow: hidden;
  transition: all var(--t);
  border: 1px solid var(--border);
}
.spec-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-lt);
  box-shadow: var(--shadow-md);
}

.spec-body { padding: 1.8rem 1.6rem 1.7rem; }
.spec-cat  {
  display: block;
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--texte-soft);
  margin-bottom: 0.5rem;
}
.spec-body h3 {
  font-size: 1.25rem;
  color: var(--texte);
  margin-bottom: 0.45rem;
  font-family: var(--serif);
}
.spec-body p  { font-size: 0.85rem; line-height: 1.65; margin-bottom: 1rem; }
.spec-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.spec-price {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}
.spec-halal {
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--texte-soft);
}
.spec-halal i { color: #fff; margin-right: 0.3rem; }

/* ── À propos accueil ── */
.about-home {
  background: var(--surface);
}
.about-text {
  max-width: var(--max);
  margin: 0 auto;
  padding: 5rem 2rem;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
}
.about-text h2 { margin-bottom: 1.4rem; }
.about-text p  { font-size: 0.98rem; line-height: 1.9; margin-bottom: 1rem; }
.about-text .halal { margin: 0.8rem 0 2.2rem; align-self: center; }
.about-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem 1.5rem;
  margin: 1.5rem 0 2rem;
}
.about-features li {
  font-size: 0.85rem;
  color: var(--texte-soft);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.about-features i { color: #fff; font-size: 0.72rem; }

/* ── Témoignages ── */
.testimonials {
  background: var(--noir);
  position: relative;
}
.testimonials::before { display: none; }
.testimonials .container { position: relative; }
.section-head p strong { color: #fff; font-family: var(--sans); letter-spacing: 0.5px; }

/* ── Responsive home ── */
@media (max-width: 1024px) {
  .spec-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .about-text          { padding: 3.5rem 1.5rem; }
  .about-features      { grid-template-columns: 1fr; }
  .info-bar-inner      { grid-template-columns: 1fr; }
  .info-bar-item       {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.16);
  }
  .info-bar-item:last-child { border-bottom: none; }
}
@media (max-width: 540px) {
  .spec-grid  { grid-template-columns: 1fr; }
  .hero-ctas  { flex-direction: column; align-items: stretch; width: 100%; max-width: 280px; margin: 0 auto; }
  .hero-ctas .btn { justify-content: center; }
  .spec-header { flex-direction: column; align-items: flex-start; }
}
