/* Grundlayout */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #f5f5f5;
    background: #080808; /* tiefes Schwarz */
}

a {
    color: #00b050; /* Grün */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px;
}

/* HERO + Flagge */

.hero {
    background: #080808;
    color: #f5f5f5;
    border-bottom: 3px solid #e53935; /* Rot */
}

.flag-line {
    width: 100%;
    height: 6px;
    background: linear-gradient(to right, #009246, #ffffff, #ce2b37); /* italienische Flagge */
}

.hero-overlay {
    width: 100%;
    height: 100%;
}

/* Sticky Nav-Bar mit Schatten */

.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    width: calc(100% - 32px);
    position: fixed;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background: rgba(8, 8, 8, 0.97);
    padding: 10px 22px;
    border-radius: 999px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.85);
    backdrop-filter: blur(10px);
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-area img {
    height: 64px;
    width: auto;
    display: block;
}

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 1.6rem;
}



.logo-text span {
    color: #00b050; /* Grün */
}

nav a {
    margin-left: 16px;
    font-size: 0.92rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #f5f5f5;
}

nav a:hover {
    color: #e53935; /* Rot */
}

.hero-content {
    padding: 120px 0 45px; /* extra Platz wegen fixed Nav */
}

.hero-subtitle {
    font-size: 0.9rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #bbbbbb;
}

.hero h1 {
    font-family: "Playfair Display", serif;
    font-size: 2.4rem;
    margin: 16px 0 12px;
}

.hero-text {
    max-width: 700px;
    line-height: 1.7;
}

.hero-buttons {
    margin: 20px 0 10px;
}

/* Buttons mit italienischem Glow */

.btn {
    display: inline-block;
    padding: 9px 22px;
    border-radius: 999px;
    font-weight: 600;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 0.95rem;
    transition: transform 0.18s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn.primary {
    background: #e53935;   /* Rot */
    color: #ffffff;
    border-color: #e53935;
    box-shadow:
        0 0 0 1px rgba(229, 57, 53, 0.9),
        0 0 14px rgba(229, 57, 53, 0.9),
        0 0 26px rgba(206, 43, 55, 0.8);
}

.btn.secondary {
    background: transparent;
    color: #00b050;        /* Grün */
    border-color: #00b050;
    margin-left: 8px;
    box-shadow:
        0 0 0 1px rgba(0, 176, 80, 0.9),
        0 0 12px rgba(0, 176, 80, 0.8),
        0 0 22px rgba(0, 146, 70, 0.8);
}

.btn:hover {
    transform: translateY(-1px) scale(1.02);
}

.btn.primary:hover {
    background: #ff4c45;
}

.btn.secondary:hover {
    background: rgba(0, 176, 80, 0.15);
}

.btn.full {
    width: 100%;
}

/* Order Info */

.order-info {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px dashed #333333;
    max-width: 650px;
    font-size: 0.95rem;
}

.order-info h3 {
    margin-top: 0;
    font-size: 1.1rem;
    color: #00b050; /* Grün */
}

.phones a {
    color: #f5f5f5;
    font-weight: 600;
}

.whats {
    background: #25d366;
    padding: 1px 6px;
    border-radius: 999px;
    font-size: 0.75rem;
    margin-left: 4px;
    color: #080808;
}

.qr-block {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.qr-block img {
    border-radius: 8px;
    background: #fff;
}

.small {
    font-size: 0.8rem;
    opacity: 0.9;
}

/* Sections */

.section {
    padding: 50px 0;
}

.bg-dark {
    background: #111111;
    color: #f5f5f5;
}

.bg-light {
    background: #f5f5f5;
    color: #181818;
}

.section h2 {
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    margin-bottom: 14px;
    border-left: 6px solid #e53935; /* roter Balken */
    padding-left: 10px;
}

.section-intro {
    max-width: 700px;
    margin-bottom: 24px;
    font-size: 0.98rem;
}

/* Menu */

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
}

.menu-column h3 {
    font-size: 1.2rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #00b050; /* Grün */
}

.menu-item {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 0;
    border-bottom: 1px dashed #333333;
}

.menu-item h4 {
    margin: 0 0 4px;
    font-size: 1.05rem;
}

.menu-item p {
    margin: 0;
    font-size: 0.9rem;
    color: #cccccc;
}

.price {
    white-space: nowrap;
    font-weight: 600;
    align-self: center;
    color: #e53935; /* Rot */
}

.hint {
    margin-top: 18px;
    font-size: 0.9rem;
    opacity: 0.95;
}

/* Cards, Timeline, Layout */

.cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.card, .feature-card, .info-box {
    background: rgba(0,0,0,0.4);
    border-radius: 14px;
    padding: 18px 16px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.45);
}

.bg-light .card,
.bg-light .feature-card,
.bg-light .info-box {
    background: #ffffff;
    color: #181818;
}

.card h3 {
    margin-top: 0;
    margin-bottom: 6px;
    color: #e53935; /* Rot */
}

.card ul {
    padding-left: 18px;
    margin-bottom: 0;
}

.feature-card {
    background: #151515;
    color: #f5f5f5;
    border-left: 4px solid #00b050; /* Grün */
}

.info-box {
    background: #151515;
    color: #f5f5f5;
    border-left: 4px solid #e53935; /* Rot */
}

.two-columns {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.3fr);
    gap: 30px;
    align-items: flex-start;
}

/* Timeline */

.timeline {
    list-style: none;
    padding: 0;
    margin: 16px 0 20px;
    border-left: 3px solid #e53935;
}

.timeline li {
    margin: 0;
    padding: 10px 0 10px 14px;
    position: relative;
}

.timeline li::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background: #00b050; /* Punkt grün */
    border-radius: 50%;
    left: -6px;
    top: 16px;
}

.timeline .year {
    font-weight: 700;
    color: #e53935;
    display: block;
    margin-bottom: 4px;
}

/* Hintergrundbild "Wer ich bin" */

#wer-ich-bin {
    position: relative;
    color: #ffffff;
    background: #050505;
    overflow: hidden;
}

#wer-ich-bin::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("massimo-wer-ich-bin.jpg");
    background-size: cover;
    background-position: center;
    opacity: 0.35;
    filter: saturate(1.1);
}

#wer-ich-bin::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(0,0,0,0.2) 0, rgba(0,0,0,0.9) 60%);
}

#wer-ich-bin .container {
    position: relative;
    z-index: 1;
}

/* Fotogalerie */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.gallery-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid #333;
    display: block;
}

.gallery-video {
    width: 100%;
    max-height: 200px;
    border-radius: 10px;
    border: 1px solid #333;
    display: block;
}

/* Buchungsformular */

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #151515;
    padding: 16px 14px;
    border-radius: 14px;
    border: 1px solid #333333;
}

.booking-form label {
    font-size: 0.88rem;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    border-radius: 6px;
    border: 1px solid #555;
    padding: 7px 8px;
    font-size: 0.9rem;
    background: #0b0b0b;
    color: #f5f5f5;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: 1px solid #00b050; /* Grün */
}

.info-box .social-links {
    margin-top: 10px;
    display: flex;
    gap: 10px;
}

.social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Instagram bunt */
.social.insta {
    background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
    color: #fff;
}

/* WhatsApp grün */
.social.wa {
    background: #25d366;
    color: #080808;
}

/* Impressum / Datenschutz */

.bg-light h2 {
    color: #181818;
}

/* Footer */

.footer {
    background: #000000;
    color: #b7b7b7;
    padding: 14px 0;
    font-size: 0.85rem;
    border-top: 3px solid #00b050; /* Grün */
}

.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

/* Chatbot */

#chatbot-toggle {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: #e53935;   /* Rot */
    color: #ffffff;
    padding: 10px 16px;
    border-radius: 999px;
    cursor: pointer;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.6);
    z-index: 999;
    font-weight: 600;
}

#chatbot-window {
    position: fixed;
    right: 20px;
    bottom: 70px;
    width: 320px;
    max-height: 420px;
    background: #080808;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.8);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 999;
    border: 1px solid #333333;
}

#chatbot-window.hidden {
    display: none;
}

#chatbot-header {
    background: #151515;
    color: #f5f5f5;
    padding: 9px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

#chatbot-header button {
    background: transparent;
    border: none;
    color: #f5f5f5;
    font-size: 1.1rem;
    cursor: pointer;
}

#chatbot-messages {
    flex: 1;
    padding: 10px 12px;
    overflow-y: auto;
    font-size: 0.85rem;
    background: #111111;
}

.chat-msg {
    margin-bottom: 8px;
}

.chat-msg.user {
    text-align: right;
}

.chat-bubble {
    display: inline-block;
    padding: 6px 9px;
    border-radius: 10px;
    max-width: 90%;
}

.chat-msg.user .chat-bubble {
    background: #00b050; /* Grün */
    color: #080808;
}

.chat-msg.bot .chat-bubble {
    background: #202020;
    color: #f5f5f5;
}

#chatbot-form {
    display: flex;
    border-top: 1px solid #333333;
}

#chatbot-input {
    flex: 1;
    border: none;
    padding: 7px 9px;
    font-size: 0.9rem;
    background: #080808;
    color: #f5f5f5;
}

#chatbot-input:focus {
    outline: none;
}

#chatbot-form button {
    border: none;
    background: #e53935;  /* Rot */
    color: #ffffff;
    padding: 0 12px;
    cursor: pointer;
    font-size: 0.9rem;
}

/* Responsive */

@media (max-width: 900px) {
    .nav-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    nav a {
        margin-left: 0;
        margin-right: 12px;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .cards {
        grid-template-columns: 1fr;
    }

    .two-columns {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding-top: 130px;
    }

    .logo-area img {
        height: 48px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 500px) {
    #chatbot-window {
        width: calc(100% - 32px);
        right: 16px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}
/* ---- Datenschutz-Popup ---- */

.ds-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;              /* standardmäßig unsichtbar */
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 9999;
}

.ds-overlay.is-open {
  display: flex;              /* wenn Klasse is-open da ist → anzeigen */
}

.ds-modal {
  position: relative;
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  background: #f5f5f5;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.ds-modal h2 {
  margin-top: 0;
}

.ds-modal h3 {
  margin-top: 1.5rem;
}

.ds-close {
  position: absolute;
  top: 0.8rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.ds-close:hover {
  opacity: 0.7;
}
/* Datenschutz-Overlay (Hintergrund) */
.ds-overlay {
  position: fixed;
  inset: 0; /* top:0; right:0; bottom:0; left:0; */
  background: rgba(0, 0, 0, 0.7);
  display: none;              /* erstmal unsichtbar */
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* sichtbar, wenn Klasse is-visible gesetzt wird */
.ds-overlay.is-visible {
  display: flex;
}

/* Fenster selbst */
.ds-modal {
  position: relative;
  max-width: 900px;
  max-height: 80vh;
  overflow-y: auto;
  background: #ffffff;
  color: #000000;
  padding: 2rem 2.5rem;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

/* Schließen-Button (X) */
.ds-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: none;
  background: transparent;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  color: #333;
}

/* Link im Impressum etwas betonen */
#open-datenschutz {
  color: #4caf50;        /* dein Grün, falls du ein anderes verwendest, anpassen */
  font-weight: 500;
  text-decoration: underline;
}

#open-datenschutz:hover {
  text-decoration: none;
}
/* ============= MOBILE ANPASSUNGEN ============= */

/* Tablets & kleine Laptops */
@media (max-width: 1024px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  header.hero {
    padding-top: 6rem;
    padding-bottom: 4rem;
  }

  .hero-content h1 {
    font-size: 2.4rem;
  }
}

/* Smartphones quer & hochkant */
@media (max-width: 768px) {

  body {
    font-size: 16px;
  }

  /* Navigation oben */
  .nav-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .nav-bar nav {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    font-size: .9rem;
  }

  /* Hero-Bereich */
  header.hero {
    text-align: left;
    padding-top: 5rem;
    padding-bottom: 3rem;
  }

  .hero-content h1 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .hero-text {
    font-size: .95rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: .75rem;
  }

  .hero-buttons .btn {
    width: 100%;
    text-align: center;
  }

  /* Sektionen allgemein */
  .section {
    padding: 3rem 0;
  }

  h2 {
    font-size: 1.6rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  /* Pizzakarte – Spalten untereinander */
  .menu-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .menu-column {
    width: 100%;
  }

  /* Karten (Events, Features, usw.) untereinander */
  .cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .card {
    width: 100%;
  }

  /* "Wer ich bin" – zwei Spalten untereinander */
  .two-columns {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .two-columns > div {
    width: 100%;
  }

  /* Buchungsformular + Info-Box untereinander statt nebeneinander */
  #buchung .two-columns {
    flex-direction: column;
  }

  .booking-form,
  .info-box {
    width: 100%;
  }

  /* Footer */
  .footer-inner {
    text-align: center;
    gap: .5rem;
  }
}

/* Extra klein (sehr schmale Smartphones) */
@media (max-width: 480px) {

  .hero-content h1 {
    font-size: 1.7rem;
  }

  nav a {
    font-size: .85rem;
  }

  .phones a {
    display: inline-block;
    margin-top: .25rem;
  }
}


