/* ============================= */
/* ✅ ALLGEMEINES STYLING FÜR SWIPE-BEREICH */
/* ============================= */

/* ✅ Abstand nach unten zum restlichen Inhalt */
.invisible-spacer {
  height: 80px;
  width: 100%;
}

/* 🔥 **ABSTAND ZUM UNTEREN BEREICH** */
#piercing-booking {
  padding-bottom: 140px;
}

/* 🔹 VIP & Rabattcode standardmäßig ausblenden */
#vip-access, #discount-section {
  display: none;
}

/* 🔹 Walk-In Day standardmäßig ausblenden */
#walkin-day {
  display: none;
}

.hidden {
  display: none;
}


/* ============================ */
/* 🛎️ TERMINBUCHUNG – EMPFANGSLOOK */
/* ============================ */

/* 📜 Hintergrund im Holz-Design */
.piercing-booking-wrapper {
  background: url('https://schattenwolf-tattoo.de/uploads/images/schreibtisch.jpg') center/cover no-repeat;
  background-size: 100% auto; /* Streckt es horizontal über die ganze Breite */
  padding: 40px;
  border: 10px solid #5a3e2b;
  box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.6);
  border-radius: 20px;
  position: relative;
  margin-top: 50px;
}

/* 🪵 Holz-Kanten-Effekt */
.piercing-booking-wrapper::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #4a2c1f, #6d4c41);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

/* 🖋️ Empfangstitel */
#empfang-title {
  font-size: 2rem;
  font-weight: bold;
  color: #f5f5dc;
  text-align: center;
  margin-bottom: 30px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
  border-bottom: 3px solid #d2b48c;
  padding-bottom: 10px;
}

/* 📋 Swiper mit Klemmbrett-Stil */
.swiper-container {
  background: linear-gradient(135deg, #fffbea, #f0e6d2);
  border: 5px solid #c2a77d;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
  position: relative;
  margin-top: 20px;
  width: 100%;
  max-width: 400px;
  height: 300px;
}

/* 📎 Klammer für das Klemmbrett */
.swiper-container::after {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 20px;
  background: #555;
  border-radius: 5px 5px 0 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
}

/* 🗓️ Termin-Karten */
.swiper-slide {
  background: #fff;
  border: 3px dashed #5c4033;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  margin: 5px;
  padding: 20px;
  text-align: center;
  transform: rotate(var(--rotation));
  cursor: pointer;
  transition: transform 0.4s ease;
}

.swiper-slide:hover {
  transform: scale(1.05);
}

/* ======================= */
/* 🎨 Handschrift für Termin-Infos */
/* ======================= */
.swiper-slide h3, 
.swiper-slide p, 
.book-btn-text {
    font-family: 'Pacifico', cursive; /* Handschrift */
    color: #2c2c2c;                   /* Dunkleres Grau */
}

/* 🖋️ Handschrift auch für "Jetzt Buchen" */
.book-btn-text {
    margin-top: 5px;
    font-size: 1.2rem;
    color: #1f1f1f; /* Noch etwas dunkler für bessere Sichtbarkeit */
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3);
    font-weight: normal;
}

/* ✅ Optional: Etwas mehr Vintage-Look */
.swiper-slide h3 {
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.swiper-slide p {
    margin: 5px 0;
    font-size: 1rem;
}

/* 🛎️ Button bleibt gleich */
.book-btn {
    background: radial-gradient(circle, #e6c300 0%, #997c00 100%);
    border: 2px solid #6e5500;
    color: #fff;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.7);
    cursor: pointer;
    transition: transform 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto;
}

.book-btn::after {
    content: "🛎️";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
}

/* ✨ Hover-Effekt bleibt */
.book-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.5);
}

/* ✍️ Handschrift für "Termin buchen" */
.button-text {
  font-family: 'Pacifico', cursive; /* Handschriftliche Schrift */
  color: #2c2c2c;                   /* Dunkleres Grau */
  font-size: 1.2rem;
  margin-top: 5px;
  text-align: center;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3);
}

/* ℹ️ Info-Box unter dem Formular */
.booking-info {
  margin-top: 20px;
  padding: 15px;
  border: 2px dashed #7c5e3a;
  background: #fffbea;
  color: #5a3e2b;
  border-radius: 10px;
  text-align: center;
  font-family: 'Pacifico', cursive;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.booking-info p {
  margin: 10px 0;
  font-size: 1.1rem;
}

/* 🎯 Link-Design */
.booking-info .info-link {
  color: #5a3e2b;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.booking-info .info-link:hover {
  color: #e6c300;
}


/* 🔔 Buchungs-Button mit Klingel-Effekt */
/* 🔔 Buchungs-Button mit Klingel-Effekt */
.book-btn {
  background: radial-gradient(circle, #e6c300 0%, #997c00 100%);
  border: 2px solid #6e5500;
  color: #fff;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.7);
  cursor: pointer;
  transition: transform 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto;
}

/* 🛎️ Glockensymbol mittig */
.book-btn::after {
  content: "🛎️";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
}

/* 📄 Text unter dem Button */
.book-btn-text {
  display: block;
  text-align: center;
  margin-top: 5px; /* 👈 Weniger Abstand */
  color: #333; /* 👈 Dunklere Farbe */
  font-size: 1.2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  font-weight: bold;
}

/* 🖱️ Hover-Effekt */
.book-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.5);
}

#booking-popup {
  width: 600%; /* Desktop bleibt groß, Mobile wird kleiner */
  max-width: 90vw;
}


/* 📆 Buchungs-Popup im Notizblock-Design */
#booking-popup {
  background: #fffbea;
  border: 4px dashed #7c5e3a;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.6);
  color: #333;
  font-family: 'Courier New', Courier, monospace;
  position: fixed;
  bottom: -100%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px; /* ⬅️ Breiter gemacht */
  padding: 30px; /* ⬅️ Mehr Innenabstand */
  transition: bottom 1s ease;
  z-index: 9999;
}

#booking-popup.show {
  bottom: 20px;
}

#booking-popup h2 {
  color: #5a3e2b;
  text-align: center;
  border-bottom: 2px dotted #a37448;
  margin-bottom: 15px;
}

#popup-booking-form input,
#popup-booking-form textarea {
  background: #fff;
  border: 2px solid #a37448;
  border-radius: 5px;
  padding: 10px;
  margin: 5px 0;
  width: 100%;
  color: #333;
}

#popup-booking-form input:focus {
  border-color: #e6c300;
}

.close-btn {
  position: absolute;
  top: 5px;
  right: 10px;
  font-size: 20px;
  cursor: pointer;
  color: #5a3e2b;
}

/* ============================= */
/* ✅ BUCHUNGS-POPUP */
/* ============================= */
body, main, footer {
  max-width: 100vw;
  width: 100%;
  align-self: stretch;
  background: #121212;
  color: #E0E0E0;
  font-family: 'Roboto', sans-serif;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ✅ Hauptbereich */
main {
  background: rgba(18, 18, 18, 0.9);
  padding: 20px;
  margin: 20px auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(192, 192, 192, 0.3);
  text-align: center;
  animation: fadeIn 1s ease-in-out;
}

/* 🔥 Einblende-Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

#calendar-button {
  background: linear-gradient(135deg, #a67c52, #7b5b3a);
  color: #fff;
  border: 3px solid #4a2c1f;
  border-radius: 10px;
  padding: 12px 20px;
  font-size: 1.1rem;
  font-family: 'Pacifico', cursive;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
  cursor: pointer;
  transition: all 0.4s ease;
  text-align: center;
  display: inline-block;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

#calendar-button::before {
  content: "📆";
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
}

#calendar-button:hover {
  background: linear-gradient(135deg, #7b5b3a, #a67c52);
  transform: scale(1.05);
}

.booking-text {
  text-align: left;
}

.popup-intro {
  margin-top: 15px;
}

/* 🐺 SweetAlert2 Styling - Kompakter Schattenwolf Edition */

/* 🐺 SweetAlert2 - Fix für die Mitte */
.swal2-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  opacity: 1;
  background: rgba(0, 0, 0, 0.75);
}

/* ❌ Popup springt nicht nach unten */
.swal2-popup {
  width: 420px;
  max-width: 90%;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, #1e1e1e, #3d3d3d);
  border: 3px solid #FF3B3B;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(255, 59, 59, 0.7);
  color: #E0E0E0;
  padding: 25px;
}

/* 📏 Mehr Abstand zwischen den Buttons & zentral ausrichten */
.swal2-actions {
  display: flex;
  justify-content: center; /* 🔥 Buttons in die Mitte */
  gap: 20px; /* Abstand zwischen Buttons */
  width: 100%;
}

/* 🔥 Rotes Glow für Titel */
.swal2-title {
  font-family: 'Permanent Marker', cursive;
  font-size: 1.6rem; /* Kleiner als vorher */
  color: #FF3B3B;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* 📝 Input-Felder */
.swal2-input, .swal2-textarea {
  width: 90%;
  padding: 8px;
  background: #2b2b2b;
  border: 2px solid #FF3B3B;
  color: #FFF;
  box-shadow: inset 0 0 10px rgba(255, 59, 59, 0.3);
  border-radius: 8px;
  font-size: 1rem;
}

/* 📞 Telefon-Feld */
#swal-phone {
  width: 90%;
  padding: 8px;
  background: #2b2b2b;
  border: 2px solid #FF3B3B;
  color: #FFF;
  box-shadow: inset 0 0 10px rgba(255, 59, 59, 0.3);
  border-radius: 8px;
  font-size: 1rem;
}

/* ✅ Bestätigungs-Button */
.swal2-confirm {
  background: linear-gradient(135deg, #FF3B3B, #D80000);
  border: none;
  color: #FFF;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
}

.swal2-confirm:hover {
  background: linear-gradient(135deg, #D80000, #FF0000);
  transform: scale(1.1);
}

/* ❌ Abbrechen-Button */
.swal2-cancel {
  background: linear-gradient(135deg, #333, #555);
  border: 2px solid #C0C0C0;
  color: #C0C0C0;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
}

.swal2-cancel:hover {
  background: linear-gradient(135deg, #444, #666);
  transform: scale(1.1);
}
