:root {
  --brand-red: #b91c1c; /* Corrisponde al red-700 di Tailwind */
  --brand-red-dark: #991b1b;
}

body {
  font-family: sans-serif;
  background-color: #f8f9fa;
}

/* Hero Section */
.hero-bg {
  background:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("./public/chalet.jpg");
  background-size: cover;
  background-position: center;
  height: 100vh;
}

/* Navbar Custom */
.navbar {
  backdrop-filter: blur(8px);
  background-color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
}

.nav-link {
  color: #4a5568 !important;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--brand-red) !important;
}

.btn-brand {
  background-color: var(--brand-red);
  color: white;
  border-radius: 50px;
  padding: 8px 20px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.85rem;
  border: none;
}

.btn-brand:hover {
  background-color: var(--brand-red-dark);
  color: white;
}

.btn-outline-brand {
  border: 2px solid var(--brand-red);
  color: var(--brand-red);
  font-weight: bold;
}

.btn-outline-brand:hover {
  background-color: var(--brand-red);
  color: white;
}

.text-brand {
  color: var(--brand-red);
}

/* Utilities */
.section-padding {
  padding: 80px 0;
}

.icon-circle {
  font-size: 2.5rem;
  color: var(--brand-red);
  margin-bottom: 1.5rem;
}

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  color: white;
  transform: scale(1.1);
}
