/* common.css — shared utilities (Hotel Baia Blu) */

:root {
  --bg-color:        #0f2f6b;
  --second-bg-color: #0ea5e9;
  --text-color:      #fff;
  --main-color:      #e0f2fe;
  --over-mous:       #64748b;
}

* {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] { -moz-appearance: textfield; }

.custom-bg {
  background: linear-gradient(135deg, #1e3a8a, #2563eb);
  border: none;
  color: #fff;
}

.custom-bg:hover {
  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: #fff;
}

.h-line {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #0ea5e9, #1e3a8a);
  margin: 0 auto;
  border-radius: 2px;
  border: none;
}

.custom-alert {
  position: fixed;
  top: 72px;
  right: 20px;
  z-index: 99999;
  min-width: 280px;
}
