/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BASE */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: #F6F2ED;
  color: #223240;
  padding-top: 100px;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(246,242,237,0.95);
  backdrop-filter: blur(10px);
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
}

.menu {
  list-style: none;
  display: flex;
  gap: 30px;
}

.menu a {
  text-decoration: none;
  color: #223240;
  font-weight: 500;
}

.menu a:hover {
  color: #D98C6F;
}

/* HERO */
.hero {
  background: #8FA89A;
  padding: 140px 20px;
  border-bottom-left-radius: 120px;
  border-bottom-right-radius: 120px;
}

.hero-content {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: #ffffff;
}

.hero p {
  color: #ffffff;
  margin: 20px 0;
  font-size: 1.2rem;
}

/* BUTTON */
.btn {
  background: #D98C6F;
  color: #fff;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
}

.btn:hover {
  background: #c67a5f;
}

/* SEZIONI */
section {
  padding: 100px 20px;
  max-width: 1100px;
  margin: auto;
}

h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  margin-bottom: 20px;
}

section p {
  line-height: 1.8;
}

/* CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.card {
  background: #ffffff;
  padding: 30px;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* CTA */
.cta {
  background: #8FA89A;
  text-align: center;
  border-radius: 80px;
}

.cta h2 {
  color: #fff;
  margin-bottom: 30px;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 40px;
  font-size: 0.9rem;
}
