/* =========================
   RESTAURANT SECTION
========================= */

.restaurant {
  padding: 120px 20px;
  background: #ffffff;
}

.restaurant .section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* =========================
   INTRO
========================= */

.restaurant-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
}

.restaurant-text p {
  font-size: 17px;
  line-height: 1.7;
  color: #4a5a60;
  margin-bottom: 20px;
}

.restaurant-image img {
  width: 100%;
  border-radius: 14px;
}

/* =========================
   HIGHLIGHTS
========================= */

.restaurant-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 100px;
}

.highlight-item {
  text-align: center;
}

.highlight-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 20px;
}

.highlight-item h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.highlight-item p {
  font-size: 15px;
  color: #6c7c82;
}

/* =========================
   FACEBOOK PREMIUM BOX
========================= */

.restaurant-social {
  margin: 50px 0 30px;
  display: flex;
  justify-content: center;
}

.social-box {
  display: flex;
  align-items: center;
  gap: 20px;

  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);

  padding: 22px 28px;
  border-radius: 16px;

  backdrop-filter: blur(10px);

  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* ✨ SOFT GLOW BACKGROUND */

.social-box::before {
  content: "";
  position: absolute;
  inset: 0;

  background: radial-gradient(
    circle at 20% 50%,
    rgba(24,119,242,0.15),
    transparent 60%
  );

  opacity: 0;
  transition: opacity 0.4s ease;
}

/* HOVER */

.social-box:hover {
  transform: translateY(-4px) scale(1.01);
  border-color: rgba(255,255,255,0.18);
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

.social-box:hover::before {
  opacity: 1;
}

/* ICON */

.social-icon {
  font-size: 28px;
  color: #1877f2;

  transition: all 0.4s ease;
}

/* ✨ ICON GLOW */

.social-box:hover .social-icon {
  transform: translateY(-2px) scale(1.15);
  filter: drop-shadow(0 0 8px rgba(24,119,242,0.6));
}

/* TEXT */

.social-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15em;
  margin-bottom: 5px;
}

.social-sub {
  font-size: 0.9em;
  opacity: 0.75;
  margin-bottom: 10px;
}

/* BUTTON */

.social-link {
  display: inline-block;
  font-size: 0.85em;
  text-decoration: none;

  color: #1877f2;
  font-weight: 500;

  position: relative;
}

/* ✨ UNDERLINE ANIMATION */

.social-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;

  width: 0%;
  height: 1px;
  background: #1877f2;

  transition: width 0.3s ease;
}

.social-link:hover::after {
  width: 100%;
}


/* MOBILE */

@media (max-width: 600px) {
  .social-box {
    flex-direction: column;
    text-align: center;
  }
}

/* =========================
   GALLERY
========================= */

.restaurant-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 12px;
}

/* =========================
   WAVE ACCENT (Premium)
========================= */

.wave-accent {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 12px 0 18px;
}

.wave-accent span {
  width: 320px;
  height: 10px;
  display: block;
  background: transparent;
  position: relative;
}

/* die eigentliche "Welle" */
.wave-accent span::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: linear-gradient(
    to right,
    transparent,
    rgba(0, 0, 0, 0.3),
    transparent
  );
  border-radius: 50%;
}

/* feiner Bogen */
.wave-accent span::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 10px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.35);
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -30%);
}

/* optional: ganz leichte Animation */
.wave-accent span::after {
  animation: waveFloat 4s ease-in-out infinite;
}

@keyframes waveFloat {
  0%, 100% {
    transform: translate(-50%, -30%);
  }
  50% {
    transform: translate(-50%, -40%);
  }
}
/* =========================
   DAILY MENU
========================= */

.restaurant-daily {
  margin: 100px 0;
  text-align: center;
}

.restaurant-daily h3 {
  font-size: 26px;
  margin-bottom: 30px;
}

.daily-box {
  max-width: 600px;
  margin: 0 auto;
  padding: 30px;
  background: #f7f9fa;
  border-radius: 14px;
}

.daily-date {
  font-weight: 600;
  margin-bottom: 15px;
  color: #2d3e44;
}

.daily-menu {
  list-style: none;
  padding: 0;
  margin: 0 0 15px 0;
}

.daily-menu li {
  margin-bottom: 10px;
  font-size: 16px;
  color: #4a5a60;
}

.daily-note {
  font-size: 14px;
  color: #7a8a90;
}

/* =========================
   MENU WITH PRICES
========================= */

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-name {
  font-size: 16px;
  color: #2d3e44;
  max-width: 75%;
}

.menu-price {
  font-size: 16px;
  font-weight: 500;
  color: #1f2f34;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

/* =========================
   ELEGANT DIVIDER
========================= */

.menu-divider {
  width: 320px;
  height: 1px;
  margin: 20px auto 30px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(0, 0, 0, 0.25),
    transparent
  );
  position: relative;
}

.menu-divider::after {
  content: "";
  position: absolute;
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: #1f2f34;
  border-radius: 50%;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
  .restaurant-intro {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .restaurant-highlights {
    grid-template-columns: 1fr;
  }

  .restaurant-gallery {
    grid-template-columns: 1fr;
  }
}