/* Stili base, reset e layout strutturale */
::-webkit-scrollbar {
  display: none;
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  -ms-overflow-style: none;
  scrollbar-width: none;
  user-select: none;
  -webkit-user-select: none;
}

body,
html {
  font-family: 'Segoe UI', sans-serif;
  background: #f0f0f0;
  min-height: 100vh;
  margin: 0;
  box-sizing: border-box;
  overflow-x: hidden;
}

h2 {
  color: #8A9A5B;
  /* Verde Salvia */
  text-align: center;
  margin: 0;
}

p {
  margin: 0;
}

.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: #f0f0f0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 11000;
}

.header-logo {
  height: 40px;
  width: auto;
  margin-right: 10px;
}

.brand-name {
  font-family: 'Dancing Script', cursive;
  font-size: 1.8em !important;
  font-weight: 600;
  letter-spacing: 0px !important;
}

.hidden {
  display: none !important;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fade-in {
  opacity: 0;
  animation: fadeIn 0.5s ease-out forwards;
}