/* ============================================
   PROLIFIC FARE - STATIC HTML/CSS/JS
   Bold Modern Design Theme
   ============================================ */

/* ============================================
   1. RESET & BASE STYLES
   ============================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #ffffff;
  color: #1a1a1a;
  line-height: 1.6;
}

/* ============================================
   2. TYPOGRAPHY
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

/* ============================================
   3. COLOR PALETTE
   ============================================ */

:root {
  --primary-gold: #FFC107;
  --primary-orange: #FF8C00;
  --dark-bg: #1a1a1a;
  --dark-secondary: #2a2a2a;
  --light-bg: #ffffff;
  --light-secondary: #f5f5f5;
  --text-dark: #1a1a1a;
  --text-light: #ffffff;
  --text-muted: #666666;
  --border-light: #e0e0e0;
  --border-dark: #333333;
}

/* ============================================
   4. LAYOUT
   ============================================ */

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* ============================================
   5. HEADER & NAVIGATION
   ============================================ */

header {
  background-color: var(--light-bg);
  border-bottom: 3px solid var(--primary-gold);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text-dark);
}

.logo-image {
  height: 60px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.logo-text-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-gold);
  margin-left: 0.75rem;
}

.logo-mark {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  border: 2px solid var(--primary-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: var(--primary-gold);
  font-size: 1.25rem;
}

.logo-text h1 {
  font-size: 1.5rem;
  margin: 0;
  color: var(--text-dark);
}

.logo-text p {
  font-size: 0.75rem;
  color: var(--primary-gold);
  margin: 0;
  font-weight: 600;
}

nav ul {
  display: none;
  list-style: none;
  gap: 2rem;
}

nav a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--primary-gold);
}

@media (min-width: 768px) {
  nav ul {
    display: flex;
  }
}

/* ============================================
   6. BUTTONS
   ============================================ */

.btn {
  display: inline-block;
  padding: 0.875rem 1.75rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Playfair Display', serif;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
}

.btn-primary {
  background-color: var(--primary-gold);
  color: var(--text-dark);
}

.btn-primary:hover {
  background-color: #FFD54F;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-light);
  border: 2px solid var(--primary-gold);
}

.btn-secondary:hover {
  background-color: var(--primary-gold);
  color: var(--text-dark);
  transform: translateY(-2px);
}

.btn-dark {
  background-color: var(--dark-bg);
  color: var(--primary-gold);
}

.btn-dark:hover {
  background-color: var(--dark-secondary);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

/* ============================================
   7. HERO SECTION
   ============================================ */

.hero {
  background-color: var(--dark-bg);
  color: var(--text-light);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 140, 0, 0.05) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

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

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-text h1 {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.hero-badge {
  display: inline-block;
  border: 2px solid var(--primary-gold);
  color: var(--primary-gold);
  padding: 0.5rem 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.hero-highlight {
  background-color: var(--primary-gold);
  color: var(--text-dark);
  padding: 1rem;
  margin: 1rem 0;
  font-size: 1.5rem;
  font-weight: 700;
}

.hero-description {
  color: #cccccc;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* ============================================
   8. FEATURED MENU SECTION
   ============================================ */

.featured-menu {
  padding: 4rem 0;
  background-color: var(--light-bg);
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.section-divider {
  width: 6rem;
  height: 0.25rem;
  background-color: var(--primary-gold);
  margin-bottom: 3rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: stretch;
}

@media (min-width: 768px) {
  .menu-grid {
    grid-template-columns: 1.2fr 1fr;
  }
}

@media (min-width: 1024px) {
  .menu-grid {
    grid-template-columns: 1.3fr 1fr;
  }
}

.menu-image {
  overflow: hidden;
  border-radius: 0.75rem;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  height: 100%;
  min-height: 400px;
}

.menu-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.75rem;
  transition: transform 0.3s ease;
}

.menu-image:hover img {
  transform: scale(1.05);
}

.menu-details {
  background-color: var(--dark-bg);
  color: var(--text-light);
  padding: 2.5rem;
  border-radius: 0.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 400px;
}

.menu-details h3 {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.menu-badge {
  display: inline-block;
  background-color: var(--primary-gold);
  color: var(--text-dark);
  padding: 0.5rem 1rem;
  margin-bottom: 1rem;
  border-radius: 0.25rem;
  font-weight: 700;
  font-size: 0.85rem;
}

.menu-price {
  font-size: 1.75rem;
  color: var(--primary-gold);
  font-weight: 700;
  margin-bottom: 1rem;
}

.menu-description {
  color: #aaaaaa;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.menu-list {
  list-style: none;
  margin-bottom: 2rem;
}

.menu-list li {
  padding: 0.5rem 0;
  color: #cccccc;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-list li:last-child {
  border-bottom: none;
}

.menu-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .menu-buttons {
    flex-direction: row;
  }
}

/* ============================================
   9. PAYMENT SECTION
   ============================================ */

.payment {
  padding: 4rem 0;
  background-color: var(--light-secondary);
}

.payment-card {
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-secondary) 100%);
  color: var(--text-light);
  padding: 3rem;
  border-radius: 0.75rem;
  text-align: center;
}

.payment-card h2 {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.payment-card p {
  color: #aaaaaa;
  margin-bottom: 2rem;
}

.payment-highlight {
  color: var(--primary-gold);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

/* ============================================
   10. ABOUT SECTION
   ============================================ */

.about {
  padding: 4rem 0;
  background-color: var(--light-bg);
}

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

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 0.75rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.about-content h2 {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.specialties {
  background-color: var(--dark-bg);
  color: var(--text-light);
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin-top: 2rem;
}

.specialties h4 {
  color: var(--primary-gold);
  margin-bottom: 1rem;
}

.specialties ul {
  list-style: none;
}

.specialties li {
  padding: 0.5rem 0;
  color: #cccccc;
}

.specialties li::before {
  content: '✓ ';
  color: var(--primary-gold);
  font-weight: 700;
  margin-right: 0.5rem;
}

/* ============================================
   11. SERVICES SECTION
   ============================================ */

.services {
  padding: 4rem 0;
  background-color: var(--light-secondary);
}

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

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  border-radius: 0.75rem;
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.service-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.service-card-body {
  padding: 1.75rem;
  color: var(--text-light);
}

.service-card h3 {
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.service-card-1 .service-card-body {
  background-color: var(--dark-bg);
}

.service-card-2 .service-card-body {
  background-color: var(--primary-gold);
  color: var(--text-dark);
}

.service-card-2 h3 {
  color: var(--text-dark);
}

.service-card-3 .service-card-body {
  background-color: var(--primary-orange);
}

/* ============================================
   12. REVIEWS SECTION
   ============================================ */

.reviews {
  padding: 4rem 0;
  background-color: var(--dark-bg);
  color: var(--text-light);
}

.reviews .section-title {
  color: var(--text-light);
}

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

@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.review-card {
  background-color: var(--light-bg);
  color: var(--text-dark);
  padding: 2rem;
  border-radius: 0.5rem;
}

.stars {
  color: var(--primary-gold);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.review-text {
  margin-bottom: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.review-author {
  font-weight: 700;
  color: var(--text-dark);
}

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

/* ============================================
   13. NEWSLETTER SECTION
   ============================================ */

.newsletter {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--primary-gold) 0%, #FFD54F 100%);
  color: var(--text-dark);
  text-align: center;
}

.newsletter h2 {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.newsletter p {
  color: rgba(26, 26, 26, 0.8);
  margin-bottom: 2rem;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .newsletter-form {
    flex-direction: row;
  }
}

.newsletter-form input {
  flex: 1;
  padding: 0.875rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
}

.newsletter-form button {
  padding: 0.875rem 1.75rem;
  background-color: var(--text-dark);
  color: var(--primary-gold);
  border: none;
  border-radius: 0.5rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background-color: rgba(26, 26, 26, 0.9);
  transform: translateY(-2px);
}

/* ============================================
   14. FOOTER
   ============================================ */

footer {
  background-color: var(--dark-bg);
  color: var(--text-light);
  padding: 3rem 0 1rem;
  border-top: 1px solid var(--border-dark);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

.footer-section h4 {
  color: var(--primary-gold);
  margin-bottom: 1rem;
}

.footer-section p {
  color: #aaaaaa;
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: #aaaaaa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--primary-gold);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--primary-gold);
  color: var(--text-dark);
  border-radius: 50%;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: #FFD54F;
  transform: translateY(-3px);
}

.footer-cta {
  background-color: var(--primary-gold);
  color: var(--text-dark);
  padding: 2rem;
  border-radius: 0.5rem;
  text-align: center;
  margin-bottom: 2rem;
}

.footer-cta h3 {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-dark);
  text-align: center;
  color: #666666;
  font-size: 0.9rem;
}

/* ============================================
   15. UTILITY CLASSES
   ============================================ */

.accent-divider {
  height: 0.25rem;
  background: linear-gradient(90deg, var(--primary-orange) 0%, var(--primary-gold) 50%, var(--primary-orange) 100%);
  margin: 2rem 0;
}

.text-center {
  text-align: center;
}

.mt-4 {
  margin-top: 2rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

/* ============================================
   16. RESPONSIVE ADJUSTMENTS
   ============================================ */

@media (max-width: 640px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero {
    padding: 2rem 0;
  }

  .featured-menu,
  .payment,
  .about,
  .services,
  .reviews,
  .newsletter {
    padding: 2rem 0;
  }

  .menu-details {
    padding: 1.5rem;
  }

  .payment-card {
    padding: 1.5rem;
  }
}
