/* ==========================
   GLOBAL STYLES FÜR ARIA BUSINESS SOUNDS
========================== */

/* 1. Hintergrundbild + Overlay für alle Seiten */
body {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  background: linear-gradient(rgba(47,47,47,0.75), rgba(47,47,47,0.75)),
              url('images/restaurant-hintergrund.webp') no-repeat center center fixed;
  background-size: cover;
  background-attachment: fixed;
  color: #fff;
  min-height: 100vh;
}

/* 2. Hero-Bereich */
header {
  background: rgba(201,161,74,0.95);
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  text-align: center;
  padding: 70px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
header h1, header h2, header p {
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
  margin: 10px auto;
  max-width: 90%;
  text-align: center;
}
header h1 { font-size: 26px; margin-bottom: 10px; }
header h2 { font-size: 36px; margin: 10px 0 15px 0; font-weight: bold; color: white; }
header p.header-subtext { font-size: 18px; margin-bottom: 25px; font-weight: bold; }

/* 3. Navigation */
.topbar { background: white; border-bottom: 1px solid #eee; }
.nav { max-width: 1100px; margin: auto; display: flex; align-items: center; justify-content: space-between; padding: 15px 20px; flex-wrap: wrap; }
.logo { display: flex; align-items: center; font-weight: bold; font-size: 22px; color: #4b2c20; }
.logo img { height: 80px; margin-right: 15px; }
.nav a { text-decoration: none; color: #4b2c20; margin-left: 20px; font-size: 14px; margin-top: 10px; }

/* 4. Container & Boxen */
.container { max-width: 900px; margin: auto; padding: 40px 20px; }
.feature { background: white; padding: 25px; border-radius: 6px; box-shadow: 0 0 15px rgba(0,0,0,0.1); margin-bottom: 30px; transition: transform 0.3s; color: #333; }
.feature:hover { transform: translateY(-3px); }
.player { display: grid; grid-template-columns: 1fr; gap: 20px; }
.player-box { background: #faf7f2; padding: 15px; border-radius: 6px; box-shadow: 0 3px 10px rgba(0,0,0,0.1); transition: transform 0.3s; }
.player-box:hover { transform: translateY(-3px); }
.player-box p { margin: 0 0 5px 0; font-weight: bold; }
.player-box audio { width: 100%; }
.formbox { background: white; padding: 30px; border-radius: 6px; box-shadow: 0 0 15px rgba(0,0,0,0.1); }

/* 5. Inputs & Buttons */
input, textarea { width: 100%; padding: 12px; margin-bottom: 15px; border: 1px solid #ccc; border-radius: 4px; font-size: 15px; }
button { background: #c9a14a; border: none; padding: 15px; width: 100%; font-size: 16px; cursor: pointer; border-radius: 4px; }
button:hover { background: #b28e3f; }
.checkbox { display: flex; align-items: flex-start; font-size: 14px; margin-bottom: 15px; }
.checkbox input { width: auto; margin-right: 10px; margin-top: 4px; }
.feedback { display: none; padding: 15px; margin-bottom: 15px; border-radius: 4px; font-weight: bold; }
.feedback.success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.feedback.error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* 6. Footer */
footer { text-align: center; padding: 40px; font-size: 14px; color: #ccc; }
footer a { color: #c9a14a; text-decoration: none; }

/* 7. Fixed Buttons */
.whatsapp { position: fixed; bottom: 25px; right: 25px; background: #25D366; color: white; padding: 15px 18px; border-radius: 50px; font-weight: bold; text-decoration: none; box-shadow: 0 5px 15px rgba(0,0,0,0.2); z-index: 999; }
.whatsapp:hover { background: #1ebe5d; }
.sticky-cta { position: fixed; bottom: 100px; right: 25px; background: #c9a14a; color: #000; padding: 15px 20px; border-radius: 50px; font-weight: bold; text-decoration: none; box-shadow: 0 5px 15px rgba(0,0,0,0.2); z-index: 998; }
.sticky-cta:hover { background: #b28e3f; }

/* 8. Trust & Testimonial */
.trust { background: #fdf7ec; padding: 25px; text-align: center; border-radius: 6px; margin-bottom: 30px; color: #333; }
.trust p { font-weight: bold; margin: 0; }
.testimonial { background: #c9a14a; padding: 25px; border-radius: 6px; margin-bottom: 40px; font-style: italic; color: white; margin-top: 15px; }
.testimonial p { margin: 0; }

/* 9. Responsive */
@media (min-width:600px) { .player { grid-template-columns: 1fr 1fr; gap: 20px; } }

/* 10. Specials */
.savings { background: #fdf7ec; padding: 25px; border-radius: 6px; box-shadow: 0 0 15px rgba(0,0,0,0.1); margin: 30px 0; text-align: center; color: #333; }
.savings h3 { color: #4b2c20; margin-top: 0; }
.savings a { display: inline-block; background: #c9a14a; color: white; padding: 12px 30px; border-radius: 6px; text-decoration: none; font-weight: bold; margin-top: 15px; }
.savings a:hover { background: #b28e3f; }
.faq-item { margin-bottom: 25px; }
.faq-item h3 { font-size: 1.3rem; margin: 0 0 10px 0; color: #4b2c20; }