/* === Reset & Base === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --accent: #cfdf5a;
  --red: #e44c37;
  --dark: #1a1a1a;
  --light-gray: #e1e1e1;
  --white: #fff;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #333;
  line-height: 1.6;
  background: var(--dark);
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

img { max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; }

/* === Header === */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.9);
  transition: background 0.3s;
}

.site-header.scrolled {
  background: rgba(0, 0, 0, 0.95);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.header-top {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

.logo a {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 2px;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 14px;
  transition: color 0.3s;
}
.phone-link:hover { color: var(--accent); }
.phone-link svg { stroke: var(--accent); }

.header-nav .container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0;
}

.nav-links li a {
  display: block;
  padding: 14px 24px;
  color: var(--white);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  transition: color 0.3s, background 0.3s;
}

.nav-links li a:hover {
  color: var(--accent);
  background: rgba(207, 223, 90, 0.1);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}
.mobile-toggle span {
  width: 25px;
  height: 2px;
  background: var(--white);
  transition: 0.3s;
}
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* === Hero === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #1a1a1a;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

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

.hero-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 8vw, 84px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 4px;
  margin-bottom: 10px;
  text-shadow: 2px 4px 12px rgba(0,0,0,0.5);
}

.hero-sub {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(28px, 5vw, 56px);
  color: var(--accent);
  margin-bottom: 20px;
}

.hero-tagline {
  font-size: clamp(14px, 2vw, 20px);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 300;
}

/* === Welcome === */
.welcome-section {
  background: var(--white);
  padding: 80px 0;
  text-align: center;
}

.section-decorative-line {
  width: 80px;
  height: 2px;
  background: var(--red);
  margin: 0 auto 30px;
}

.welcome-heading {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(32px, 5vw, 56px);
  color: var(--dark);
  margin-bottom: 8px;
  font-weight: 400;
}

.welcome-subheading {
  font-size: 18px;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  margin-bottom: 30px;
}

.welcome-text-wrap {
  max-width: 700px;
  margin: 0 auto 30px;
}

.welcome-text-wrap p {
  margin-bottom: 20px;
  color: #555;
  line-height: 1.8;
}

/* === Quality === */
.quality-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #2a2a2a;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.quality-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.quality-content {
  position: relative;
  z-index: 1;
  padding: 60px 20px;
}

.quality-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 6vw, 72px);
  color: var(--white);
  font-weight: 700;
  line-height: 1.1;
}

.quality-content p {
  font-size: clamp(16px, 2vw, 22px);
  color: var(--accent);
  margin-top: 20px;
  font-style: italic;
  letter-spacing: 1px;
}

/* === Menu === */
.menu-section {
  background: var(--white);
  padding: 80px 0;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  text-align: center;
  margin-bottom: 50px;
  color: var(--dark);
}

.menu-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 480px), 1fr));
  gap: 40px;
}

.category-name {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--red);
  border-bottom: 2px solid var(--light-gray);
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.menu-item {
  margin-bottom: 16px;
}

.menu-item-header {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.item-name {
  font-weight: 600;
  white-space: nowrap;
}

.item-dots {
  flex: 1;
  border-bottom: 1px dotted #ccc;
  min-width: 20px;
  margin-bottom: 4px;
}

.item-price {
  font-weight: 700;
  color: var(--red);
  font-size: 14px;
}

.item-price span {
  white-space: nowrap;
}

.item-price span + span::before {
  content: " | ";
}

.menu-item.has-image .item-price span + span::before {
  content: none;
}

.item-description {
  font-size: 13px;
  color: #777;
  margin-top: 2px;
  font-style: italic;
}

.menu-item.has-image {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.menu-item-img {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.menu-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-item-info {
  flex: 1;
  min-width: 0;
}

/* Stack prices vertically when there are multiple sizes */
.menu-item.has-image .item-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1px;
  font-size: 12px;
  line-height: 1.4;
}

.menu-item.has-image .item-dots {
  display: none;
}

.menu-item.has-image .menu-item-header {
  flex-wrap: wrap;
  justify-content: space-between;
}

/* === Google Reviews === */
.google-reviews-section {
  background: #f9f9f9;
  padding: 80px 0;
  border-bottom: 4px solid var(--accent);
}

.reviews-summary {
  text-align: center;
  margin-bottom: 40px;
}

.reviews-stars {
  display: inline-flex;
  gap: 4px;
  margin-bottom: 8px;
}

.star { fill: #dadce0; }
.star-full { fill: #fbbc04; }
.star-half { fill: #fbbc04; }
.star-empty { fill: #dadce0; }

.reviews-rating-text {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}

.reviews-count {
  font-size: 14px;
  color: #666;
}

.reviews-count a {
  color: var(--red);
  text-decoration: underline;
}
.reviews-count a:hover { color: #c7382a; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 24px;
  margin-bottom: 30px;
}

.review-card {
  background: var(--white);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.review-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

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

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.review-avatar-placeholder {
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
}

.review-author-info {
  display: flex;
  flex-direction: column;
}

.review-author-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--dark);
}
.review-author-name:hover { color: var(--red); }

.review-time {
  font-size: 12px;
  color: #999;
}

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

.review-text {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.reviews-attribution {
  text-align: center;
  font-size: 13px;
  color: #888;
}

.reviews-attribution a {
  color: #666;
  text-decoration: none;
  transition: color 0.2s;
}
.reviews-attribution a:hover { color: var(--dark); }

/* === Facebook Recommendations === */
.fb-recommendations-section {
  background: var(--white);
  padding: 50px 0;
  border-bottom: 4px solid var(--accent);
}

.fb-recommendations-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.fb-recommendations-wrap.fb-fallback {
  flex-direction: column;
  text-align: center;
}

.fb-rec-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 4vw, 36px);
  color: var(--dark);
  margin-bottom: 8px;
}

.fb-rec-text p {
  font-size: 16px;
  color: #666;
}

.fb-rec-widget {
  flex-shrink: 0;
  max-width: 500px;
  width: 100%;
}

.btn-fb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 40px;
  background: #3b5998;
  color: var(--white);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}
.btn-fb:hover {
  background: #2d4373;
  transform: translateY(-2px);
}

/* === Blog === */
.blog-section {
  background: #f5f5f5;
  padding: 80px 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 30px;
}

.blog-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.blog-card-img {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.blog-card-body {
  padding: 24px;
}

.blog-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--dark);
}

.blog-card-body p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 12px;
}

.blog-card-date {
  font-size: 12px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* === Blog Post Page === */
.blog-post-page {
  padding-top: 140px;
  padding-bottom: 60px;
  background: var(--white);
  min-height: 60vh;
}

.blog-post-hero {
  width: 100%;
  height: 400px;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  margin-bottom: 30px;
}

.blog-post-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 5vw, 48px);
  color: var(--dark);
  margin-bottom: 8px;
}

.blog-post-date {
  font-size: 14px;
  color: #999;
  margin-bottom: 30px;
}

.blog-post-content {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  max-width: 720px;
}

.blog-post-content p { margin-bottom: 16px; }
.blog-post-content h2, .blog-post-content h3 { margin: 24px 0 12px; color: var(--dark); }
.blog-post-content img { max-width: 100%; border-radius: 4px; margin: 16px 0; }

/* === Events === */
.events-section {
  background: var(--dark);
  padding: 80px 0;
  text-align: center;
}

.events-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 4vw, 42px);
  color: var(--white);
  margin-bottom: 16px;
}

.events-cta {
  font-size: 18px;
  color: var(--accent);
  margin-bottom: 30px;
  font-style: italic;
}

.btn {
  display: inline-block;
  padding: 14px 40px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}
.btn-primary:hover {
  background: #c7382a;
  transform: translateY(-2px);
}

/* === Contact === */
.contact-section {
  background: #f5f5f5;
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h2,
.contact-form-wrap h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--dark);
}

.contact-address { font-size: 16px; margin-bottom: 10px; color: #555; }
.contact-phone a { color: var(--red); font-size: 20px; font-weight: 600; }
.contact-phone a:hover { color: #c7382a; }

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: #3b5998;
  font-weight: 600;
  transition: opacity 0.3s;
}
.social-link:hover { opacity: 0.7; }

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  margin-bottom: 16px;
  border: 1px solid #ddd;
  font-family: inherit;
  font-size: 14px;
  background: var(--white);
  transition: border-color 0.3s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--red);
}

.form-note {
  margin-top: 10px;
  font-size: 14px;
}

/* === Footer === */
.site-footer {
  background: #111;
  padding: 40px 0;
  text-align: center;
}

.footer-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--accent);
  letter-spacing: 2px;
}

.footer-social a {
  color: var(--white);
  transition: color 0.3s;
}
.footer-social a:hover { color: var(--accent); }

.copyright {
  font-size: 13px;
  color: #666;
}

/* === Responsive === */
@media (max-width: 768px) {
  .mobile-toggle { display: flex; }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.95);
  }
  .nav-links.open { display: flex; }
  .nav-links li a { padding: 16px 24px; border-bottom: 1px solid rgba(255,255,255,0.05); }

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  .hero { background-attachment: scroll; }
  .quality-section { background-attachment: scroll; }
}
