/* ================================================
   Restaurant Opatija - Styles
   ================================================ */

/* CSS Variables / Design Tokens */
:root {
  /* Colors */
  --color-primary: hsl(345, 62%, 33%);
  --color-primary-light: hsl(345, 55%, 40%);
  --color-primary-dark: hsl(345, 62%, 28%);
  
  --color-accent: hsl(345, 62%, 33%);
  --color-accent-hover: hsl(345, 62%, 28%);
  
  --color-background: hsl(40, 30%, 97%);
  --color-background-secondary: hsl(40, 30%, 95%);
  
  --color-text: hsl(0, 0%, 20%);
  --color-text-muted: hsl(0, 0%, 45%);
  --color-text-light: hsl(40, 30%, 97%);
  
  --color-border: hsl(40, 20%, 88%);
  --color-card: hsl(40, 30%, 99%);
  
  /* Typography */
  --font-script: 'Great Vibes', cursive;
  --font-body: 'Poppins', sans-serif;
  
  /* Spacing */
  --container-max-width: 1100px;
  --section-padding: 6rem;
  --section-padding-mobile: 4rem;
  
  /* Border Radius */
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.25rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-card-hover: 0 12px 40px rgba(0, 0, 0, 0.15);
  --shadow-button: 0 4px 15px rgba(0, 0, 0, 0.2);
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-normal: 300ms ease;
  --transition-slow: 500ms ease;
}

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

html {
  scroll-behavior: smooth;
}

/* Offset für Anker-Sprünge unter der fixen Navigation */
section[id],
footer[id] {
  scroll-margin-top: 80px;
}

@media (max-width: 768px) {
  section[id],
  footer[id] {
    scroll-margin-top: 68px;
  }
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
  list-style: none;
}

/* ================================================
   Layout Components
   ================================================ */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: var(--section-padding) 0;
}

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

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-family: var(--font-script);
  font-size: clamp(3rem, 8vw, 4rem);
  color: var(--color-primary);
  margin-bottom: 1rem;
  font-weight: 400;
}

.section-title-light {
  color: var(--color-text-light);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.7;
}

.section-subtitle-light {
  color: rgba(255, 255, 255, 0.8);
}

/* ================================================
   Buttons
   ================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all var(--transition-normal);
}

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

.btn-primary:hover {
  background-color: var(--color-accent-hover);
  transform: scale(1.05);
  box-shadow: var(--shadow-button);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--color-text);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
  background-color: white;
  transform: scale(1.05);
}

.btn-reserve {
  background-color: var(--color-accent);
  color: white;
  padding: 0.875rem 1.5rem;
}

.btn-reserve:hover {
  background-color: var(--color-accent-hover);
  transform: scale(1.05);
  box-shadow: var(--shadow-button);
}

/* ================================================
   Navigation
   ================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all var(--transition-normal);
}

.nav.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 0.75rem 0;
}

.nav.scrolled .nav-logo {
  color: var(--color-primary);
}

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

.nav-logo {
  font-family: var(--font-script);
  font-size: 1.875rem;
  color: #ffffff;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-light);
  transition: color var(--transition-fast);
}

.nav.scrolled .nav-link {
  color: var(--color-text);
}

.nav-link:hover {
  color: var(--color-primary);
}

.nav-toggle {
  display: none;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger {
  display: block;
  width: 1.5rem;
  height: 2px;
  background-color: var(--color-text-light);
  position: relative;
  transition: background-color var(--transition-fast);
}

.nav.scrolled .hamburger,
.nav.scrolled .hamburger::before,
.nav.scrolled .hamburger::after {
  background-color: var(--color-text);
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-text-light);
  transition: transform var(--transition-normal);
}

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

.hamburger::after {
  bottom: -6px;
}

.nav-toggle.active .hamburger {
  background-color: transparent;
}

.nav-toggle.active .hamburger::before {
  transform: rotate(45deg) translate(4px, 4px);
}

.nav-toggle.active .hamburger::after {
  transform: rotate(-45deg) translate(4px, -4px);
}

/* Mobile Navigation */
@media (max-width: 768px) {
  /* Kompakteres Top-Menü auf Mobilgeräten (~50% kleiner) */
  .nav { padding: 0.6rem 0; }
  .nav.scrolled { padding: 0.4rem 0; }
  .nav-container { padding: 0 0.875rem; }
  .nav-logo { font-size: 1.125rem; }
  .nav-toggle { padding: 0.25rem; }
  .hamburger,
  .hamburger::before,
  .hamburger::after { width: 1.1rem; }
  .hamburger::before { top: -5px; }
  .hamburger::after { bottom: -5px; }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background-color: var(--color-background);
    padding: 0.5rem 0;
    gap: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: none;
    border-top: 1px solid var(--color-border);
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu .nav-link {
    display: block;
    padding: 0.45rem 1rem;
    font-size: 0.78rem;
    color: var(--color-text);
    width: 100%;
  }

  .nav-menu .nav-link:hover {
    background-color: var(--color-background-secondary);
  }

  .nav-toggle {
    display: block;
  }
}

/* ================================================
   Hero Section
   ================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-image: url('../images/hero-restaurant.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0.6),
    rgba(0, 0, 0, 0.7)
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1.5rem;
  animation: fadeUp 0.8s ease-out;
}

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

.hero-tagline {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 300;
}

.hero-title {
  font-family: var(--font-script);
  font-size: clamp(4rem, 15vw, 8rem);
  color: white;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.hero-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 32rem;
  margin: 0 auto 2.5rem;
  font-weight: 300;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.6);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* ================================================
   Features Grid (Geschichte)
   ================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.feature {
  text-align: center;
}

.feature-icon {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background-color: rgba(122, 31, 53, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--color-primary);
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}

.feature-description {
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ================================================
   Dishes Grid (Spezialitäten)
   ================================================ */
.dishes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

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

@media (max-width: 576px) {
  .dishes-grid {
    grid-template-columns: 1fr;
  }
}

.dish-card {
  background-color: var(--color-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.dish-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: var(--shadow-card-hover);
}

.dish-image-wrapper {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.dish-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.dish-card:hover .dish-image {
  transform: scale(1.1);
}

.dish-price {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background-color: var(--color-accent);
  color: white;
  padding: 0.375rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
}

.dish-content {
  padding: 1.5rem;
}

.dish-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.dish-description {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ================================================
   Ambiente Grid
   ================================================ */
.ambiente-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (max-width: 576px) {
  .ambiente-grid {
    grid-template-columns: 1fr;
  }
}

.ambiente-item {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.ambiente-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.ambiente-item:hover .ambiente-image {
  transform: scale(1.05);
}

.ambiente-label {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  color: white;
  font-weight: 500;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.ambiente-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.ambiente-item:hover::after,
.ambiente-item:hover .ambiente-label {
  opacity: 1;
}

/* ================================================
   Footer
   ================================================ */
.footer {
  background-color: var(--color-primary);
  padding: 5rem 0;
}

.footer-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: nowrap;
}

.footer-header > div {
  text-align: left;
}

.footer-portrait {
  width: 160px;
  height: auto;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .footer-header { gap: 1rem; }
  .footer-portrait {
    width: 90px;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

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

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
}

.contact-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.contact-value {
  color: white;
  font-weight: 500;
}

.reservation-card {
  background-color: var(--color-primary-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
}

.reservation-title {
  font-family: var(--font-script);
  font-size: 2.5rem;
  color: white;
  margin-bottom: 1rem;
  font-weight: 400;
}

.reservation-text {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.copyright {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

.copyright p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ================================================
   Responsive Adjustments
   ================================================ */
@media (max-width: 768px) {
  .section {
    padding: var(--section-padding-mobile) 0;
  }
  
  .section-header {
    margin-bottom: 3rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .hero-tagline {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
  }
  
  .hero-description {
    font-size: 1rem;
  }
}

/* ================================================
   Interactive Horizontal Menu Cards
   ================================================ */
.menu-section {
  position: relative;
  overflow: hidden;
  --x: calc(var(--posX, 0) * 1px);
  --y: calc(var(--posY, 0) * 1px);
  background-image:
    radial-gradient(80% 80% at calc(50% + var(--x)) calc(0% + var(--y)), hsla(345, 62%, 33%, .28), transparent 60%),
    radial-gradient(70% 90% at calc(80% - var(--x)) calc(20% + var(--y)), hsla(345, 62%, 33%, .32), transparent 65%),
    radial-gradient(90% 100% at calc(0% + var(--x)) calc(80% - var(--y)), hsla(345, 55%, 40%, .24), transparent 60%),
    linear-gradient(180deg, hsl(345, 35%, 70%), hsl(345, 30%, 78%));
  transition: background-position 200ms ease;
  padding: 6rem 0;
}

/* Weiße Texte für Speisekarte-Überschrift */
.menu-section .section-title {
  color: white;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.menu-section .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.menu-section .menu-legal-note {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.875rem;
  font-style: italic;
  margin-top: 0.75rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.menu-scroller {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: hsla(345, 62%, 33%, .35) transparent;
  padding: 1rem 0 2rem;
}
.menu-scroller::-webkit-scrollbar { height: 6px; }
.menu-scroller::-webkit-scrollbar-track { background: transparent; }
.menu-scroller::-webkit-scrollbar-thumb {
  background: hsla(345, 62%, 33%, .25);
  border-radius: 999px;
}
.menu-scroller::-webkit-scrollbar-thumb:hover { background: hsla(345, 62%, 33%, .45); }

.menu-track {
  display: flex;
  gap: 1.5rem;
  padding: 0 max(1.5rem, calc((100vw - 1100px) / 2));
}

.menu-card {
  flex: 0 0 auto;
  width: 500px;
  min-height: 700px;
  scroll-snap-align: center;
  background: hsl(40, 30%, 99%);
  border: 1px solid hsl(40, 20%, 88%);
  border-radius: 18px;
  padding: 2rem 2rem 1.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
}

.menu-card::before {
  content: "";
  position: absolute;
  inset: -40px -60px auto auto;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle at 30% 30%, hsla(345, 62%, 33%, .18), transparent 60%);
  transform: rotate(15deg);
  pointer-events: none;
}
.menu-card::after {
  content: "";
  position: absolute;
  left: -80px;
  bottom: -90px;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle at 50% 50%, hsla(345, 62%, 26%, .14), transparent 62%);
  pointer-events: none;
}

.menu-brand {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  border-bottom: 1px solid hsl(40, 20%, 88%);
  padding-bottom: 0.875rem;
  margin-bottom: 0.875rem;
  position: relative;
  z-index: 1;
}
.menu-brand-left { display: flex; gap: 0.75rem; align-items: flex-start; min-width: 0; }
.menu-mark {
  width: 44px; height: 44px;
  border-radius: 14px;
  border: 1px solid hsla(345, 62%, 33%, .45);
  background:
    radial-gradient(circle at 30% 30%, hsla(345, 62%, 33%, .22), transparent 60%),
    linear-gradient(180deg, hsla(0,0%,100%,.06), transparent);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
.menu-mark span {
  font-weight: 800;
  color: hsl(345, 62%, 33%);
  letter-spacing: 0.08em;
  font-size: 14px;
}
.menu-script-title {
  font-family: var(--font-script);
  font-size: 2.75rem;
  line-height: 1;
  color: hsl(345, 62%, 33%);
  margin-bottom: 2px;
}
.menu-subtitle {
  color: hsl(0, 0%, 45%);
  font-size: 0.8125rem;
  margin-top: 2px;
}
.menu-pill {
  display: inline-block;
  margin-top: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid hsla(345, 62%, 33%, .35);
  color: hsl(345, 62%, 33%);
  font-weight: 600;
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.menu-brand-right {
  text-align: right;
  color: hsl(0, 0%, 45%);
  font-size: 0.75rem;
  max-width: 180px;
}
.menu-brand-right b { color: hsl(0, 0%, 20%); font-weight: 600; }

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem;
  position: relative;
  z-index: 1;
  flex: 1;
}

.menu-block {
  border: 1px solid hsl(40, 20%, 88%);
  border-radius: 1rem;
  padding: 0.75rem;
  background: linear-gradient(180deg, hsla(0,0%,0%,.03), hsla(0,0%,0%,.01));
}
.menu-block.highlight {
  border-color: hsla(345, 62%, 33%, .35);
  background: linear-gradient(180deg, hsla(345, 62%, 33%, .08), hsla(0,0%,0%,.02));
}
.menu-block h3 {
  margin: 0 0 0.625rem;
  font-size: 0.8125rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: hsl(345, 62%, 33%);
  font-weight: 700;
}

.menu-item {
  padding: 0.5rem 0;
  border-top: 1px dashed hsla(0, 0%, 0%, .08);
}
.menu-item:first-of-type { border-top: none; padding-top: 0; }
.menu-item.highlight {
  border-radius: 0.5rem;
  padding: 0.5rem;
  background: hsla(345, 62%, 33%, .06);
  border: 1px solid hsla(345, 62%, 33%, .25);
  margin: 0.25rem 0;
}

.menu-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.625rem;
}
.menu-name {
  font-weight: 600;
  font-size: 0.84rem;
  color: hsl(0, 0%, 20%);
}
.menu-price {
  font-weight: 800;
  color: hsl(0, 0%, 20%);
  font-size: 0.84rem;
  white-space: nowrap;
}
.menu-desc {
  margin-top: 3px;
  color: hsl(0, 0%, 45%);
  font-size: 0.75rem;
  line-height: 1.5;
}

.menu-item .badge,
.menu-name .badge {
  display: inline-block;
  margin-left: 0.5rem;
  font-size: 0.625rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: hsl(345, 62%, 33%);
  border: 1px solid hsla(345, 62%, 33%, .4);
  padding: 2px 7px;
  border-radius: 999px;
  font-weight: 700;
}

.menu-footer {
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid hsl(40, 20%, 88%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: hsl(0, 0%, 45%);
  font-size: 0.6875rem;
  position: relative;
  z-index: 1;
}
.menu-footer .gold {
  color: hsl(345, 62%, 33%);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.625rem;
}

/* Dot navigation */
.menu-dots {
  display: flex;
  justify-content: center;
  gap: 0.625rem;
  margin-top: 1rem;
}
.menu-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  background: hsla(345, 62%, 33%, .25);
  cursor: pointer;
  transition: all 200ms ease;
  padding: 0;
}
.menu-dot:hover { background: hsla(345, 62%, 33%, .5); transform: scale(1.2); }
.menu-dot.active {
  background: hsl(345, 62%, 33%);
  width: 28px;
}

/* Responsive */
@media (max-width: 768px) {
  .menu-card {
    width: 85vw;
    min-height: 600px;
    padding: 1.25rem;
  }
  .menu-track { gap: 1rem; padding: 0 7.5vw; }
  .menu-grid { grid-template-columns: 1fr; }
  .menu-script-title { font-size: 2.25rem; }
  .menu-brand-right { max-width: 130px; font-size: 0.6875rem; }
}

@media (max-width: 480px) {
  .menu-card { width: 88vw; padding: 1rem; }
  .menu-track { padding: 0 6vw; }
}
