@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Caveat+Brush&display=swap');

:root {
  --color-primary: #3E2723;
  --color-secondary: #D7CCC8;
  --color-accent: #8D6E63;
  --color-accent-hover: #795548;
  --color-light: #FDFBF7;
  --color-white: #FFFFFF;
  --color-dark: #201513;
  --color-gray: #757575;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --shadow-sm: 0 4px 6px rgba(62, 39, 35, 0.05);
  --shadow-md: 0 10px 20px rgba(62, 39, 35, 0.08);
  --shadow-lg: 0 20px 40px rgba(62, 39, 35, 0.12);
  --border-radius: 12px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-light);
  color: var(--color-dark);
  line-height: 1.8;
  font-size: 1.125rem;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: var(--color-primary);
  transition: var(--transition);
}

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

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Typography Helpers */
.text-center { text-align: center; }
.section-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--color-accent);
  border-radius: 2px;
}
.section-subtitle {
  color: var(--color-gray);
  font-size: 1.25rem;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* SEO Content Containers */
.seo-content {
  margin: 60px 0;
  padding: 40px;
  background-color: var(--color-white);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  text-align: left;
}

.seo-content h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--color-primary);
}

.seo-content p {
  color: #555;
  margin-bottom: 15px;
  line-height: 1.8;
}

/* Newsletter Block */
.newsletter-block {
    background: #464646; 
    padding: 140px 40px; 
    border-radius: 4px; 
    max-width: 1100px;
    width: 95%;
    margin: 0 auto; 
    color: #ffffff; 
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.newsletter-block h2 {
    font-family: var(--font-heading); 
    font-size: 3.2rem; 
    color: #ffffff; 
    margin-bottom: 40px; 
    font-weight: 500; 
    line-height: 1.25;
}

.newsletter-form-wrapper {
    display: flex; 
    max-width: 550px; 
    margin: 0 auto 25px; 
    border: 1px solid rgba(255,255,255,0.3); 
    border-radius: 12px; 
    overflow: hidden;
    transition: border-color 0.3s;
}

.newsletter-form-wrapper:focus-within {
    border-color: rgba(255,255,255,0.7);
}

.newsletter-form-wrapper input {
    flex: 1; 
    background: transparent; 
    border: none; 
    padding: 16px 20px; 
    color: #fff; 
    font-family: var(--font-body); 
    font-size: 1rem; 
    outline: none;
}

.newsletter-form-wrapper input::placeholder {
    color: rgba(255,255,255,0.5);
}

.newsletter-form-wrapper button {
    background: transparent; 
    border: none; 
    border-left: 1px solid rgba(255,255,255,0.2); 
    color: #fff; 
    padding: 0 40px; 
    font-family: var(--font-body); 
    font-size: 1rem; 
    cursor: pointer; 
    transition: background 0.3s, color 0.3s;
}

.newsletter-form-wrapper button:hover {
    background: rgba(255,255,255,0.05);
}

.newsletter-block p {
    font-size: 0.85rem; 
    color: rgba(255,255,255,0.6); 
    max-width: 520px; 
    margin: 0 auto;
    line-height: 1.5;
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background-color: var(--color-accent-hover);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn-secondary:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

/* Navigation */
header {
  position: relative;
  width: 100%;
  z-index: 1000;
  background: var(--color-dark);
}

/* Top Announcement Bar */
.top-announcement-bar {
  background: #fdfcee;
  color: #555;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.top-bar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-socials {
  display: flex;
  gap: 16px;
}

.top-socials a {
  color: #111;
  transition: opacity 0.2s;
  display: flex;
  align-items: center;
}

.top-socials a:hover {
  opacity: 0.6;
}

.top-announcement {
  flex: 1;
  text-align: center;
  font-weight: 500;
}

.top-spacer {
  width: 80px; 
}

/* Main Header */
.main-header-area {
  padding: 25px 0 20px;
}

.header-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.logo {
  font-family: 'Caveat Brush', cursive;
  font-size: 2.8rem;
  font-weight: 400;
  color: #fff;
  display: flex;
  align-items: center;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.header-actions {
  display: flex;
  gap: 16px;
}

.header-btn-outline {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 24px;
  border: 1px solid #fff;
  border-radius: 30px;
  color: #fff;
  font-size: 0.9rem;
  font-family: var(--font-body);
  transition: all 0.2s;
}

.header-btn-outline:hover {
  background: #fff;
  color: var(--color-dark);
}

.header-btn-solid {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 24px;
  background: #fff;
  border: 1px solid #fff;
  border-radius: 30px;
  color: var(--color-dark);
  font-size: 0.9rem;
  font-family: var(--font-body);
  font-weight: 500;
  transition: all 0.2s;
}

.header-btn-solid:hover {
  background: transparent;
  color: #fff;
}

.header-nav-row {
  display: flex;
  justify-content: flex-start;
}

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

.nav-links a {
  color: #fff;
  font-weight: 400; 
  font-size: 0.95rem;
  font-family: var(--font-body);
  position: relative;
  transition: color 0.2s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #fff;
  transition: width 0.2s ease;
}

.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #fff;
  cursor: pointer;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(20, 12, 10, 0.62); /* Rich dark overlay */
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  justify-content: center;
}

.hero-content {
  max-width: 800px;
  width: 100%;
  text-align: center;
  animation: fadeInUp 1s forwards;
}

.hero-subtitle {
  font-family: var(--font-body);
  color: var(--color-white);
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
  font-size: 0.9rem;
}

.hero h1 {
  font-size: 5rem;
  margin-bottom: 24px;
  color: var(--color-white);
  line-height: 1.1;
  font-weight: 600;
}

.hero p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 auto 35px;
  max-width: 650px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* Sections General */
.section {
  padding: 140px 0;
}

.bg-secondary {
  background-color: var(--color-secondary);
}

/* Features/About Snippet */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.feature-card {
  background: var(--color-white);
  padding: 50px 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
  border-bottom: 4px solid transparent;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--color-accent);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--color-accent);
  margin-bottom: 20px;
}

.feature-card h3 {
  margin-bottom: 16px;
  font-size: 1.8rem;
}

/* Menu Preview */
.menu-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 50px;
}

.menu-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--color-white);
  border-radius: var(--border-radius);
  padding: 20px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.menu-item:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-md);
}

.menu-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}

.menu-details {
  flex: 1;
}

.menu-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  border-bottom: 1px dashed var(--color-secondary);
  padding-bottom: 8px;
}

.menu-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-primary);
}

.menu-price {
  color: var(--color-accent);
  font-weight: 700;
  font-size: 1.1rem;
}

/* Footer */
footer {
  background-color: #2a2a2a;
  color: rgba(255,255,255,0.85);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  align-items: start;
  padding-bottom: 60px;
}

/* Logo column */
.footer-logo-col {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-logo-circle {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: none;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.footer-logo-circle img {
  width: 140px;
  height: 140px;
  object-fit: contain;
}
.footer-logo-text {
  text-align: center;
}
.footer-logo-text h3 {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 6px;
}
.footer-logo-text p {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}

/* Info columns */
.footer-col h4 {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 20px;
  font-style: italic;
  font-weight: 500;
}

.footer-col p {
  color: rgba(255,255,255,0.65);
  margin-bottom: 6px;
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-col p strong {
  color: var(--color-accent);
  font-weight: 600;
}

.footer-divider {
  margin: 14px 0;
  border: none;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: color 0.2s, padding-left 0.2s;
}

.footer-links a:hover {
  color: var(--color-accent);
  padding-left: 4px;
}

/* Social Icons */
.footer-social {
  display: flex;
  gap: 18px;
  margin-top: 24px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  text-decoration: none;
}
.footer-social a:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

.footer-bottom {
  text-align: center;
  padding: 20px 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
}

/* Scroll-to-Top Button */
#scrollTopBtn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s;
  z-index: 9999;
  pointer-events: none;
}
#scrollTopBtn.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
#scrollTopBtn:hover {
  background: var(--color-accent);
}

/* SEO Content Containers */
.seo-content {
  max-width: 1000px;
  margin: 0 auto;
  font-size: 1.25rem;
}

.seo-content p {
  margin-bottom: 24px;
}

.seo-content h2 {
  margin: 40px 0 20px;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #2a2a2a;
    padding: 20px;
    z-index: 1000;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  
  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    margin: 10px 0;
  }

  .mobile-menu-btn {
    display: block;
    margin-left: auto;
  }

  .top-announcement-bar {
    display: none;
  }

  .header-top-row {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  
  .header-actions {
    justify-content: center;
    width: 100%;
  }

  .header-btn-outline, .header-btn-solid {
    padding: 6px 16px;
    font-size: 0.8rem;
    flex: 1;
    justify-content: center;
  }

  .logo {
    font-size: 2.2rem;
  }

  .hero h1 {
    font-size: 2.5rem;
    padding: 0 15px;
  }
  
  .hero p {
    font-size: 1rem;
    padding: 0 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  
  .footer-logo-col {
    justify-content: center;
  }

  .section {
    padding: 60px 0;
  }

  .newsletter-block {
    padding: 60px 20px;
    margin: 0 15px;
  }
}

/* Full Menu Layout */
.full-menu-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.menu-category h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-primary);
  border-bottom: 2px solid var(--color-accent);
  padding-bottom: 15px;
  margin-bottom: 30px;
}

.menu-list {
  list-style: none;
}

.menu-list li {
  margin-bottom: 25px;
}

.menu-list-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
  border-bottom: 1px dotted var(--color-secondary);
  padding-bottom: 4px;
}

.item-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-dark);
}

.price-range {
  font-weight: 600;
  color: var(--color-accent);
  font-size: 1.1rem;
}

.menu-list p {
  color: var(--color-gray);
  font-size: 1rem;
  line-height: 1.6;
}

.menu-highlights {
  background: var(--color-white);
  border-radius: var(--border-radius);
  padding: 50px;
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.highlight-item h4 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--color-primary);
}
/* FAQ Section */
.faq-section {
  padding: 100px 0;
  background-color: var(--color-white);
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-secondary);
  padding: 20px 0;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  padding: 10px 0;
  cursor: pointer;
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--color-accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--color-gray);
  font-size: 1.1rem;
}

.faq-answer p {
  padding: 15px 0;
  margin: 0;
}

.faq-item.active .faq-answer {
  max-height: 200px; /* Adjust based on content */
}

.faq-toggle-icon {
  width: 24px;
  height: 24px;
  position: relative;
  transition: transform 0.3s ease;
}

.faq-toggle-icon::before,
.faq-toggle-icon::after {
  content: '';
  position: absolute;
  background-color: currentColor;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-toggle-icon::before {
  width: 14px;
  height: 2px;
}

.faq-toggle-icon::after {
  width: 2px;
  height: 14px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(45deg);
}

.faq-item.active .faq-toggle-icon::after {
  opacity: 0;
}

@media (max-width: 768px) {
  .faq-question {
    font-size: 1.2rem;
  }
  
  .faq-answer {
    font-size: 1rem;
  }
}

/* Testimonials Section */
.testimonials-section {
  padding: 120px 0;
  background-color: var(--color-light);
}

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

.testimonial-card {
  background: var(--color-white);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.03);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.stars {
  color: #FFD700;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.testimonial-content {
  font-style: italic;
  color: var(--color-dark);
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 24px;
  flex: 1;
}

.testimonial-author {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-primary);
  font-size: 1.1rem;
}

.testimonial-author::before {
  content: '— ';
}

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

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonial-card {
    padding: 30px;
  }
}
