/* CSS Reset & Variables */
:root {
  --color-green: #1f4a2d;
  --color-yellow: #fbd614;
  --color-orange: #f25c05;
  --color-orange-hover: #d94d04;
  --color-light-bg: #f8f9fa;
  --color-dark-bg: #132f1c;
  --color-white: #ffffff;
  --color-text-dark: #212529;
  --color-text-muted: #6c757d;
  --color-border: #e9ecef;

  --font-family: 'Outfit', sans-serif;

  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 12px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 48px rgba(0, 0, 0, 0.12);
  --shadow-orange: 0 8px 24px rgba(242, 92, 5, 0.3);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  background-color: var(--color-light-bg);
  color: var(--color-text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.site-note-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1200;
  min-height: 26px;
  padding: 5px 12px 4px;
  background: var(--color-green);
  color: var(--color-white);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  white-space: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}

.site-note-bar::-webkit-scrollbar {
  display: none;
}

/* Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.white-text {
  color: var(--color-white) !important;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

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

/* Header & Navigation */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
  padding: 12px 0;
  transition: all 0.3s ease;
}

.navbar-container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "brand actions"
    "nav nav";
  row-gap: 12px;
  column-gap: 20px;
  align-items: center;
  justify-content: space-between;
}

.logo-text {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--color-green);
  letter-spacing: -0.03em;
  display: flex;
  flex-direction: column;
  line-height: 0.9;
}

.logo-sub {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-orange);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.logo-link {
  grid-area: brand;
  text-decoration: none;
  min-width: 0;
}

.nav-links {
  grid-area: nav;
  display: none;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  padding-top: 10px;
  border-top: 1px solid rgba(31, 74, 45, 0.1);
}

.nav-links a {
  text-decoration: none;
  color: var(--color-text-dark);
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1.1;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--color-orange);
}

.nav-actions {
  grid-area: actions;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
  min-width: 0;
}

.nav-phone-link {
  display: none;
  color: var(--color-green);
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

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

  .nav-phone-link {
    display: inline-flex;
  }
}

@media (min-width: 1180px) {
  .logo-text {
    font-size: 1.65rem;
  }
}

@media (max-width: 767px) {
  .navbar-container {
    grid-template-columns: 1fr auto;
    grid-template-areas: "brand actions";
    row-gap: 0;
  }

  .nav-actions {
    gap: 8px;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-cta-nav {
  display: inline-flex;
  padding: 10px 20px;
  background-color: var(--color-orange);
  color: var(--color-white);
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: var(--shadow-orange);
  transition: all 0.2s ease;
}

.btn-cta-nav:hover {
  background-color: var(--color-orange-hover);
  transform: translateY(-2px);
}

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

.btn-primary-orange:hover {
  background-color: var(--color-orange-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(242, 92, 5, 0.4);
}

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

.btn-secondary-outline:hover {
  background-color: var(--color-white);
  color: var(--color-green);
  transform: translateY(-3px);
}

.btn-primary-green {
  background-color: var(--color-green);
  color: var(--color-yellow);
  box-shadow: 0 8px 24px rgba(31, 74, 45, 0.2);
}

.btn-primary-green:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(31, 74, 45, 0.3);
}

/* Pulse Animation */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(242, 92, 5, 0.6);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(242, 92, 5, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(242, 92, 5, 0);
  }
}

.pulse-btn {
  animation: pulse 2s infinite;
}

/* Hero Section */
.hero {
  position: relative;
  background: url('/assets/hero.png') center/cover no-repeat;
  padding: 120px 0;
  min-height: 520px;
  display: flex;
  align-items: center;
  color: var(--color-white);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(31, 74, 45, 0.92) 0%, rgba(19, 47, 28, 0.7) 100%);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
}

.hero-content-box {
  max-width: 650px;
}

.badge {
  display: inline-block;
  background-color: var(--color-yellow);
  color: var(--color-green);
  padding: 6px 16px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.15rem;
  font-weight: 400;
  opacity: 0.9;
  margin-bottom: 35px;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 576px) {
  .hero-title {
    font-size: 3.8rem;
  }
  .hero-buttons {
    flex-direction: row;
  }
}

/* Sections General */
.story-section, .highlights-section, .testimonials-section, .contact-section {
  padding: 80px 0;
}

.section-kicker {
  display: block;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--color-orange);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-green);
  line-height: 1.25;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

@media (max-width: 575px) {
  .section-title {
    font-size: 1.85rem;
    line-height: 1.18;
  }

  .contact-section {
    padding-top: 64px;
  }

  .contact-info-wide {
    margin-bottom: 24px;
  }

  .branch-card {
    padding: 18px;
  }
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto 30px;
}

.section-text {
  font-size: 1.05rem;
  color: var(--color-text-dark);
  margin-bottom: 20px;
}

/* Story Section */
.story-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.story-image {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

.image-accent-box {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background-color: var(--color-yellow);
  color: var(--color-green);
  padding: 20px 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.image-accent-box h3 {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}

.image-accent-box p {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
}

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

.stat-card {
  background-color: var(--color-white);
  padding: 16px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.stat-card h4 {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--color-green);
}

.stat-card p {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  font-weight: 600;
}

/* Quality Pillars Section */
.secrets-section {
  background-color: var(--color-green);
  padding: 80px 0;
}

.quality-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  color: var(--color-white);
  transition: all 0.3s ease;
}

.quality-card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.08);
  border-color: var(--color-yellow);
}

.quality-icon {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.quality-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--color-yellow);
}

.quality-card p {
  font-size: 0.95rem;
  opacity: 0.85;
}

/* Menu Showcase Section */
.menu-showcase-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.menu-showcase-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.card-image-wrap {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.card-price {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background-color: var(--color-orange);
  color: var(--color-white);
  padding: 6px 14px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: var(--shadow-orange);
}

.card-body {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-body h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-green);
  margin-bottom: 10px;
}

.card-body p {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  flex-grow: 1;
}

/* Testimonial Cards */
.testimonial-card {
  background-color: var(--color-white);
  padding: 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.stars {
  color: var(--color-yellow);
  font-size: 1rem;
  margin-bottom: 15px;
}

.testimonial-text {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--color-text-dark);
  margin-bottom: 20px;
  flex-grow: 1;
}

.user-info strong {
  display: block;
  font-size: 0.95rem;
  color: var(--color-green);
}

.user-info span {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

/* Contact and CTA Card */
.contact-info-wide {
  max-width: 760px;
  margin-bottom: 34px;
}

.branch-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.branch-grid-locations {
  align-items: stretch;
}

@media (min-width: 680px) {
  .branch-grid-locations {
    grid-template-columns: 1fr 1fr;
  }
}

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

.branch-card {
  background-color: var(--color-white);
  padding: 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--color-green);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.branch-card h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-green);
  margin-bottom: 8px;
}

.branch-card p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.branch-map-link {
  width: fit-content;
  min-height: 34px;
  margin-top: auto;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(31, 74, 45, 0.08);
  color: var(--color-green);
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.branch-map-link:hover {
  background: var(--color-green);
  color: var(--color-yellow);
  transform: translateY(-1px);
}

.contact-bottom-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 28px;
  align-items: stretch;
}

@media (min-width: 900px) {
  .contact-bottom-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  }
}

.delivery-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--color-yellow);
  color: var(--color-green);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.delivery-label {
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.delivery-card h3 {
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1.15;
}

.delivery-card p {
  max-width: 620px;
  font-weight: 700;
}

.branch-map-link-dark {
  margin-top: 4px;
  background: var(--color-green);
  color: var(--color-yellow);
}

.branch-map-link-dark:hover {
  background: var(--color-dark-bg);
  color: var(--color-white);
}

.contact-cta-box {
  background: linear-gradient(135deg, var(--color-green) 0%, var(--color-dark-bg) 100%);
  padding: 40px;
  border-radius: var(--radius-lg);
  color: var(--color-white);
  text-align: center;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.contact-cta-compact {
  min-height: 100%;
  padding: 32px;
}

.contact-cta-box h3 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 12px;
  color: var(--color-yellow);
}

.contact-cta-box p {
  font-size: 1.05rem;
  opacity: 0.9;
  margin-bottom: 30px;
  max-width: 400px;
}

.cta-sub-note {
  font-size: 0.8rem;
  opacity: 0.7;
  margin-top: 12px;
}

.whatsapp-floating {
  position: fixed;
  right: 18px;
  bottom: 22px;
  z-index: 1100;
  min-height: 54px;
  padding: 8px 14px 8px 8px;
  border-radius: 999px;
  background: #25d366;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 900;
  font-size: 0.92rem;
  box-shadow: 0 14px 34px rgba(16, 112, 55, 0.32);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-floating:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(16, 112, 55, 0.4);
}

.whatsapp-floating-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  color: #128c46;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 900;
}

.whatsapp-floating-text {
  white-space: nowrap;
}

/* Footer */
.footer {
  background-color: #112215;
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

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

.footer-brand h3 {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--color-white);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.footer-brand p {
  font-size: 0.9rem;
}

.footer-links h4, .footer-legal h4 {
  color: var(--color-white);
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--color-yellow);
}

.footer-legal p {
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.btn {
  min-height: 40px;
  padding: 10px 20px;
  font-size: 0.9rem;
}

.btn-cta-nav {
  min-height: 34px;
  padding: 8px 16px;
  font-size: 0.84rem;
}

@media (max-width: 575px) {
  .whatsapp-floating {
    right: 12px;
    bottom: 14px;
    min-height: 50px;
    padding: 7px;
  }

  .whatsapp-floating-text {
    display: none;
  }
}
