/* ============================================================
   HOME PAGE STYLES
   ============================================================ */

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/hero_empanadas.png');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(13, 13, 13, 0.82) 0%,
    rgba(27, 61, 110, 0.50) 50%,
    rgba(13, 13, 13, 0.30) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 8rem var(--section-px) 5rem;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: center;
  width: 100%;
}
.hero-text { max-width: 600px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeInUp 0.7s ease 0.2s forwards;
}
.hero-eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--gold-light);
  display: inline-block;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeInUp 0.7s ease 0.4s forwards;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 2.25rem;
  max-width: 500px;
  opacity: 0;
  animation: fadeInUp 0.7s ease 0.6s forwards;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  opacity: 0;
  animation: fadeInUp 0.7s ease 0.8s forwards;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
  opacity: 0;
  animation: fadeInUp 0.7s ease 1s forwards;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
  font-weight: 500;
}
.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-light);
}

/* Mural frog illustration */
.hero-illustration {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: fadeIn 1s ease 0.6s forwards;
}
.hero-illustration img {
  width: 380px;
  max-width: 100%;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.5));
  animation: floatY 6s ease-in-out infinite;
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 2;
  animation: fadeIn 1s ease 1.2s both;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollLine 1.5s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 0.5; }
  50%       { transform: scaleY(0.5); opacity: 1; }
}

@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 2rem; }
  .hero-illustration { display: none; }
}
@media (max-width: 600px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
}

/* ─── SIGNATURE EMPANADAS ─── */
.empanadas-section { background: var(--white); }
.empanadas-header { text-align: center; margin-bottom: 3.5rem; }
.empanada-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}
.empanada-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all var(--transition);
  cursor: default;
}
.empanada-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--gold);
}
.empanada-card-image {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--cream-dark);
}
.empanada-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.empanada-card:hover .empanada-card-image img { transform: scale(1.06); }
.empanada-card-body {
  padding: 1.1rem;
}
.empanada-card-body .badge { margin-bottom: 0.6rem; }
.empanada-card-body h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 0.4rem;
}
.empanada-card-body p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .empanada-cards { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .empanada-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 380px) {
  .empanada-cards { grid-template-columns: 1fr; }
}

/* ─── ABOUT PREVIEW ─── */
.about-preview { background: var(--cream); }
.about-preview .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-preview-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}
.about-preview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-preview-image .image-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(253,248,242,0.92);
  backdrop-filter: blur(10px);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.about-preview-image .image-caption strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}
.about-preview-image .image-caption span {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.about-preview-text h2 { margin-bottom: 1.25rem; }
.about-preview-text p { margin-bottom: 1.25rem; }
.about-preview-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}
.about-value-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.about-value-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  background: var(--gold-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.about-value-item h5 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.15rem;
}
.about-value-item p { font-size: 0.8rem; color: var(--text-muted); }

@media (max-width: 900px) {
  .about-preview .container { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-preview-image { aspect-ratio: 16/9; }
}

/* ─── FEATURED MENU ─── */
.menu-preview { background: var(--white); }
.menu-tabs-container { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.menu-tabs {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 3rem;
  padding: 0.5rem;
  background: var(--cream);
  border-radius: 100px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.menu-tab-btn {
  padding: 0.6rem 1.4rem;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  background: transparent;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
}
.menu-tab-btn.active, .menu-tab-btn:hover {
  background: var(--white);
  color: var(--red);
  box-shadow: var(--shadow-sm);
}
.menu-tab-panel { display: none; }
.menu-tab-panel.active { display: grid; }
.menu-items-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.menu-item-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.menu-item-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.menu-item-image {
  width: 72px;
  min-width: 72px;
  height: 72px;
  border-radius: 10px;
  object-fit: cover;
  background: var(--cream-dark);
}
.menu-item-info h4 { font-size: 0.95rem; font-weight: 600; color: var(--text); margin-bottom: 0.25rem; }
.menu-item-info p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.4; }

@media (max-width: 900px) { .menu-items-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .menu-items-grid { grid-template-columns: 1fr; } }

/* ─── WEEKEND SPECIALS ─── */
.specials-section { background: var(--navy); overflow: hidden; }
.specials-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.specials-eyebrow { color: var(--gold-light) !important; }
.specials-eyebrow::before, .specials-eyebrow::after { background: var(--gold-light) !important; }
.specials-section h2 { color: var(--white); }
.specials-section p { color: rgba(255,255,255,0.7); }
.special-cards { display: flex; flex-direction: column; gap: 1.25rem; }
.special-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: all var(--transition);
}
.special-card:hover {
  background: rgba(255,255,255,0.10);
  border-color: var(--gold);
  transform: translateX(4px);
}
.special-price {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  white-space: nowrap;
}
.special-info h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.special-info p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}
.specials-note {
  font-size: 0.82rem !important;
  color: rgba(255,255,255,0.45) !important;
  margin-top: 1rem;
}

@media (max-width: 900px) {
  .specials-section .container { grid-template-columns: 1fr; }
}

/* ─── WHY PEOPLE LOVE US ─── */
.why-section { background: var(--cream); }
.why-section .section-eyebrow { display: flex; justify-content: center; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.why-card {
  text-align: center;
  padding: 2rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--gold);
}
.why-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: var(--gold-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 1.25rem;
}
.why-card h4 { font-size: 1rem; font-weight: 600; color: var(--text); margin-bottom: 0.5rem; }
.why-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.55; }

@media (max-width: 1024px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 380px) { .why-grid { grid-template-columns: 1fr; } }

/* ─── GALLERY PREVIEW ─── */
.gallery-preview-section { background: var(--white); }
.gallery-preview-section p { max-width: 500px; margin: 0 auto 2.5rem; }
.gallery-grid-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item-inner { position: relative; height: 100%; }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item:hover .gallery-item-overlay { background: rgba(0,0,0,0.3); }
.gallery-overlay-icon {
  opacity: 0;
  color: white;
  font-size: 1.5rem;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay-icon { opacity: 1; }

.gallery-item:nth-child(1) { aspect-ratio: 1; }
.gallery-item:nth-child(2) { aspect-ratio: 16/9; }
.gallery-item:nth-child(3) { aspect-ratio: 1; }
.gallery-item:nth-child(4) { aspect-ratio: 1; }
.gallery-item:nth-child(5) { aspect-ratio: 4/3; }
.gallery-item:nth-child(6) { aspect-ratio: 4/3; }

@media (max-width: 768px) {
  .gallery-grid-preview { grid-template-columns: 1fr 1fr; }
  .gallery-item.tall, .gallery-item.wide { grid-row: auto; grid-column: auto; }
}
@media (max-width: 480px) {
  .gallery-grid-preview { grid-template-columns: 1fr; }
}

/* ─── REVIEWS PREVIEW ─── */
.reviews-preview { background: var(--cream); }
.reviews-grid-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.review-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.reviewer-info { display: flex; align-items: center; gap: 0.75rem; }
.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--gold);
}
.reviewer-details h5 {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.1rem;
}
.reviewer-details span { font-size: 0.75rem; color: var(--text-light); }
.review-source {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.05em;
}
.review-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-style: italic;
}
.review-text::before { content: '"'; color: var(--gold); font-size: 1.5rem; font-family: var(--font-heading); line-height: 0; vertical-align: -0.4em; display: inline-block; margin-right: 2px; }

@media (max-width: 900px) { .reviews-grid-preview { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .reviews-grid-preview { grid-template-columns: 1fr; } }

/* ─── VISIT US ─── */
.visit-section { background: var(--white); }
.visit-section .container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
.visit-info { }
.visit-info h2 { margin-bottom: 0.75rem; }
.visit-info .description { margin-bottom: 2rem; }
.visit-details { display: flex; flex-direction: column; gap: 1.5rem; }
.visit-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.visit-detail-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: var(--red-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.visit-detail-body h5 {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}
.visit-detail-body p, .visit-detail-body a {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
  line-height: 1.6;
}
.visit-detail-body a { transition: color var(--transition); }
.visit-detail-body a:hover { color: var(--red); }
.hours-table {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.88rem;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
}
.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: var(--text-muted); }
.hours-row .time { color: var(--text); font-weight: 500; text-align: right; }
.hours-row .closed { color: var(--red); }
.visit-map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 420px;
  background: var(--cream-dark);
}
.visit-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

@media (max-width: 900px) {
  .visit-section .container { grid-template-columns: 1fr; }
  .visit-map { height: 300px; }
}
