@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@700&display=swap');

:root {
  --color-primary: #1a472a;
  --color-primary-light: #2d6a47;
  --color-accent: #d4a574;
  --color-accent-secondary: #e8714d;
  --color-bg: #faf8f3;
  --color-surface: #f0ede8;
  --color-text: #2c2c2c;
  --color-muted: #6b6b6b;
  --color-border: #e5ddd5;
  --radius: 14px;
  --radius-lg: 24px;
  --container: 1200px;
  --shadow-sm: 0 2px 8px rgba(26, 71, 42, 0.06);
  --shadow-md: 0 8px 20px rgba(26, 71, 42, 0.08);
  --shadow-lg: 0 16px 40px rgba(26, 71, 42, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.2;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.1rem; }

p {
  color: var(--color-muted);
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  display: block;
}

/* Utilities */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1rem;
}

.section-padding {
  padding: 4rem 0;
}

.bg-alt {
  background: var(--color-surface);
}

.text-center {
  text-align: center;
}

.muted {
  color: var(--color-muted);
}

.small {
  font-size: 0.9rem;
}

/* Header & Navigation */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  display: flex;
  align-items: center;
  background: rgba(250, 248, 243, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  z-index: 1000;
  transition: all 0.3s ease;
}

.main-header.scrolled {
  height: 64px;
  box-shadow: var(--shadow-md);
  background: rgba(250, 248, 243, 0.99);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
  list-style: none;
}

.nav-link {
  color: var(--color-muted);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-primary);
  font-weight: 600;
}

.nav-cta {
  margin-left: 1rem;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger {
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  display: block;
  position: relative;
  transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  left: 0;
  transition: all 0.3s ease;
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  top: 8px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(26, 71, 42, 0.2);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(26, 71, 42, 0.3);
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--color-accent);
  color: var(--color-accent);
  font-weight: 700;
}

.btn-secondary:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: white;
}

/* Hero Section */
.hero {
  padding-top: 100px;
  padding-bottom: 4rem;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-title {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--color-primary);
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--color-muted);
  margin-bottom: 2rem;
  max-width: 500px;
  line-height: 1.8;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.hero-media img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(26, 71, 42, 0.15);
}

/* Cards & Features */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.card {
  background: white;
  border: 1px solid var(--color-border);
  padding: 1.5rem;
  border-radius: var(--radius);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-accent-secondary) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.card:hover::before {
  transform: scaleX(1);
}

.card:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.card h3 {
  margin-bottom: 0.75rem;
}

.card p {
  font-size: 0.95rem;
  color: var(--color-muted);
}

.card-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

/* Menu Highlight Section */
.menu-highlight .highlight-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.menu-highlight h2 {
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.menu-highlight > .container > div:first-child p {
  color: var(--color-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.menu-sample img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(26, 71, 42, 0.12);
}

/* Contact CTA */
.contact-cta {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: white;
}

.contact-cta .cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.contact-cta h3 {
  color: white;
  margin-bottom: 0.5rem;
}

.contact-cta p {
  color: rgba(255, 255, 255, 0.9);
}

.contact-cta .btn-primary {
  background: var(--color-accent);
  color: var(--color-primary);
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info h1 {
  margin-bottom: 0.5rem;
}

.contact-cards {
  display: grid;
  gap: 1rem;
  margin: 2rem 0;
}

.contact-form {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.9rem;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* Menu Page Grid */
.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

.menu-column img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.menu-header {
  text-align: center;
  margin-bottom: 2rem;
}

.menu-header h1 {
  margin-bottom: 0.5rem;
}

.drinks {
  margin-top: 3rem;
}

.drinks h2 {
  margin-bottom: 1.5rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--color-border);
  padding: 2rem 0;
  background: white;
  text-align: center;
  color: var(--color-muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
  margin-bottom: 1rem;
}

.footer-brand {
  text-align: left;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-links a,
.footer-social a {
  color: var(--color-muted);
  transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-social a:hover {
  color: var(--color-accent);
}

/* Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Smooth transitions for all interactive elements */
button, a {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-inner,
  .menu-highlight .highlight-inner,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-brand {
    text-align: center;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }

  .nav-menu {
    display: none;
    position: fixed;
    top: 72px;
    right: 0;
    flex-direction: column;
    background: white;
    padding: 1rem;
    border-left: 1px solid var(--color-border);
    min-width: 200px;
    box-shadow: var(--shadow-lg);
  }

  .nav-menu.open {
    display: flex;
  }

  .mobile-toggle {
    display: flex;
  }

  .nav-cta {
    margin-left: 0;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .contact-cta .cta-inner {
    flex-direction: column;
  }

  .contact-cta .cta-inner > div:last-child {
    width: 100%;
  }

  .contact-cta .cta-inner .btn {
    width: 100%;
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding-top: 80px;
    min-height: auto;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .container {
    padding: 0 0.75rem;
  }

  .section-padding {
    padding: 2rem 0;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }
    opacity: 1;
    transform: translateY(0);
}

.stagger-1 {
    transition-delay: 0.1s;
}

.stagger-2 {
    transition-delay: 0.2s;
}

.stagger-3 {
    transition-delay: 0.3s;
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* Google Review Badge */
.google-review-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 8px 16px;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
    margin-top: 1rem;
}

.star-rating {
    display: flex;
    gap: 2px;
    color: #FBBF24;
    /* Google Star Yellow */
}

/* Footer Icons override */
.social-icon {
    transition: transform 0.2s;
}

.social-icon:hover {
    transform: scale(1.1);
    color: var(--color-accent);
}

/* Hero Meta Items */
.hero-meta {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.meta-label {
  font-size: 0.9rem;
  color: var(--color-muted);
}

.meta-value {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-primary);
}

/* Section Title & Subtitle */
.section-title {
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  text-align: center;
  color: var(--color-muted);
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

/* Specials Banner */
.specials-banner {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-secondary) 100%);
  color: white;
}

.banner-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.banner-text h2 {
  color: white;
  margin-bottom: 0.5rem;
}

.banner-text p {
  color: rgba(255, 255, 255, 0.95);
  margin: 0.5rem 0;
}

.banner-text .meta-info {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
  .banner-content {
    flex-direction: column;
    text-align: center;
  }
}

/* Menu List */
.menu-list {
  list-style: none;
  margin: 1.5rem 0;
  gap: 0.5rem;
  display: flex;
  flex-direction: column;
}

.menu-list li {
  padding: 0.5rem 0;
  color: var(--color-text);
}

/* Testimonials Grid */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
}

.testimonial:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.stars {
  color: var(--color-accent-secondary);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1rem;
}

.testimonial-text {
  font-style: italic;
  color: var(--color-text);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.testimonial-author {
  font-weight: 600;
  color: var(--color-primary);
  font-size: 0.95rem;
}

@media (max-width: 1024px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

/* Location Grid */
.location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.location-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border-top: 4px solid var(--color-accent);
}

.location-card h3 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.location-card p {
  margin-bottom: 1rem;
  color: var(--color-text);
}

.location-card a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.location-card a:hover {
  color: var(--color-accent);
}

.hours-list {
  list-style: none;
}

.hours-list li {
  padding: 0.5rem 0;
}

.holiday-note {
  font-size: 0.9rem;
  color: var(--color-muted);
  font-style: italic;
}

.btn.small {
  padding: 0.6rem 1.2rem;
  font-size: 0.95rem;
}

@media (max-width: 1024px) {
  .location-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .location-grid {
    grid-template-columns: 1fr;
  }
}

/* Social Links */
.social-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.social-card {
  background: white;
  border: 2px solid var(--color-accent);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  text-decoration: none;
  color: var(--color-primary);
  transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
}

.social-card:hover {
  background: var(--color-accent);
  color: white;
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.social-card:hover .social-icon {
  transform: scale(1.2);
  color: white;
}

@media (max-width: 1024px) {
  .social-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .social-links {
    grid-template-columns: 1fr;
  }
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.value-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--color-border);
  transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
}

.value-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.value-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 1rem;
}

.value-card h4 {
  margin-bottom: 0.5rem;
  color: var(--color-primary);
}

.value-card p {
  color: var(--color-muted);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}