* {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  letter-spacing: 2.5px;
  transition: color 0.3s ease;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  scroll-behavior: smooth;
  background-color: #e8d8c3;
}

a {
  text-decoration: none;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 10rem;
  width: 100%;
  position: fixed;
  z-index: 10;
  color: #2b2b2b;
  /* background: linear-gradient(to bottom, #f1efe9 0%, #e4e2de 60%, #dad7d1 100%); */
  background: #f6f1ea;
  box-shadow:
    0 20px 45px rgba(0, 0, 0, 0.18),
    0 6px 12px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  border-bottom-left-radius: 5rem;
  border-bottom-right-radius: 5rem;
  transition:
    transform 0.6s cubic-bezier(0.65, 0, 0.35, 1),
    box-shadow 0.4s ease,
    background 0.4s ease;
}

.logo {
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo img {
  width: 13rem;
  height: auto;
  display: block;
  transform: none;
}

.header-background {
  top: 3rem;
  position: relative;
  background-color: #e8d8c3;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 0;
  gap: 5rem;
}

.navbar.scrolled ~ .header::after {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(2px) saturate(100%) contrast(110%);
  -webkit-backdrop-filter: blur(2px) saturate(100%) contrast(110%);
}

.sezioni {
  color: #2b2b2b;
  background: #f6f1ea;
  position: relative;
  width: auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-evenly;
  text-align: center;
  font-size: 0.8rem;
  transition: transform 1s cubic-bezier(0.65, 0, 0.35, 1);
}

.column {
  flex-direction: column;
  align-items: center;
  padding: 0rem 5rem;
}

.border-top-left-radius {
  border-top-left-radius: 5rem;
}

.border-bottom-right-radius {
  border-bottom-right-radius: 1rem;
}

.disposizione {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0rem 5rem 5rem 5rem;
}

@media (max-width: 768px) {
  .navbar {
    overflow: hidden;
    transition: height 0.4s ease;
  }

  .disposizione {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 0rem 1rem;
  }
}

.title {
  padding: 3rem;
}

.descrizione {
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  width: 100%;
}

.footer {
  position: relative;
  width: 100%;
  height: 70vh;
  background-color: #2f2a26;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.footer-background {
  background: #f6f1ea;
}

.footer-content {
  display: flex;
  align-items: center;
  text-align: center;
  color: #f1e6d6;
  gap: 5rem;
}

.logo-background {
  padding: 1rem;
  border-radius: 5rem;
  background-color: #f6f1ea;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.logo-address-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-card {
  padding: 1rem;
  border-radius: 5rem;
  background: rgba(255, 244, 230, 0.01);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.contact-card a {
  color: #f1e6d6;
}

.location {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (max-width: 768px) {
  .footer {
    justify-content: space-around;
    height: 75vh;
    font-size: 0.8rem;
  }

  .footer-content {
    flex-direction: column;
    gap: 1rem;
  }

  .logo-background {
    display: none;
  }

  .location {
    display: flex;
    flex-direction: column;
    gap: 0rem;
  }
}
