/* ================================================
   GLOBAL STYLES - Tag Pages
   Shenny's - Pili Pili Crispy Fried Chicken
   ================================================ */

/* ---------- Google Fonts Import ---------- */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,700;1,700&family=Inter:wght@400;500;600;700&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --primary: #f5a623;
  --primaryLight: rgba(255, 165, 30, 0.95);
  --dark: #1a1a1a;
  --white: #fff;
  --gray: #6b7280;
  --bg-cream: #fdf0d5;
  --accent-red: #e8541e;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.15);
  --radius: 10px;
  --max-width: 1200px;
}

/* ---------- Section Containers ---------- */
.section__container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem 2rem;
}

.section__header {
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section__subheader {
  font-family: "Oswald", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primaryLight);
  margin-bottom: 0.75rem;
}

.section__description {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gray);
  margin-bottom: 1rem;
}

/* ---------- Button ---------- */
.btn {
  display: inline-block;
  font-family: "Oswald", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--dark);
  background: var(--primary);
  padding: 0.75rem 1.75rem;
  border: 2px solid var(--dark);
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.btn:hover {
  background: #e8941a;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn i {
  margin-left: 0.3rem;
}

/* ---------- Floating Order Button ---------- */
.floating-btn-wrapper {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
}

.order-float {
  display: inline-block;
  font-family: "Oswald", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  background: var(--accent-red);
  padding: 0.85rem 1.5rem;
  border: 2px solid var(--dark);
  box-shadow: 0 4px 20px rgba(232, 84, 30, 0.4);
  animation: floatPulse 2s ease-in-out infinite;
}

.order-float:hover {
  background: #d4471a;
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(232, 84, 30, 0.5);
}

@keyframes floatPulse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* ---------- Breadcrumb ---------- */
.breadcrumb-container {
  background: var(--dark);
  padding: 0.75rem 2rem;
  margin-top: 80px;
}

.breadcrumb-wrapper {
  max-width: var(--max-width);
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  flex-wrap: wrap;
}

.breadcrumb li {
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb li a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb li a:hover {
  color: var(--white);
}

.breadcrumb li + li::before {
  content: "/";
  margin-right: 0.5rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ================================================
   HERO SECTION (Location & Tag Pages)
   ================================================ */
#home-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark);
}

.cs-container {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  width: 100%;
  padding: 4rem 2rem;
}

.cs-content {
  max-width: 650px;
}

.cs-title {
  font-family: "Oswald", sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.cs-subtitle {
  font-family: "Oswald", sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 500;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.cs-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
  max-width: 550px;
}

.cs-button-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cs-button-solid {
  display: inline-block;
  font-family: "Oswald", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--dark);
  background: var(--primary);
  padding: 0.9rem 2.25rem;
  border: 2px solid var(--dark);
  transition: background 0.3s ease, transform 0.2s ease;
  text-decoration: none;
}

.cs-button-solid:hover {
  background: var(--white);
  transform: translateY(-2px);
}

.cs-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.cs-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

/* ================================================
   DISH HERO (Dish Pages)
   ================================================ */
.header__container3 {
  padding-top: 2rem;
}

.dish-hero {
  background: linear-gradient(135deg, var(--bg-cream) 0%, #fff 100%);
}

.dish-hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.dish-hero-content h1 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.dish-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.dish-rating i {
  color: var(--primary);
  font-size: 1.1rem;
}

.rating-count {
  font-size: 0.85rem;
  color: var(--gray);
  margin-left: 0.5rem;
}

.dish-hero .dish-description {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.dish-details {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.dish-detail {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--dark);
}

.dish-detail i {
  color: var(--primaryLight);
  font-size: 1.1rem;
}

.dish-price {
  margin-top: 1rem;
}

.dish-hero-image {
  display: flex;
  justify-content: center;
}

.dish-hero-image img {
  width: 100%;
  max-width: 500px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

/* ================================================
   DISH DESCRIPTION SECTION
   ================================================ */
.dish-description-container {
  background: var(--white);
}

.dish-description-content h2 {
  margin-bottom: 1.25rem;
}

.dish-description-content h3 {
  font-family: "Oswald", sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.dish-ingredients {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 1.5rem;
}

.ingredients-list h4,
.nutrition-info h4 {
  font-family: "Oswald", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.ingredients-list ul,
.nutrition-info ul {
  list-style: none;
  padding: 0;
}

.ingredients-list li,
.nutrition-info li {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--gray);
  padding-left: 1.25rem;
  position: relative;
}

.ingredients-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
}

.nutrition-info li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  background: var(--accent-red);
  border-radius: 50%;
}

.nutrition-info small {
  color: var(--gray);
  font-size: 0.8rem;
}

/* ================================================
   REVIEWS SECTION
   ================================================ */
.reviews-container {
  background: var(--bg-cream);
  max-width: 100%;
  padding: 4rem 2rem;
}

.reviews-container .section__header {
  text-align: center;
  margin-bottom: 2rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(245, 166, 35, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.reviewer-info h4 {
  font-family: "Oswald", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
}

.reviewer-info p {
  font-size: 0.8rem;
  color: var(--gray);
}

.review-rating i {
  color: var(--primary);
  font-size: 0.9rem;
}

.review-text {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--gray);
  font-style: italic;
  margin-bottom: 0.75rem;
}

.review-date {
  font-size: 0.78rem;
  color: #999;
}

/* ================================================
   CTA SECTION
   ================================================ */
.cta-container,
.cta__container {
  text-align: center;
  background: linear-gradient(135deg, var(--primary) 0%, #e8941a 100%);
  max-width: 100%;
  padding: 4rem 2rem;
}

.cta-container .section__header,
.cta__container .section__header {
  color: var(--white);
}

.cta-container .section__description,
.cta__container .section__description {
  color: rgba(255, 255, 255, 0.9);
}

.cta-content {
  max-width: var(--max-width);
  margin: 0 auto;
}

.cta-content h2 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.cta-content p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

.cta-container .btn,
.cta__container .btn {
  background: var(--dark);
  color: var(--primary);
  border-color: var(--dark);
}

.cta-container .btn:hover,
.cta__container .btn:hover {
  background: #333;
  color: var(--white);
}

.menu-btn-wrapper {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ================================================
   EXPLORE / CONTENT SECTIONS
   ================================================ */
.explore__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.explore__image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.explore__content {
  padding: 1rem 0;
}

.explore__btn {
  margin-top: 1.5rem;
}

.dish-title {
  font-family: "Oswald", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  margin-top: 1rem;
  margin-bottom: 0.25rem;
}

.dish-description {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--gray);
}

/* ================================================
   DELIVERY AREAS
   ================================================ */
.delivery-areas-container {
  background: var(--bg-cream);
  max-width: 100%;
  padding: 4rem 2rem;
}

.delivery-areas-container .section__header,
.delivery-areas-container .section__description {
  text-align: center;
}

.delivery-areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: var(--max-width);
  margin: 2rem auto 0;
}

.delivery-area-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(245, 166, 35, 0.12);
}

.delivery-area-card h3 {
  font-family: "Oswald", sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 1rem;
}

.delivery-area-card ul {
  list-style: none;
  padding: 0;
}

.delivery-area-card li {
  font-size: 0.9rem;
  line-height: 2;
  color: var(--gray);
  padding-left: 1.25rem;
  position: relative;
}

.delivery-area-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
}

.delivery-area-card a {
  color: var(--primaryLight);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.delivery-area-card a:hover {
  color: var(--accent-red);
}

.delivery-features {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.delivery-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.delivery-features i {
  color: var(--primaryLight);
  font-size: 1.1rem;
}

/* ================================================
   HOW TO ORDER SECTION
   ================================================ */
.how-to-order-container {
  text-align: center;
}

.how-to-order-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.order-step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(245, 166, 35, 0.12);
  text-align: center;
}

.step-number {
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--dark);
  font-family: "Oswald", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.order-step h3 {
  font-family: "Oswald", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.order-step p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--gray);
}

.order-step a {
  color: var(--primaryLight);
  font-weight: 600;
}

.order-cta {
  margin-top: 2rem;
  text-align: center;
}

/* ================================================
   MAP SECTION
   ================================================ */
.map__container {
  padding: 4rem 2rem;
}

.map__wrapper {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2rem;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 400px;
}

.map__iframe {
  position: relative;
  min-height: 400px;
}

.map__iframe iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.map__details {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.map__details h2 {
  font-family: "Oswald", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
}

.map__details p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 0.25rem;
}

.map__buttons {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}

/* ================================================
   RESPONSIVE
   ================================================ */

/* Tablet */
@media (max-width: 768px) {
  .dish-hero-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .dish-hero-image {
    order: -1;
  }

  .dish-ingredients {
    grid-template-columns: 1fr;
  }

  .explore__container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .map__wrapper {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .map__iframe {
    min-height: 300px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .how-to-order-steps {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }

  .cs-content {
    max-width: 100%;
  }

  #home-hero {
    min-height: 60vh;
  }

  .breadcrumb-container {
    margin-top: 70px;
    padding: 0.6rem 1rem;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .section__container {
    padding: 3rem 1rem;
  }

  .dish-details {
    flex-direction: column;
    gap: 0.75rem;
  }

  .cs-title {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

  #home-hero {
    min-height: 55vh;
  }

  .cs-container {
    padding: 3rem 1rem;
  }

  .how-to-order-steps {
    grid-template-columns: 1fr;
  }

  .map__details {
    padding: 1.5rem;
  }

  .floating-btn-wrapper {
    bottom: 1rem;
    right: 1rem;
  }

  .breadcrumb-container {
    margin-top: 60px;
  }

  .delivery-areas-grid {
    grid-template-columns: 1fr;
  }
}
