/* Reset base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Arial', sans-serif;
  color: white;
  position: relative;
  z-index: 1;
}

/* Sfondo video */
#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  padding: 15px 30px;
  border-radius: 50px;
  max-width: 95%;
  margin: 20px auto;
  position: relative;
  z-index: 10;
}

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

.flag {
  height: 28px;
  width: auto;
  max-width: 40px;
  cursor: pointer;
  border-radius: 6px;
}

/* Link navbar */
.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.nav-links li a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  font-size: 16px;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #c84e32;
}

/* Hero section */
.hero {
  text-align: center;
  padding: 160px 20px 100px;
  max-width: 90%;
  margin: 0 auto;
}

.hero-title {
  font-family: 'Pacifico', cursive;
  font-size: 2.8rem;
  color: white;
}

/* Pulsante prenota ora */
.btn-primary {
  display: inline-block;
  margin-top: 40px;
  padding: 15px 40px;
  background-color: #c84e32;
  color: white;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.07); }
  100% { transform: scale(1); }
}

.already-booked {
  margin-top: 15px;
  font-style: italic;
  color: white;
  font-size: 16px;
}

/* Sezioni successive */
.section {
  padding: 120px 20px;
  min-height: 100vh;
  color: white;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: rgba(0, 0, 0, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  .nav-links {
    flex-direction: column;
    gap: 15px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .btn-primary {
    width: 80%;
  }
}
