@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

html {
  scroll-behavior: smooth;
}

::selection {
  background: #e85d2c;
  color: #fff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  color: #1a1a1a;
  background: #fff;
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Decorative blob */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.3s;
}

header.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
}

.logo {
  font-size: 26px;
  font-weight: 900;
  background: linear-gradient(135deg, #e85d2c, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
  position: relative;
}

.logo::after {
  content: '✦';
  -webkit-text-fill-color: #2d9b4e;
  font-size: 14px;
  margin-left: 4px;
  position: relative;
  top: -8px;
}

nav a {
  margin-left: 36px;
  font-size: 14px;
  font-weight: 600;
  color: #555;
  position: relative;
  transition: color 0.3s;
  letter-spacing: 0.3px;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2.5px;
  background: linear-gradient(90deg, #e85d2c, #f59e0b);
  border-radius: 2px;
  transition: width 0.3s;
}

nav a:hover {
  color: #e85d2c;
}

nav a:hover::after {
  width: 100%;
}

/* Hero */
.hero {
  margin-top: 72px;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #fef6f1 0%, #fff5ee 50%, #fff 100%);
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(232,93,44,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(45,155,78,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: 60px;
  font-weight: 900;
  line-height: 1.05;
  color: #1a1a1a;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.hero-content h1 .highlight {
  background: linear-gradient(135deg, #e85d2c, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content h1 .highlight-green {
  color: #2d9b4e;
  -webkit-text-fill-color: #2d9b4e;
}

.hero-content p {
  font-size: 18px;
  color: #777;
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  border: none;
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #e85d2c, #d14d1f);
  color: #fff;
  box-shadow: 0 4px 20px rgba(232, 93, 44, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(232, 93, 44, 0.4);
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: #e85d2c;
  border: 2px solid rgba(232, 93, 44, 0.25);
}

.btn-secondary:hover {
  background: #e85d2c;
  color: #fff;
  border-color: #e85d2c;
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(232, 93, 44, 0.2);
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-image::before {
  content: '';
  position: absolute;
  width: 90%;
  height: 90%;
  background: linear-gradient(135deg, rgba(232,93,44,0.1), rgba(245,158,11,0.1));
  border-radius: 30px;
  transform: rotate(-3deg);
  top: 5%;
  left: 5%;
}

.hero-image img {
  width: 100%;
  max-width: 560px;
  border-radius: 24px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.1);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  z-index: 1;
}

.hero-image img:hover {
  transform: scale(1.02);
}

/* Section allgemein */
.section {
  padding: 120px 0;
  position: relative;
}

.section-title {
  font-size: 42px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: -1px;
  line-height: 1.15;
}

.section-title .accent {
  background: linear-gradient(135deg, #e85d2c, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-sub {
  text-align: center;
  color: #999;
  font-size: 18px;
  margin-bottom: 64px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.section-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #e85d2c, #f59e0b);
  border-radius: 4px;
  margin: 16px auto 0;
}

/* Über uns */
.about {
  background: #fff;
  position: relative;
}

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

.about-image {
  position: relative;
}

.about-image::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border: 3px solid rgba(232, 93, 44, 0.15);
  border-radius: 24px;
  top: 16px;
  left: 16px;
  z-index: 0;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 1;
  transition: transform 0.5s;
}

.about-image:hover img {
  transform: translate(-4px, -4px);
}

.about-text h2 {
  font-size: 38px;
  font-weight: 900;
  margin-bottom: 20px;
  letter-spacing: -1px;
  line-height: 1.2;
}

.about-text h2 .accent {
  background: linear-gradient(135deg, #e85d2c, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-text p {
  color: #777;
  font-size: 17px;
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-text .btn {
  margin-top: 8px;
}

/* Speisekarte */
.menu {
  background: linear-gradient(180deg, #fef6f1 0%, #fff 50%, #fef6f1 100%);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.menu-card {
  background: #fff;
  border-radius: 24px;
  padding: 36px 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

.menu-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #e85d2c, #f59e0b);
  opacity: 0;
  transition: opacity 0.4s;
}

.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.06);
  border-color: rgba(232, 93, 44, 0.08);
}

.menu-card:hover::before {
  opacity: 1;
}

.menu-card .icon {
  font-size: 44px;
  margin-bottom: 20px;
  display: block;
  transition: transform 0.4s;
}

.menu-card:hover .icon {
  transform: scale(1.15) rotate(-5deg);
}

.menu-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.3px;
}

.menu-card .price {
  font-size: 24px;
  font-weight: 800;
  background: linear-gradient(135deg, #e85d2c, #d14d1f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.menu-card p {
  color: #888;
  font-size: 15px;
  line-height: 1.7;
}

/* Öffnungszeiten */
.hours {
  background: #fff;
  position: relative;
}

.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 750px;
  margin: 0 auto;
}

.hours-item {
  background: #fef6f1;
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s;
  border: 1px solid transparent;
}

.hours-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(232, 93, 44, 0.08);
  border-color: rgba(232, 93, 44, 0.1);
}

.hours-item .day {
  font-size: 15px;
  font-weight: 600;
  color: #999;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hours-item .time {
  font-size: 22px;
  font-weight: 800;
  color: #1a1a1a;
}

.hours-item.closed {
  background: linear-gradient(135deg, #fef6f1, #fff);
}

.hours-item.closed .time {
  background: linear-gradient(135deg, #e85d2c, #d14d1f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.badge {
  display: inline-block;
  background: linear-gradient(135deg, #e85d2c, #d14d1f);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  margin-top: 10px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Galerie */
.gallery {
  background: linear-gradient(180deg, #fff 0%, #fef6f1 100%);
}

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

.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4 / 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.3), transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item .label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s;
  z-index: 2;
}

.gallery-item:hover .label {
  opacity: 1;
  transform: translateY(0);
}

/* Kontakt */
.contact {
  background: linear-gradient(135deg, #fef6f1 0%, #fff 50%, #fef6f1 100%);
}

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

.contact-info {
  padding-top: 16px;
}

.contact-info h3 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

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

.contact-item .contact-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(232, 93, 44, 0.1), rgba(245, 158, 11, 0.1));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-item .contact-label {
  font-size: 13px;
  color: #999;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.contact-item .contact-value {
  font-size: 17px;
  font-weight: 600;
  color: #1a1a1a;
}

.contact-item .contact-value a {
  color: #e85d2c;
  transition: color 0.2s;
}

.contact-item .contact-value a:hover {
  color: #d14d1f;
}

.contact-image {
  position: relative;
}

.contact-image::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border: 3px solid rgba(45, 155, 78, 0.12);
  border-radius: 24px;
  bottom: -16px;
  right: -16px;
  z-index: 0;
}

.contact-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 1;
}

/* Footer */
footer {
  background: #0d0d0d;
  color: #aaa;
  padding: 64px 0 40px;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #e85d2c, #f59e0b, #2d9b4e);
}

footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

footer .logo {
  margin-bottom: 20px;
  font-size: 28px;
}

footer .footer-text {
  color: #666;
  font-size: 15px;
  max-width: 400px;
  margin-bottom: 28px;
  line-height: 1.7;
}

footer .links {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

footer .links a {
  color: #888;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s;
  position: relative;
}

footer .links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: linear-gradient(90deg, #e85d2c, #f59e0b);
  transition: width 0.3s;
}

footer .links a:hover {
  color: #fff;
}

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

footer .social {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

footer .social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 16px;
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

footer .social a:hover {
  background: rgba(232, 93, 44, 0.15);
  color: #e85d2c;
  border-color: rgba(232, 93, 44, 0.2);
  transform: translateY(-3px);
}

footer .copyright {
  font-size: 13px;
  color: #555;
  letter-spacing: 0.3px;
}

/* Legal pages */
.legal-page {
  margin-top: 72px;
  padding: 80px 0 120px;
  background: #fff;
}

.legal-page .legal-header-img {
  text-align: center;
  margin-bottom: 48px;
}

.legal-page .legal-header-img img {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
  max-height: 280px;
  object-fit: cover;
  width: 100%;
}

.legal-page h1 {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 40px;
  letter-spacing: -1px;
  line-height: 1.15;
}

.legal-page h2 {
  font-size: 24px;
  font-weight: 700;
  margin-top: 48px;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.legal-page h3 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 32px;
  margin-bottom: 12px;
  color: #2d2d2d;
}

.legal-page p {
  color: #666;
  margin-bottom: 14px;
  font-size: 16px;
  line-height: 1.8;
}

.legal-page ul {
  color: #666;
  margin-bottom: 14px;
  padding-left: 24px;
}

.legal-page ul li {
  margin-bottom: 8px;
  line-height: 1.7;
}

.legal-page a {
  color: #e85d2c;
  transition: color 0.2s;
}

.legal-page a:hover {
  color: #d14d1f;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 900px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

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

  .about-text {
    order: -1;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-content h1 {
    font-size: 44px;
  }

  .section-title {
    font-size: 34px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section {
    padding: 80px 0;
  }
}

@media (max-width: 600px) {
  header .container {
    flex-direction: column;
    height: auto;
    padding: 16px 24px;
  }

  nav {
    margin-top: 12px;
  }

  nav a {
    margin: 0 10px;
    font-size: 13px;
  }

  nav a::after {
    display: none;
  }

  .hero-content h1 {
    font-size: 34px;
  }

  .section-title {
    font-size: 28px;
  }

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

  .btn {
    padding: 14px 28px;
    font-size: 14px;
  }

  .about-text h2 {
    font-size: 28px;
  }

  .contact-info h3 {
    font-size: 26px;
  }

  .hours-item {
    padding: 24px 16px;
  }

  footer .links {
    gap: 20px;
  }

  .section {
    padding: 64px 0;
  }

  .legal-page h1 {
    font-size: 32px;
  }
}
