/* ═══════════════════════════════════════════════════════════
   Ciao Riviera — Home Page Stylesheet
   ═══════════════════════════════════════════════════════════ */

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../media/customers-enjoy-food-ciaoriviera.webp') center/cover no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero:hover .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20,36,30,0.55) 0%,
    rgba(20,36,30,0.35) 50%,
    rgba(20,36,30,0.7) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--cream);
  padding: 0 24px;
  max-width: 760px;
}
.hero-eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(72px, 14vw, 148px);
  line-height: 0.9;
  letter-spacing: -2px;
  margin-bottom: 18px;
}
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-subtitle {
  font-size: clamp(13px, 2vw, 17px);
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(245,240,232,0.78);
  margin-bottom: 22px;
}
.hero-divider {
  font-size: 20px;
  margin-bottom: 32px;
  opacity: 0.75;
}
.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #fff;
  padding: 14px 30px;
  border-radius: 2px;
  text-decoration: none;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  transition: background 0.2s;
  white-space: nowrap;
}
.btn-primary:hover { background: var(--gold-light); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(245,240,232,0.45);
  padding: 14px 30px;
  border-radius: 2px;
  text-decoration: none;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(245,240,232,0.7);
}

/* ── INFO STRIP ── */
.info-strip {
  background: var(--forest);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 36px;
  color: var(--cream);
  text-decoration: none;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: background 0.2s;
}
.info-item:last-child { border-right: none; }
.info-item:hover { background: rgba(255,255,255,0.05); }
.info-icon { font-size: 20px; }
.info-label {
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 3px;
}
.info-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--cream);
}

/* ── SHARED SECTION HELPERS ── */
.section-eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(36px, 5.5vw, 64px);
  line-height: 1.05;
  color: var(--forest);
  margin-bottom: 14px;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-rule {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 32px;
}

/* ── OUR STORY ── */
.story-section {
  padding: 90px 28px;
  max-width: 1200px;
  margin: 0 auto;
}
.story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.story-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.story-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}
.story-img:first-child { margin-top: 36px; }
.story-text {}
.story-body {
  font-size: 16px;
  line-height: 1.85;
  color: #4a4540;
  margin-bottom: 18px;
}
.story-highlight {
  border-left: 3px solid var(--gold);
  padding-left: 22px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 21px;
  line-height: 1.55;
  color: var(--forest);
  margin: 28px 0;
}

/* ── FEATURES STRIP ── */
.features-strip {
  background: var(--forest);
  padding: 64px 28px;
}
.features-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.feature-item {
  padding: 32px 28px;
  border-right: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
.feature-item:last-child { border-right: none; }
.feature-icon { font-size: 32px; margin-bottom: 16px; }
.feature-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 10px;
}
.feature-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(245,240,232,0.6);
}

/* ── MENU PREVIEW ── */
.menu-section {
  padding: 90px 28px;
  text-align: center;
}
.menu-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin: 40px 0 36px;
  text-align: left;
}
.menu-card {
  background: var(--warm-white);
  padding: 36px 30px;
  transition: background 0.2s;
}
.menu-card:hover { background: var(--cream); }
.menu-card-icon { font-size: 28px; margin-bottom: 16px; }
.menu-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 10px;
}
.menu-card-desc {
  font-size: 14.5px;
  line-height: 1.72;
  color: #4a4540;
  margin-bottom: 16px;
}
.menu-card-from {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: var(--gold);
  text-transform: uppercase;
}
.menu-cta { margin-top: 8px; }

/* ── GALLERY ── */
.gallery-section {
  background: var(--forest);
  padding: 64px 0 0;
}
.gallery-header {
  padding: 0 28px 48px;
}
.gallery-header .section-title { color: var(--cream); }
.gallery-header .section-rule { margin: 14px auto 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.gallery-item { overflow: hidden; aspect-ratio: 3/4; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

/* ── REVIEWS ── */
.reviews-section {
  padding: 90px 28px;
  background: var(--warm-white);
  text-align: center;
}
.reviews-inner { max-width: 1100px; margin: 0 auto; }
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--forest);
  color: var(--cream);
  padding: 16px 28px;
  border-radius: 4px;
  margin: 28px 0 44px;
}
.rating-score {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 300;
  line-height: 1;
  color: var(--gold-light);
}
.rating-stars {
  font-size: 18px;
  color: var(--gold-light);
  letter-spacing: 2px;
  margin-bottom: 4px;
}
.rating-source {
  font-size: 11px;
  letter-spacing: 1.5px;
  color: rgba(245,240,232,0.55);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  text-align: left;
}
.review-card {
  background: var(--warm-white);
  padding: 32px 28px;
  transition: background 0.2s;
}
.review-card:hover { background: var(--cream); }
.review-stars {
  font-size: 15px;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.review-text {
  font-size: 15px;
  line-height: 1.72;
  color: #4a4540;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  margin-bottom: 18px;
}
.review-author {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 3px;
}
.review-platform {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 1px;
}

/* ── CTA BAND ── */
.cta-band {
  position: relative;
  padding: 100px 28px;
  text-align: center;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: url('../media/customers-enjoy-food-ciaoriviera.webp') center/cover no-repeat;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20,36,30,0.88) 0%, rgba(44,74,62,0.78) 100%);
}
.cta-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
  color: var(--cream);
}
.cta-content .section-eyebrow { color: var(--gold-light); }
.cta-content .section-title { color: var(--cream); margin-bottom: 14px; }
.cta-content .section-rule { margin: 0 auto 28px; }
.cta-content p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(245,240,232,0.75);
  margin-bottom: 36px;
}
.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── FIND US ── */
.findus-section {
  padding: 90px 28px;
}
.findus-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}
.findus-details {}
.hours-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--forest);
  color: var(--cream);
  padding: 16px 22px;
  border-radius: 4px;
  margin: 28px 0;
  font-size: 17px;
}
.hours-badge span { font-size: 22px; }
.hours-badge strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
}
.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-list li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 15px;
  color: #4a4540;
}
.ci { font-size: 17px; flex-shrink: 0; }
.contact-list a {
  color: var(--forest);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s;
  line-height: 1.5;
}
.contact-list a:hover { color: var(--gold); }
.map-placeholder {
  position: relative;
  border: 1px solid var(--border);
  overflow: hidden;
}
.map-placeholder iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: none;
}

/* ── FOOTER override for index ── */
footer {
  background: var(--forest);
  color: rgba(245,240,232,0.65);
  font-family: 'Jost', sans-serif;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .story-inner { gap: 40px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-item:nth-child(2) { border-right: none; }
  .feature-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.08); }
  .menu-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item:nth-child(n+4) { display: none; }
}

@media (max-width: 900px) {
  .story-inner { grid-template-columns: 1fr; }
  .story-images { max-width: 480px; margin: 0 auto; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .findus-inner { grid-template-columns: 1fr; }
  .map-placeholder iframe { height: 340px; }
}

@media (max-width: 768px) {
  .hero-title { font-size: clamp(60px, 16vw, 100px); }
  .story-section { padding: 64px 20px; }
  .menu-section { padding: 64px 20px; }
  .reviews-section { padding: 64px 20px; }
  .findus-section { padding: 64px 20px; }
  .cta-band { padding: 72px 20px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item:nth-child(n+4) { display: none; }
}

@media (max-width: 600px) {
  .story-inner { grid-template-columns: 1fr; gap: 28px; }
  .story-images { grid-template-columns: 1fr 1fr; max-width: 100%; }
  .story-img:first-child { margin-top: 0; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .feature-item:last-child { border-bottom: none; }
  .menu-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:nth-child(n+4) { display: block; }
  .gallery-item:nth-child(5) { display: none; }
  .info-strip { flex-direction: column; }
  .info-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); justify-content: center; }
  .info-item:last-child { border-bottom: none; }
  .hero-buttons { flex-direction: column; align-items: center; }
}
