/* Sticker Splash footer + site-wide booking popup — ported from the mockup. */

.footer { position: relative; font-family: var(--font-body); }
.footer-bar {
  height: 6px;
  background: linear-gradient(90deg,
    var(--c-yellow) 0 20%, var(--c-orange) 20% 38%, var(--c-pink) 38% 58%,
    var(--c-purple) 58% 78%, var(--c-blue) 78% 90%, var(--c-green) 90% 100%);
}
.footer-main { position: relative; background: var(--c-purple-deep); color: #fff; overflow: hidden; }
.footer-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#ffffff14 2.5px, transparent 2.5px);
  background-size: 30px 30px;
  pointer-events: none;
}
.footer-inner { position: relative; max-width: var(--container); margin: 0 auto; padding: 56px 24px 24px; }

.footer-newsletter {
  display: flex; flex-wrap: wrap; gap: 26px; align-items: center; justify-content: space-between;
  background: var(--c-purple); border: var(--border-ink); border-radius: 26px;
  box-shadow: 0 8px 0 rgba(0, 0, 0, .25); padding: 26px 30px; margin-bottom: 52px;
}
.footer-newsletter-text { max-width: 460px; }
.footer-newsletter-title { font-family: var(--font-head); font-weight: 700; font-size: clamp(24px, 3.4vw, 34px); line-height: 1.05; }
.footer-newsletter-title span { color: var(--c-yellow); }
.footer-newsletter p { margin: 8px 0 0; font-size: 15.5px; color: #EBD9F5; font-weight: 600; }
.newsletter-form { display: flex; flex-wrap: wrap; gap: 10px; flex: 1; min-width: 280px; max-width: 440px; }
.newsletter-form input {
  flex: 1; min-width: 180px; font-family: var(--font-body); font-weight: 700; font-size: 16px;
  color: var(--c-ink); background: #fff; border: var(--border-ink); border-radius: 14px; padding: 14px 16px; outline: none;
}
.newsletter-form button {
  font-family: var(--font-head); font-weight: 700; font-size: 16px; color: var(--c-ink);
  background: var(--c-yellow); border: var(--border-ink); border-radius: 14px; padding: 14px 22px;
  box-shadow: 0 5px 0 var(--c-ink); cursor: pointer; transition: transform .08s, box-shadow .08s;
}
.newsletter-form button:hover { transform: translateY(2px); box-shadow: 0 3px 0 var(--c-ink); }

.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 28px; align-items: start; }
.footer-brand { min-width: 200px; }
.footer-logo { background: #fff; border: var(--border-ink); border-radius: 20px; padding: 10px 12px; display: inline-block; box-shadow: 0 6px 0 rgba(0, 0, 0, .25); }
.footer-logo img { height: 62px; width: auto; display: block; }
.footer-text { margin: 16px 0 0; font-size: 15px; color: #EBD9F5; font-weight: 600; max-width: 280px; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a { width: 42px; height: 42px; border-radius: 12px; border: 2.5px solid var(--c-ink); box-shadow: 0 4px 0 var(--c-ink); display: flex; align-items: center; justify-content: center; transition: transform .08s; }
.footer-social a:hover { transform: translateY(2px); box-shadow: 0 2px 0 var(--c-ink); }
.footer-col { min-width: 140px; }
.footer-col h4 { font-family: var(--font-head); font-weight: 700; font-size: 17px; color: var(--c-yellow); margin-bottom: 14px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 11px; padding: 0; margin: 0; }
.footer-links a { font-size: 15px; font-weight: 700; color: #EBD9F5; text-decoration: none; transition: color .15s; }
.footer-links a:hover { color: #fff; }
.footer-bottom { height: 2px; background: #ffffff22; margin: 40px 0 20px; border-radius: 2px; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between; }
.footer-legal span { font-size: 13.5px; color: #C9B3D9; font-weight: 600; }
.footer-legal-links { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-legal-links a { font-size: 13.5px; color: #C9B3D9; font-weight: 700; text-decoration: none; transition: color .15s; }
.footer-legal-links a:hover { color: #fff; }

/* Booking popup */
@keyframes popIn { from { opacity: 0; transform: scale(.9) translateY(20px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.booking-popup { position: fixed; inset: 0; background: rgba(42, 19, 56, .9); z-index: 1000; display: none; align-items: center; justify-content: center; padding: 20px; backdrop-filter: blur(6px); }
.booking-popup.active { display: flex; }
.booking-modal { position: relative; background: #fff; border: 4px solid var(--c-ink); border-radius: 28px; box-shadow: 0 20px 60px rgba(0, 0, 0, .4); max-width: 480px; width: 100%; max-height: 90vh; overflow-y: auto; animation: popIn .3s ease; }
.booking-header { background: linear-gradient(135deg, var(--c-pink), var(--c-purple)); padding: 28px 30px; border-radius: 24px 24px 0 0; position: relative; overflow: hidden; }
.booking-header::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(#ffffff22 2px, transparent 2px); background-size: 20px 20px; pointer-events: none; }
.booking-header h2 { position: relative; font-family: var(--font-head); font-weight: 700; font-size: 28px; color: #fff; margin: 0; }
.booking-header p { position: relative; font-size: 15px; color: #FFD6EC; margin: 6px 0 0; font-weight: 600; }
.booking-close { position: absolute; top: 16px; right: 16px; width: 40px; height: 40px; background: #fff; border: var(--border-ink); border-radius: 12px; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 0 rgba(0, 0, 0, .2); transition: transform .1s; z-index: 1; }
.booking-close svg { stroke: var(--c-ink); min-width: 20px; min-height: 20px; }
.booking-form { padding: 28px 30px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-family: var(--font-head); font-weight: 700; font-size: 14px; color: var(--c-ink); margin-bottom: 6px; }
.form-group label span { color: var(--c-pink); }
.form-input, .form-select, .form-textarea { width: 100%; font-family: var(--font-body); font-size: 16px; font-weight: 600; padding: 14px 18px; border: 3px solid #EADFF0; border-radius: 14px; outline: none; transition: border-color .15s; }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--c-pink); }
.form-select { background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%232A1338' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat right 14px center; background-size: 20px; appearance: none; cursor: pointer; }
.form-textarea { resize: vertical; min-height: 80px; }
.form-submit { width: 100%; font-family: var(--font-head); font-weight: 700; font-size: 18px; color: #fff; background: var(--c-pink); border: var(--border-ink); border-radius: 999px; padding: 16px; cursor: pointer; box-shadow: 0 6px 0 var(--c-ink); transition: transform .1s, box-shadow .1s; margin-top: 8px; }
.form-submit:hover { transform: translateY(2px); box-shadow: 0 4px 0 var(--c-ink); }
.form-note { text-align: center; font-size: 13px; color: var(--c-muted-2); margin-top: 16px; font-weight: 600; }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-newsletter { flex-direction: column; text-align: center; }
  .footer-newsletter-text { max-width: 100%; }
  .newsletter-form { max-width: 100%; }
}
@media (max-width: 360px) {
  .footer-grid { grid-template-columns: 1fr; }
}
