/* =============================================
   Café Pizzeria Capricorno – Alpine Cinema Theme
   A bright, airy design with deep navy & dusty rose
   ============================================= */

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

:root {
  /* Colors – Alpine Cinema palette */
  --navy: #2D3047;
  --navy-light: #3D4060;
  --navy-dark: #1E2033;
  --rose: #B8696D;
  --rose-light: #D4898C;
  --rose-dark: #9A5458;
  --cream: #FAF8F5;
  --cream-warm: #F3EDE6;
  --white: #FFFFFF;
  --text: #2D3047;
  --text-light: #6B6E82;
  --text-muted: #9B9DAD;
  --border: #E8E5E0;
  --border-light: #F0EDE8;
  --gold: #C8A96E;

  /* Typography */
  --font-display: 'Bodoni Moda', serif;
  --font-body: 'Instrument Sans', sans-serif;

  /* Spacing */
  --container: 1140px;
  --radius: 10px;
  --radius-sm: 6px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 8px rgba(45, 48, 71, 0.04);
  --shadow: 0 4px 20px rgba(45, 48, 71, 0.06);
  --shadow-lg: 0 8px 40px rgba(45, 48, 71, 0.08);

  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}


/* --- Typography --- */
.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--rose);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 20px;
}

.section-title em {
  font-style: italic;
  color: var(--rose);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 520px;
  line-height: 1.7;
}

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

.section-header .section-desc {
  margin: 0 auto;
}


/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn-primary:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--border);
}

.btn-outline-dark:hover {
  border-color: var(--navy);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1rem;
}


/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition);
}

.navbar.scrolled {
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--border-light);
}

.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
}

.brand-icon {
  font-size: 1.6rem;
  color: var(--rose);
  transition: color var(--transition);
}

.navbar.scrolled .brand-icon {
  color: var(--rose);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  transition: color var(--transition);
}

.navbar.scrolled .brand-name {
  color: var(--navy);
}

.brand-sub {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  transition: color var(--transition);
}

.navbar.scrolled .brand-sub {
  color: var(--text-muted);
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.3px;
  position: relative;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--rose);
  transition: width var(--transition);
}

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

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

.navbar.scrolled .nav-links a {
  color: var(--text-light);
}

.navbar.scrolled .nav-links a:hover {
  color: var(--navy);
}

.nav-cta {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  background: var(--rose);
  padding: 10px 24px;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.nav-cta:hover {
  background: var(--rose-dark);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 10;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.navbar.scrolled .nav-toggle span {
  background: var(--navy);
}


/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, #3D4060 100%);
  padding: 120px 24px 80px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 70% 30%, rgba(184, 105, 109, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(200, 169, 110, 0.08) 0%, transparent 40%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}

.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--rose-light);
  border: 1px solid rgba(184, 105, 109, 0.3);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 32px;
  animation: fadeInUp 0.8s ease forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
  max-width: 700px;
  animation: fadeInUp 0.8s ease 0.15s forwards;
  opacity: 0;
}

.hero-title em {
  font-style: italic;
  color: var(--rose-light);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease 0.3s forwards;
  opacity: 0;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.45s forwards;
  opacity: 0;
}

.hero-visual {
  position: absolute;
  right: 80px;
  bottom: 120px;
  z-index: 2;
  animation: fadeInUp 0.8s ease 0.6s forwards;
  opacity: 0;
}

.hero-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-card-icon {
  font-size: 2.5rem;
}

.hero-card-text {
  display: flex;
  flex-direction: column;
}

.hero-card-rating {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
}

.hero-card-reviews {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 2;
  animation: fadeInUp 0.8s ease 0.75s forwards;
  opacity: 0;
}

.hero-scroll span {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.4);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--rose), transparent);
  animation: scrollPulse 2s ease infinite;
}


/* --- Features Strip --- */
.features-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  padding: 0;
}

.features-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 28px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-light);
  border-right: 1px solid var(--border-light);
}

.feature-item:last-child {
  border-right: none;
}

.feature-icon {
  font-size: 1.2rem;
}


/* --- Sections --- */
.section {
  padding: 100px 0;
}

.section-about {
  background: var(--cream);
}

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

.about-image {
  position: relative;
}

.about-image-placeholder {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--cream-warm) 0%, #E8DFD4 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

.about-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 24px;
  box-shadow: var(--shadow);
  text-align: center;
}

.about-badge-text {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
}

.about-badge-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-content .section-tag {
  margin-bottom: 12px;
}

.about-text {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-highlights {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.highlight {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.highlight-number {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
}

.highlight-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}


/* --- Hours Strip --- */
.hours-strip {
  background: var(--navy);
  padding: 40px 0;
}

.hours-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
}

.hours-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
}

.hours-grid {
  display: flex;
  align-items: center;
  gap: 32px;
}

.hours-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hours-day {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--rose-light);
}

.hours-time {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.hours-divider {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.15);
}


/* --- Menu Section --- */
.section-menu {
  background: var(--white);
}

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

.menu-tab {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text-light);
  cursor: pointer;
  transition: all var(--transition);
}

.menu-tab:hover {
  border-color: var(--navy);
  color: var(--navy);
}

.menu-tab.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.menu-panel {
  display: none;
  animation: fadeIn 0.4s ease;
}

.menu-panel.active {
  display: block;
}

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

.menu-item {
  position: relative;
  padding: 24px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.menu-item:hover {
  border-color: var(--rose);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 6px;
}

.menu-item-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
}

.menu-item-price {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--rose);
  white-space: nowrap;
}

.menu-item-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.menu-item-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--rose);
  background: rgba(184, 105, 109, 0.08);
  padding: 4px 10px;
  border-radius: 100px;
  margin-top: 10px;
}

.menu-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 32px;
}


/* --- Reviews --- */
.section-reviews {
  background: var(--cream);
}

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

.reviews-score {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.score-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.score-stars {
  font-size: 1.2rem;
  color: var(--gold);
  letter-spacing: 4px;
}

.score-count {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}

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

.review-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}

.review-card:hover {
  border-color: var(--rose);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.review-stars {
  font-size: 0.9rem;
  color: var(--gold);
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.review-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 20px;
}

.review-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.review-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}

.review-date {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.reviews-cta {
  text-align: center;
  margin-top: 40px;
}


/* --- CTA Section --- */
.cta-section {
  background: linear-gradient(135deg, var(--rose-dark) 0%, var(--rose) 100%);
  padding: 80px 0;
  text-align: center;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-title em {
  font-style: italic;
}

.cta-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
}

.cta-section .btn-primary {
  background: var(--white);
  color: var(--rose-dark);
  border-color: var(--white);
}

.cta-section .btn-primary:hover {
  background: var(--cream);
  border-color: var(--cream);
}


/* --- Contact --- */
.section-contact {
  background: var(--white);
}

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

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

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

.contact-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  width: 32px;
  text-align: center;
}

.contact-item strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--navy);
  margin-bottom: 4px;
}

.contact-item p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

.contact-item a:hover {
  color: var(--rose);
}

.contact-payment {
  margin-top: 32px;
  font-size: 0.8rem;
  color: var(--text-muted);
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.contact-payment span {
  font-weight: 600;
  color: var(--text-light);
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 420px;
  border: 1px solid var(--border);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
}


/* --- Footer --- */
.footer {
  background: var(--navy-dark);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer .nav-brand {
  margin-bottom: 16px;
}

.footer .brand-name {
  color: var(--white);
}

.footer .brand-sub {
  color: rgba(255, 255, 255, 0.4);
}

.footer-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  max-width: 300px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
}

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

.footer-col a,
.footer-col li {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--rose-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-credit a {
  color: rgba(255, 255, 255, 0.3);
  font-weight: 500;
}

.footer-credit a:hover {
  color: var(--rose-light);
}


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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


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

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

  .contact-map {
    height: 350px;
  }

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

  .hero-visual {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--navy-dark);
    align-items: center;
    justify-content: center;
    gap: 24px;
    z-index: 5;
  }

  .nav-links.active a {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero {
    padding: 100px 24px 80px;
  }

  .hero-title {
    font-size: clamp(2.5rem, 8vw, 3.5rem);
  }

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

  .about-image-placeholder {
    aspect-ratio: 16/10;
  }

  .about-badge {
    bottom: -12px;
    right: 12px;
    padding: 12px 18px;
  }

  .about-highlights {
    gap: 20px;
  }

  .hours-content {
    flex-direction: column;
    gap: 20px;
  }

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

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .feature-item {
    border-right: none;
    border-bottom: 1px solid var(--border-light);
    padding: 14px 20px;
    font-size: 0.8rem;
  }

  .feature-item:nth-last-child(-n+2) {
    border-bottom: none;
  }

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

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

  .section {
    padding: 64px 0;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  .about-highlights {
    flex-direction: column;
    gap: 16px;
  }

  .menu-tabs {
    gap: 6px;
  }

  .menu-tab {
    padding: 8px 16px;
    font-size: 0.8rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-item:nth-last-child(-n+2) {
    border-bottom: 1px solid var(--border-light);
  }

  .feature-item:last-child {
    border-bottom: none;
  }
}
