/* ============================================
   Cattoors On Grand — Stylesheet
   Forest Green + Off-White | Fresh & Airy
   ============================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #2C3E35;
  background-color: #FAF8F4;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
  list-style: none;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
  color: #1A2E23;
}

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

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: #2D5A3D;
  color: #FAF8F4;
  padding: 8px 16px;
  border-radius: 0 0 8px 8px;
  z-index: 200;
  font-weight: 500;
}

.skip-link:focus {
  top: 0;
}

/* ---------- Section Shared ---------- */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2D5A3D;
  margin-bottom: 16px;
}

.section-tag::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: #2D5A3D;
  border-radius: 2px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
}

.section-lead {
  font-size: 1.125rem;
  color: #5A6B62;
  max-width: 560px;
  line-height: 1.8;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-primary {
  background: #2D5A3D;
  color: #FAF8F4;
  border-color: #2D5A3D;
}

.btn-primary:hover,
.btn-primary:focus {
  background: #244A31;
  border-color: #244A31;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45, 90, 61, 0.3);
}

.btn-outline-light {
  background: transparent;
  color: #FAF8F4;
  border-color: rgba(250, 248, 244, 0.5);
}

.btn-outline-light:hover,
.btn-outline-light:focus {
  background: rgba(250, 248, 244, 0.1);
  border-color: #FAF8F4;
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: all 0.4s ease;
  background: transparent;
}

.site-header.scrolled {
  background: rgba(250, 248, 244, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(45, 90, 61, 0.08);
  padding: 12px 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1A2E23;
  z-index: 101;
}

.logo-icon {
  color: #2D5A3D;
}

.logo-accent {
  color: #2D5A3D;
  font-style: italic;
}

.site-header .logo,
.site-header .logo-icon,
.site-header .logo-accent {
  color: #1A2E23;
}

.site-header.scrolled .logo {
  color: #1A2E23;
}

.site-header .logo-icon {
  color: #2D5A3D;
}

.site-header .logo-accent {
  color: #2D5A3D;
}

/* ---------- Navigation ---------- */
.main-nav {
  z-index: 101;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-size: 0.9375rem;
  font-weight: 400;
  color: #1A2E23;
  padding: 8px 16px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link:focus {
  color: #2D5A3D;
  background: rgba(45, 90, 61, 0.08);
}

.nav-cta {
  font-weight: 500;
  background: #2D5A3D;
  color: #FAF8F4 !important;
  margin-left: 8px;
}

.nav-cta:hover,
.nav-cta:focus {
  background: #244A31;
  color: #FAF8F4 !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 24px;
  height: 2px;
  background: #1A2E23;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger {
  position: relative;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
}

.hamburger::before {
  top: -7px;
}

.hamburger::after {
  top: 7px;
}

.nav-toggle[aria-expanded="true"] .hamburger {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #1A2E23;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 46, 35, 0.88) 0%,
    rgba(45, 90, 61, 0.75) 50%,
    rgba(26, 46, 35, 0.85) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 120px 24px 80px;
  max-width: 760px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250, 248, 244, 0.7);
  margin-bottom: 28px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7FB88A;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.25rem, 5.5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: #FAF8F4;
  margin-bottom: 24px;
}

.hero-headline em {
  font-style: italic;
  color: #A8D5A2;
}

.hero-sub {
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  line-height: 1.8;
  color: rgba(250, 248, 244, 0.8);
  margin-bottom: 40px;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
}

.hero-details {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.hero-detail {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  color: rgba(250, 248, 244, 0.7);
}

.hero-detail svg {
  color: #7FB88A;
  flex-shrink: 0;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(250, 248, 244, 0.5);
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(250, 248, 244, 0.5), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- About ---------- */
.about {
  padding: 120px 0;
  background: #FAF8F4;
}

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

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(45, 90, 61, 0.12);
}

.about-img-main img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.about-img-secondary {
  position: absolute;
  bottom: -40px;
  right: -40px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(45, 90, 61, 0.15);
  border: 4px solid #FAF8F4;
}

.about-img-secondary img {
  width: 240px;
  height: 288px;
  object-fit: cover;
}

.about-accent-box {
  position: absolute;
  top: -24px;
  left: -24px;
  background: #2D5A3D;
  color: #FAF8F4;
  padding: 20px 24px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 12px 32px rgba(45, 90, 61, 0.3);
}

.about-accent-box .accent-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.about-accent-box .accent-label {
  font-size: 0.8125rem;
  font-weight: 400;
  color: rgba(250, 248, 244, 0.7);
  line-height: 1.4;
}

.about-content {
  padding: 16px 0;
}

.about-content .section-lead {
  margin-bottom: 20px;
}

.about-content p {
  color: #5A6B62;
  margin-bottom: 16px;
  font-size: 1.0625rem;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(45, 90, 61, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2D5A3D;
}

.feature-item strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #1A2E23;
  margin-bottom: 2px;
}

.feature-item span {
  font-size: 0.9375rem;
  color: #5A6B62;
}

/* ---------- Menu ---------- */
.menu {
  padding: 120px 0;
  background: linear-gradient(180deg, #F3F0EA 0%, #FAF8F4 100%);
}

.menu-header {
  text-align: center;
  margin-bottom: 48px;
}

.menu-header .section-lead {
  margin: 0 auto;
}

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 50px;
  border: 2px solid #D4CFC4;
  background: transparent;
  color: #5A6B62;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn:hover {
  border-color: #2D5A3D;
  color: #2D5A3D;
}

.tab-btn.active {
  background: #2D5A3D;
  border-color: #2D5A3D;
  color: #FAF8F4;
}

.tab-btn svg {
  flex-shrink: 0;
}

.menu-content {
  position: relative;
  min-height: 300px;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

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

.menu-category h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.375rem;
  font-weight: 600;
  color: #1A2E23;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(45, 90, 61, 0.15);
}

.menu-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.menu-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}

.menu-name {
  font-weight: 500;
  color: #2C3E35;
  font-size: 1rem;
}

.menu-desc {
  font-size: 0.875rem;
  color: #7A8B82;
  text-align: right;
  flex-shrink: 0;
}

/* ---------- Vibe ---------- */
.vibe {
  padding: 120px 0;
  background: #FAF8F4;
}

.vibe-header {
  text-align: center;
  margin-bottom: 64px;
}

.vibe-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.vibe-card {
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 32px rgba(45, 90, 61, 0.08);
  transition: all 0.4s ease;
}

.vibe-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(45, 90, 61, 0.15);
}

.vibe-card-img {
  overflow: hidden;
  height: 240px;
}

.vibe-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.vibe-card-body {
  padding: 28px;
}

.vibe-card-body h3 {
  font-size: 1.375rem;
  margin-bottom: 12px;
  color: #1A2E23;
}

.vibe-card-body p {
  font-size: 0.9375rem;
  color: #5A6B62;
  line-height: 1.8;
}

/* Reveal animation — progressive enhancement */
.reveal {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .reveal.revealed {
    opacity: 1;
    transform: none;
  }
}

/* ---------- CTA Strip ---------- */
.cta-strip {
  padding: 80px 0;
  background: linear-gradient(135deg, #1A2E23 0%, #2D5A3D 100%);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-text {
  flex: 1;
  min-width: 280px;
}

.cta-title {
  color: #FAF8F4;
  margin-bottom: 12px;
}

.cta-text p {
  color: rgba(250, 248, 244, 0.7);
  font-size: 1.0625rem;
}

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

/* ---------- Visit ---------- */
.visit {
  padding: 120px 0;
  background: #FAF8F4;
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.visit-info .section-lead {
  margin-bottom: 32px;
}

.visit-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.visit-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.detail-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(45, 90, 61, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2D5A3D;
}

.visit-detail strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #1A2E23;
  margin-bottom: 4px;
}

.visit-detail p {
  color: #5A6B62;
  font-size: 0.9375rem;
  line-height: 1.7;
}

.visit-detail a {
  color: #2D5A3D;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s ease;
}

.visit-detail a:hover {
  color: #1A2E23;
}

.visit-map {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(45, 90, 61, 0.12);
  min-height: 400px;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  min-height: 400px;
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border-radius: 20px;
}

/* ---------- Contact ---------- */
.contact {
  padding: 120px 0;
  background: linear-gradient(180deg, #F3F0EA 0%, #FAF8F4 100%);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-content .section-lead {
  margin-bottom: 0;
}

.contact-form {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(45, 90, 61, 0.08);
}

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

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #2C3E35;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid #D4CFC4;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: #2C3E35;
  background: #FAF8F4;
  transition: all 0.3s ease;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #A8A49C;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #2D5A3D;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(45, 90, 61, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding: 16px 20px;
  background: rgba(45, 90, 61, 0.08);
  border-radius: 12px;
  color: #2D5A3D;
  font-size: 0.9375rem;
  font-weight: 500;
}

.form-success svg {
  flex-shrink: 0;
  color: #2D5A3D;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #1A2E23;
  color: rgba(250, 248, 244, 0.7);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(250, 248, 244, 0.1);
}

.footer-brand p {
  margin-top: 16px;
  font-size: 0.9375rem;
  line-height: 1.8;
  max-width: 300px;
}

.logo-light .logo-icon {
  color: #7FB88A;
}

.logo-light .logo-text {
  color: #FAF8F4;
}

.logo-light .logo-accent {
  color: #7FB88A;
}

.footer-links h4,
.footer-contact h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7FB88A;
  margin-bottom: 20px;
}

.footer-links ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a,
.footer-contact a {
  font-size: 0.9375rem;
  color: rgba(250, 248, 244, 0.6);
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #FAF8F4;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 24px 0;
  font-size: 0.8125rem;
  color: rgba(250, 248, 244, 0.4);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .about-grid {
    gap: 48px;
  }

  .vibe-grid {
    gap: 24px;
  }

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

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-list {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    height: 100dvh;
    background: #FAF8F4;
    flex-direction: column;
    align-items: stretch;
    padding: 80px 32px 32px;
    gap: 4px;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.1);
    transition: right 0.4s ease;
  }

  .nav-list.open {
    right: 0;
  }

  .nav-link {
    padding: 14px 16px;
    font-size: 1rem;
    border-radius: 12px;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 16px;
    text-align: center;
    justify-content: center;
  }

  .mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(26, 46, 35, 0.5);
    z-index: 99;
  }

  .mobile-overlay.active {
    display: block;
  }

  .hero-content {
    padding: 100px 24px 60px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-details {
    flex-direction: column;
    gap: 12px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .about-img-secondary {
    right: 16px;
    bottom: -24px;
  }

  .about-img-secondary img {
    width: 180px;
    height: 216px;
  }

  .about-accent-box {
    left: 16px;
    top: -16px;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .vibe-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-actions .btn {
    width: 100%;
    justify-content: center;
  }

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

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .about,
  .menu,
  .vibe,
  .visit,
  .contact {
    padding: 80px 0;
  }

  .hero-headline {
    font-size: 2rem;
  }

  .menu-tabs {
    flex-direction: column;
    align-items: stretch;
  }

  .tab-btn {
    justify-content: center;
  }
}
