/* css/index.css */

/* Free Delivery Announcement Banner */
.free-delivery-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  background: linear-gradient(90deg, #3d8b40, var(--color-veg), #3d8b40);
  color: var(--text-white);
  text-align: center;
  border-bottom: 2px solid rgba(0, 0, 0, 0.25);
}

.free-delivery-banner .icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  animation: banner-icon-bounce 2s ease-in-out infinite;
}

.free-delivery-banner span {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.free-delivery-banner strong {
  font-weight: 900;
}

@keyframes banner-icon-bounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-2px); }
}

@media (max-width: 576px) {
  .free-delivery-banner {
    padding: 10px 16px;
  }
  .free-delivery-banner span {
    font-size: 11px;
  }
}

/* Hero Section Styles */
.hero-section {
  position: relative;
  height: 90vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--bg-black);
}

.hero-bg-zoom {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../assets/hero_bg.png');
  background-size: cover;
  background-position: center;
  transform-origin: center;
  animation: kenBurnsEffect 20s linear infinite;
  z-index: 1;
}

@keyframes kenBurnsEffect {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(10,10,10,0.4) 0%, rgba(5,5,5,0.9) 100%);
  z-index: 2;
}

.hero-container {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  color: var(--primary-yellow);
  text-transform: uppercase;
  letter-spacing: 4px;
  display: block;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-title {
  font-family: var(--font-logo);
  font-size: 82px;
  color: var(--text-white);
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 25px;
  text-shadow: var(--text-stroke-3d);
}

.hero-title .highlight {
  color: var(--primary-yellow);
}

.hero-desc {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto 40px auto;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 20px;
}

@media (max-width: 768px) {
  .hero-section {
    height: 85vh;
  }
  .hero-title {
    font-size: 48px;
  }
  .hero-desc {
    font-size: 15px;
  }
  .hero-ctas {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  .hero-ctas .btn {
    width: 100%;
    max-width: 320px;
  }
}

/* Featured / Signature Grid */
.signature-section {
  padding: 100px 0;
  background-color: var(--bg-charcoal);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.featured-card {
  background-color: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 6px;
  overflow: hidden;
  transition: all var(--transition-normal);
}

.featured-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 208, 0, 0.2);
  box-shadow: var(--shadow-lg);
}

.card-img-wrap {
  position: relative;
  height: 240px;
  width: 100%;
  overflow: hidden;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.featured-card:hover .card-img-wrap img {
  transform: scale(1.05);
}

.card-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #222222 0%, #111111 100%);
}

.card-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 10;
}

.card-info {
  padding: 25px;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.card-price {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 900;
  color: var(--primary-yellow);
}

.card-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--text-white);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.card-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 25px;
  min-height: 66px; /* Align heights */
}

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

@media (max-width: 768px) {
  .signature-section {
    padding: 60px 0;
  }
  .featured-grid {
    grid-template-columns: 1fr;
  }
}

/* BBQ Specials Section */
.bbq-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #080808 0%, #160c00 50%, #080808 100%);
  border-top: 1px solid rgba(255, 80, 0, 0.1);
  border-bottom: 1px solid rgba(255, 80, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.bbq-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 100, 0, 0.07) 0%, transparent 65%);
  pointer-events: none;
}

.bbq-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.bbq-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 208, 0, 0.08);
  border-radius: 6px;
  overflow: hidden;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.bbq-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 208, 0, 0.3);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.7);
}

.bbq-card-img {
  position: relative;
  height: 190px;
  overflow: hidden;
  background: linear-gradient(135deg, #2a1400 0%, #120900 100%);
}

.bbq-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.bbq-card:hover .bbq-card-img img {
  transform: scale(1.07);
}

.bbq-card-body {
  padding: 16px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.bbq-card-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 900;
  color: var(--text-white);
  text-transform: uppercase;
  margin: 8px 0 6px;
  letter-spacing: 0.5px;
}

.bbq-card-variants {
  font-size: 12px;
  color: var(--primary-yellow);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.5;
  flex-grow: 1;
}

@media (max-width: 1100px) {
  .bbq-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .bbq-section { padding: 60px 0; }
  .bbq-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

@media (max-width: 480px) {
  .bbq-grid { grid-template-columns: 1fr; }
}

/* Trust section stats */
.trust-section {
  padding: 60px 0;
  background-color: var(--bg-black);
  border-bottom: 1px solid rgba(255, 208, 0, 0.1);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.trust-value {
  font-family: var(--font-logo);
  font-size: 42px;
  color: var(--primary-yellow);
  letter-spacing: 1px;
}

.trust-label {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 1px;
}

@media (max-width: 992px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }
}

@media (max-width: 576px) {
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* Map Section */
.home-map-section {
  padding: 100px 0;
  background-color: var(--bg-charcoal);
}

.map-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.home-map-title {
  font-family: var(--font-logo);
  font-size: 48px;
  color: var(--primary-yellow);
  text-shadow: var(--text-stroke-3d);
  letter-spacing: 1px;
  margin-bottom: 20px;
  line-height: 1.1;
}

.home-map-desc {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 30px;
}

.home-map-details {
  background-color: var(--bg-card);
  padding: 20px 25px;
  border-left: 4px solid var(--primary-yellow);
  border-radius: 0 6px 6px 0;
  margin-bottom: 35px;
}

.detail-line {
  margin-bottom: 12px;
  font-size: 14px;
}

.detail-line:last-child {
  margin-bottom: 0;
}

.detail-line strong {
  color: var(--primary-yellow);
  display: block;
  font-family: var(--font-heading);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.map-actions {
  display: flex;
  gap: 15px;
}

.map-iframe-wrap {
  position: relative;
  height: 450px;
  border-radius: 6px;
  overflow: hidden;
  border: 3px solid var(--bg-card);
  box-shadow: var(--shadow-lg);
}

.map-iframe-wrap iframe {
  width: 100%;
  height: 100%;
}

@media (max-width: 992px) {
  .map-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .map-iframe-wrap {
    height: 350px;
  }
}
