/* CSS Variables */
:root {
  --primary: #D4A853;
  --primary-dark: #B8923D;
  --background-light: #D4C4A8;
  --background-dark: #1A1410;
  --foreground-light: #2D2418;
  --foreground-dark: #F5F0E8;
  --card-light: #C9B896;
  --card-dark: #2D2418;
  --muted-light: #B8A88C;
  --muted-dark: #3D2B1F;
  --border-light: #A89878;
  --border-dark: #4A3728;
  
  --font-display: 'Inter', sans-serif;
  
}

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

/* Base Styles */
body {
  font-family: var(--font-display);
  min-height: 100vh;
  transition: background-color var(--transition), color var(--transition);
}

body.dark {
  background-color: var(--background-dark);
  color: var(--foreground-dark);
}





/* Announcement Banner */
.oberer-streifen {
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  padding: 0.625rem 1rem;
  overflow: hidden;
  padding-bottom: 1.5rem;
}


@keyframes scroll {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}



@keyframes scroll-rtl {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* Header */
.header {
  padding: 1.5rem 1rem;
  text-align: center;
  position: relative;
}




.logo-container {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.logo {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--primary);
  box-shadow: 0 4px 20px rgba(212, 168, 83, 0.3);
}

.restaurant-name {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
  letter-spacing: 0.05em;
}

.restaurant-subtitle {
  font-size: 0.875rem;
  opacity: 0.8;
}




.categories {
  display: flex;
  flex-direction: column;
  gap: 1rem;

  max-width: 700px;
  margin: 0 auto;
  margin-top: 2rem;
  padding: 2rem;

  background-color: #2D2418;
  border-radius: 12px;
}

.impressum h2 {
  text-align: center;
  margin-bottom: 1.5rem;
}

.impressum-item strong {
  display: block;
  margin-bottom: 0.25rem;
}

.impressum-item p {
  margin: 0;
  line-height: 1.6;
}



/* Footer */
.footer {
  margin-top: 2rem;
  padding: 2rem 1rem;
  text-align: center;
  border-top: 1px solid;
}

body.dark .footer {
  background: var(--card-dark);
  border-color: var(--border-dark);
}

body.light .footer {
  background: var(--card-light);
  border-color: var(--border-light);
}

.footer-content {
  max-width: 480px;
  margin: 0 auto;
}

.social-section {
  margin-bottom: 1.5rem;
}

.social-section h3,
.address-section h3,
.phone-number-section h3{
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--primary);
}


.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: all var(--transition);
}

.social-link:hover {
  background: var(--primary);
}

body.dark .social-link:hover {
  color: var(--background-dark);
}



.social-icon {
  width: 1.25rem;
  height: 1.25rem;
}

.address-section {
  margin-bottom: 1.5rem;
}

.phone-number-section {
  margin-bottom: 1rem;
}

.address-link ,
.phone-number-link,
.email-address-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: inherit;
  text-decoration: none;
  opacity: 0.8;
  transition: all var(--transition);
}

.address-link:hover {
  opacity: 1;
  color: var(--primary);
}

.address-icon ,
.phone-number-icon {
  width: 1rem;
  height: 1rem;
}

.copyright {
  font-size: 0.75rem;
  opacity: 0.6;
}



/* Responsive */
@media (min-width: 640px) {
  .logo {
    width: 160px;
    height: 160px;
  }
  
  .restaurant-name {
    font-size: 2rem;
  }
  

}
