/* ─────────────────────────────────────────────
   index.css — homepage sections
───────────────────────────────────────────── */

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/static/img/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 24px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 10vw, 90px);
  color: var(--color-white);
  letter-spacing: 6px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
  margin-bottom: 12px;
}

.hero-sub {
  font-size: clamp(14px, 3vw, 20px);
  color: rgba(255,255,255,0.85);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 36px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── About ── */
.about-section {
  background-color: var(--color-red);
  padding: var(--section-py) 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.about-text h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 26px);
  margin-bottom: 20px;
  color: var(--color-white);
}

.about-text p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.8;
}

.about-image img {
  width: 100%;
  border-radius: 4px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

@media (max-width: 767px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ── Info cards ── */
.info-cards-section {
  background-color: var(--color-red);
  padding: 0 0 var(--section-py);
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.info-card {
  background-color: rgba(0,0,0,0.25);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--color-white);
  margin-bottom: 8px;
}

.hours-list,
.specials-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.specials-list li {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 6px;
}

.info-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}

.info-card .btn {
  margin-top: auto;
  align-self: flex-start;
}

@media (max-width: 1023px) {
  .info-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .info-cards {
    grid-template-columns: 1fr;
  }
}

/* ── Reviews ── */
.reviews-section {
  position: relative;
  padding: var(--section-py) 0;
  background-color: var(--color-dark-2);
  overflow: hidden;
}

.reviews-bg {
  position: absolute;
  inset: 0;
  background-image: url('/static/img/bar-interior.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}

.reviews-section .container { position: relative; }

.reviews-summary {
  display: flex;
  justify-content: center;
  margin-bottom: 36px;
}

.google-rating {
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 16px 24px;
  border-radius: 8px;
  transition: background-color var(--transition);
}

.google-rating:hover { background-color: rgba(255,255,255,0.1); }

.rating-number {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--color-white);
}

.rating-count {
  font-size: 13px;
  color: var(--color-text-muted);
  display: block;
  margin-top: 2px;
}

/* ── Carousel ── */
.reviews-carousel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.review-card {
  background-color: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background-color: var(--color-red);
}

.reviewer-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--color-white);
}

.review-source {
  font-size: 12px;
  color: var(--color-text-muted);
}

.review-stars { display: flex; gap: 2px; }

.review-stars span {
  color: #FBCF1E;
  font-size: 16px;
}

.review-text {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  font-style: italic;
}

.review-date {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-top: auto;
}

.reviews-loading {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--color-text-muted);
  padding: 40px;
}

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

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.25);
  border: none;
  cursor: pointer;
  transition: background-color var(--transition);
}

.carousel-dot.active {
  background-color: var(--color-white);
}

@media (max-width: 767px) {
  .reviews-carousel {
    grid-template-columns: 1fr;
  }
}