/* Renaissance Coffee - Professional CSS Framework */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* CSS Custom Properties */
:root {
  /* Brand Colors */
  --primary: #59191f;
  --primary-light: #7a2329;
  --primary-dark: #3d1015;
  --secondary: #d4af37;
  --accent: #f5f2ed;
  --warm: #e8ddd4;
  --dark: #2c1810;
  
  /* Neutral Colors */
  --white: #ffffff;
  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #e5e5e5;
  --gray-300: #d4d4d4;
  --gray-400: #a3a3a3;
  --gray-500: #737373;
  --gray-600: #525252;
  --gray-700: #404040;
  --gray-800: #262626;
  --gray-900: #171717;
  
  /* Typography */
  --font-primary: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-secondary: "Cormorant Garamond", Georgia, serif;
  
  /* Font Sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
  --text-7xl: 4.5rem;
  
  /* Spacing Scale */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  
  /* Border Radius */
  --radius-sm: 0.125rem;
  --radius: 0.25rem;
  --radius-md: 0.375rem;
  --radius-lg: 0.5rem;
  --radius-xl: 0.75rem;
  --radius-2xl: 1rem;
  --radius-3xl: 1.5rem;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;
  
  /* Z-Index Scale */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;
}

/* Reset & Base Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  line-height: 1.5;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-primary);
  font-weight: 400;
  line-height: 1.6;
  color: var(--gray-700);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Remove default link styles */
a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  text-decoration: none;
}

/* Image optimization */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Button reset */
button {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
}

/* List reset */
ul, ol {
  list-style: none;
}

/* Container System */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-4);
}

@media (min-width: 640px) {
  .container {
    padding: 0 var(--space-6);
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 var(--space-8);
  }
}

/* Typography System */
.text-xs { font-size: var(--text-xs); }
.text-sm { font-size: var(--text-sm); }
.text-base { font-size: var(--text-base); }
.text-lg { font-size: var(--text-lg); }
.text-xl { font-size: var(--text-xl); }
.text-2xl { font-size: var(--text-2xl); }
.text-3xl { font-size: var(--text-3xl); }
.text-4xl { font-size: var(--text-4xl); }
.text-5xl { font-size: var(--text-5xl); }

@media (min-width: 1024px) {
  .lg\:text-5xl { font-size: var(--text-5xl); }
  .lg\:text-7xl { font-size: var(--text-7xl); }
}

.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.font-primary { font-family: var(--font-primary); }
.font-secondary { font-family: var(--font-secondary); }

.italic { font-style: italic; }
.uppercase { text-transform: uppercase; }

.text-center { text-align: center; }
.text-left { text-align: left; }

@media (min-width: 1024px) {
  .lg\:text-left { text-align: left; }
}

.leading-tight { line-height: 1.25; }
.leading-normal { line-height: 1.5; }
.leading-relaxed { line-height: 1.625; }

.tracking-wide { letter-spacing: 0.025em; }
.tracking-widest { letter-spacing: 0.1em; }

/* Color System */
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-white { color: var(--white); }
.text-gray-600 { color: var(--gray-600); }
.text-gray-700 { color: var(--gray-700); }

/* Renaissance Brand Colors */
.text-renaissance-burgundy { color: var(--primary); }
.text-renaissance-gold { color: var(--secondary); }
.renaissance-burgundy { background-color: var(--primary); }
.renaissance-cream { background-color: var(--accent); }

.bg-primary { background-color: var(--primary); }
.bg-accent { background-color: var(--accent); }
.bg-warm { background-color: var(--warm); }
.bg-white { background-color: var(--white); }
.bg-gray-100 { background-color: var(--gray-100); }

/* Layout System */
.flex { display: flex; }
.grid { display: grid; }
.hidden { display: none; }
.block { display: block; }
.inline-flex { display: inline-flex; }

.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }

.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }

/* Positioning utilities */
.top-6 { top: var(--space-6); }
.bottom-6 { bottom: var(--space-6); }
.left-6 { left: var(--space-6); }
.right-6 { right: var(--space-6); }

.z-10 { z-index: 10; }
.z-50 { z-index: var(--z-fixed); }

/* Flexbox */
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-start { justify-content: flex-start; }

@media (min-width: 640px) {
  .sm\:flex-row { flex-direction: row; }
}

@media (min-width: 1024px) {
  .lg\:justify-start { justify-content: flex-start; }
}

/* Grid System */
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

@media (min-width: 640px) {
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:col-span-2 { grid-column: span 2 / span 2; }
}

/* Spacing System */
.gap-4 { gap: var(--space-4); }
.gap-6 { gap: var(--space-6); }
.gap-8 { gap: var(--space-8); }
.gap-16 { gap: var(--space-16); }

.space-y-3 > * + * { margin-top: var(--space-3); }
.space-y-4 > * + * { margin-top: var(--space-4); }
.space-y-6 > * + * { margin-top: var(--space-6); }
.space-x-3 > * + * { margin-left: var(--space-3); }
.space-x-4 > * + * { margin-left: var(--space-4); }
.space-x-6 > * + * { margin-left: var(--space-6); }
.space-x-8 > * + * { margin-left: var(--space-8); }

/* Padding */
.p-6 { padding: var(--space-6); }
.p-8 { padding: var(--space-8); }
.px-4 { padding-left: var(--space-4); padding-right: var(--space-4); }
.px-6 { padding-left: var(--space-6); padding-right: var(--space-6); }
.px-10 { padding-left: var(--space-10); padding-right: var(--space-10); }
.py-4 { padding-top: var(--space-4); padding-bottom: var(--space-4); }
.py-20 { padding-top: var(--space-20); padding-bottom: var(--space-20); }

/* Margin */
.mb-2 { margin-bottom: var(--space-2); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }
.mb-10 { margin-bottom: var(--space-10); }
.mb-12 { margin-bottom: var(--space-12); }
.mb-16 { margin-bottom: var(--space-16); }
.mt-4 { margin-top: var(--space-4); }
.mt-8 { margin-top: var(--space-8); }
.mt-16 { margin-top: var(--space-16); }
.mx-auto { margin-left: auto; margin-right: auto; }

@media (min-width: 640px) {
  .sm\:mt-0 { margin-top: 0; }
}

/* Sizing */
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-8 { width: 2rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-full { width: 100%; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-8 { height: 2rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-16 { height: 4rem; }
.h-full { height: 100%; }

.min-h-screen { min-height: 100vh; }

.max-w-xs { max-width: 20rem; }
.max-w-md { max-width: 28rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-4xl { max-width: 56rem; }

/* Aspect Ratios */
.aspect-square { aspect-ratio: 1 / 1; }
.aspect-4-5 { aspect-ratio: 4 / 5; }
.aspect-3-4 { aspect-ratio: 3 / 4; }
.aspect-16-10 { aspect-ratio: 16 / 10; }

/* Border Radius */
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-2xl { border-radius: var(--radius-2xl); }
.rounded-full { border-radius: var(--radius-full); }

/* Shadows */
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }
.shadow-2xl { box-shadow: var(--shadow-2xl); }

/* Borders */
.border { border-width: 1px; }
.border-2 { border-width: 2px; }
.border-t { border-top-width: 1px; }
.border-b { border-bottom-width: 1px; }

/* Overflow */
.overflow-hidden { overflow: hidden; }

/* Object Fit */
.object-cover { object-fit: cover; }

/* Opacity */
.opacity-90 { opacity: 0.9; }

/* Transitions */
.transition-colors { 
  transition-property: color, background-color, border-color;
  transition-duration: var(--transition-fast);
  transition-timing-function: ease;
}

.transition-all { 
  transition-property: all;
  transition-duration: var(--transition-base);
  transition-timing-function: ease;
}

/* Responsive Utilities */
@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:hidden { display: none; }
}

@media (min-width: 1024px) {
  .lg\:block { display: block; }
}

/* Component Classes */

/* Navigation */
.navigation {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gray-100);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-weight: 500;
  text-decoration: none;
  transition: all var(--transition-fast);
  cursor: pointer;
  border: none;
  outline: none;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  padding: var(--space-4) var(--space-10);
  font-size: var(--text-base);
}

.btn-primary:hover {
  background-color: var(--primary-light);
  transform: translateY(-1px);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
  padding: var(--space-4) var(--space-10);
  font-size: var(--text-base);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--white);
}

.btn-ghost {
  background-color: transparent;
  color: var(--gray-700);
  padding: var(--space-2);
}

.btn-ghost:hover {
  background-color: var(--gray-100);
}

/* Cards */
.card {
  background-color: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  overflow: hidden;
}

.card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(89, 25, 31, 0.2);
  transform: translateY(-2px);
}

.card-content {
  padding: var(--space-6);
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius);
  padding: var(--space-1) var(--space-3);
  font-size: var(--text-xs);
  font-weight: 500;
  background-color: var(--warm);
  color: var(--primary);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  border-top: 1px solid var(--gray-100);
  padding: var(--space-4) 0;
}

.mobile-menu.active {
  display: block;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
}

.hero-background {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #fafafa 0%, #f5f5f4 100%);
}

.hero-background::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, transparent 70%, rgba(0, 0, 0, 0.05) 100%);
}

/* Sections */
.section {
  padding: var(--space-20) 0;
  position: relative;
  z-index: 1;
}

.section-accent {
  background-color: var(--accent);
}

.section-gradient {
  background: linear-gradient(180deg, var(--white) 0%, var(--accent) 100%);
}

/* Menu Section */
.menu-section {
  padding: var(--space-20) 0;
  background-color: var(--white);
  position: relative;
  z-index: 2;
  clear: both;
}

/* About Section */
.about-section {
  padding: var(--space-20) 0;
  background-color: var(--accent);
  position: relative;
  z-index: 1;
  clear: both;
}

/* Contact Section */
.contact-section {
  padding: var(--space-20) 0;
  background-color: var(--white);
  position: relative;
  z-index: 1;
  clear: both;
}

/* Coffee Art Section */
.coffee-art-section {
  position: relative;
  padding: var(--space-24) 0;
  background-image: url('../images/premium-coffee-artistic-composition.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 1;
  clear: both;
}

.coffee-art-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.coffee-art-section .container {
  position: relative;
  z-index: 2;
}

/* Footer */
.footer {
  background-color: var(--primary);
  color: var(--white);
  padding: var(--space-16) 0;
}

.footer a {
  color: var(--accent);
  transition: color var(--transition-fast);
}

.footer a:hover {
  color: var(--white);
}

/* Footer Typography Classes */
.font-display {
  font-family: var(--font-secondary);
}

.font-elegant {
  font-family: var(--font-primary);
}

/* Renaissance Color Classes */
.renaissance-cream {
  color: var(--accent);
}

.renaissance-warm {
  color: var(--warm);
}

/* Social Icons */
.social-icon {
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--primary-dark);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.social-icon:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
}

/* Floating Elements */
.floating-stat {
  position: absolute;
  background-color: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  padding: var(--space-6);
}

.floating-stat.bottom-left {
  bottom: -1.5rem;
  left: -1.5rem;
}

.floating-stat.top-right {
  top: -1.5rem;
  right: -1.5rem;
  background-color: var(--primary);
  color: var(--white);
}

/* Coffee Art Floating Beans */
.coffee-art-floating-beans {
  position: absolute;
  border-radius: var(--radius-full);
  animation: float 3s ease-in-out infinite;
}

.coffee-art-floating-beans:nth-child(1) {
  top: 2rem;
  right: 2rem;
  width: 1rem;
  height: 1rem;
  background-color: var(--primary);
  opacity: 0.6;
  animation-delay: 0s;
}

.coffee-art-floating-beans:nth-child(2) {
  top: 4rem;
  right: 4rem;
  width: 0.75rem;
  height: 0.75rem;
  background-color: var(--secondary);
  opacity: 0.8;
  animation-delay: 0.5s;
}

.coffee-art-floating-beans:nth-child(3) {
  bottom: 3rem;
  left: 3rem;
  width: 1.25rem;
  height: 1.25rem;
  background-color: var(--primary);
  opacity: 0.4;
  animation-delay: 1s;
}

.coffee-art-floating-beans:nth-child(4) {
  bottom: 5rem;
  left: 2rem;
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--secondary);
  opacity: 0.7;
  animation-delay: 1.5s;
}

/* Animations */
@keyframes float {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg); 
  }
  25% { 
    transform: translateY(-10px) rotate(5deg); 
  }
  50% { 
    transform: translateY(-5px) rotate(-5deg); 
  }
  75% { 
    transform: translateY(-15px) rotate(3deg); 
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeIn 0.6s ease forwards;
}

.slide-in-left {
  animation: slideInLeft 0.8s ease forwards;
}

.slide-in-right {
  animation: slideInRight 0.8s ease forwards;
}

.slide-in-up {
  animation: slideInUp 0.8s ease forwards;
}

.slide-in-down {
  animation: slideInDown 0.8s ease forwards;
}

/* Removed excessive slide effects */

/* Simple fade effect for cards */
.fade-effect {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.fade-effect.visible {
  opacity: 1;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-full);
  background-color: var(--primary);
  color: var(--white);
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  z-index: var(--z-fixed);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
}

/* Utility Classes */
.text-balance {
  text-wrap: balance;
}

.group:hover .group-hover\:text-secondary {
  color: var(--secondary);
}

/* Menu Category Toggle Styles - Minimal & Elegant */
.category-section {
  margin-bottom: 0.75rem;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-section .category-title {
  transition: all 0.3s ease;
  cursor: pointer;
  user-select: none;
  position: relative;
  padding: 0;
  margin: 0;
  background: none;
  border: none;
  outline: none !important;
  -webkit-tap-highlight-color: transparent;
}

/* Remove blue highlight on click/focus */
.category-section .category-title:focus,
.category-section .category-title:active,
.category-section .category-title:focus-visible {
  outline: none !important;
  box-shadow: none !important;
  background: none !important;
}

/* Collapsed state - minimal design */
.category-section.collapsed .category-title {
  color: var(--primary);
  opacity: 0.8;
}

.category-section.collapsed .category-title:hover {
  color: var(--secondary);
  opacity: 1;
  transform: translateX(10px);
}

.category-section.collapsed .category-title:active {
  transform: translateX(5px);
}

/* Expanded state */
.category-section:not(.collapsed) .category-title {
  color: var(--primary);
  opacity: 1;
  margin-bottom: 1rem;
}

.category-section:not(.collapsed) .category-title:hover {
  color: var(--secondary);
}

/* Grid animation - smooth and elegant */
.category-section .grid {
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

/* Collapsed state - hidden */
.category-section.collapsed .grid {
  max-height: 0;
  opacity: 0;
  margin-top: 0;
  margin-bottom: 0;
  transform: translateY(-20px);
}

/* Expanded state - visible */
.category-section:not(.collapsed) .grid {
  max-height: none;
  opacity: 1;
  margin-top: 0;
  transform: translateY(0);
}

/* Collapsing animation state */
.category-section.collapsing .grid {
  max-height: 0;
  opacity: 0;
  margin-top: 0;
  margin-bottom: 0;
  transform: translateY(-20px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Expanding animation state */
.category-section.expanding .grid {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Category subtitle styling */
.category-section .category-subtitle {
  display: block;
  font-size: var(--text-sm);
  color: var(--gray-500);
  font-style: italic;
  font-weight: 400;
  margin-top: 0.5rem;
  transition: all 0.3s ease;
}

.category-section.collapsed .category-subtitle {
  opacity: 0.7;
}

.category-section:not(.collapsed) .category-subtitle {
  opacity: 0.9;
  color: var(--gray-600);
}

/* Remove dividers completely for cleaner look */
.category-section:not(:last-child)::after {
  display: none;
}

/* Remove any default button/link styling */
* {
  -webkit-tap-highlight-color: transparent;
}

button:focus,
a:focus,
h1:focus,
h2:focus,
h3:focus {
  outline: none !important;
  box-shadow: none !important;
}

/* Menu Item Separator */
.menu-item-separator {
  height: 1px;
  background: linear-gradient(to right, transparent, #d4af37, transparent);
  margin: 1rem 0;
  opacity: 0.3;
  width: 100%;
}

/* Grid layout fixes for separators */
@media (min-width: 1024px) {
  /* Hide separators in desktop grid layout to prevent misalignment */
  .grid .menu-item-separator {
    display: none;
  }
  
  /* Alternative: Full-width separator that spans all grid columns */
  .grid-separator {
    grid-column: 1 / -1;
    height: 1px;
    background: linear-gradient(to right, transparent, #d4af37, transparent);
    margin: 2rem 0;
    opacity: 0.2;
  }
}

/* Mobile: Keep separators visible */
@media (max-width: 1023px) {
  .menu-item-separator {
    display: block;
    margin: 1.5rem 0;
  }
  
  .grid-separator {
    display: none;
  }
}

/* Print Styles */
@media print {
  .navigation,
  .back-to-top {
    display: none !important;
  }
}