/* Reset base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  line-height: 1.6;
  background-color: #000;
  color: #f2f2f2;
}

/* Header minimalista e moderno */
header {
  background-color: #000;
  color: #fff;
  padding: 20px 40px;
  position: relative;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Logo elegante a sinistra */
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.heart-green, .heart-pink {
  transition: transform 0.3s ease;
}

.heart-green:hover, .heart-pink:hover {
  transform: scale(1.3);
}

.heart-green {
  color: #1e5f3f;
}

.heart-pink {
  color: #c06cae;
}

.initials {
  font-weight: 700;
  font-size: 2rem;
  color: #fff;
}

/* Menu / tasti a destra */
.nav-menu a {
  color: #fff;
  text-decoration: none;
  margin-left: 20px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 8px;
  border: 2px solid transparent;
  background-color: transparent;
  transition: all 0.3s ease;
}

.nav-menu a:hover {
  color: #1e5f3f;
  background-color: rgba(30, 95, 63, 0.1);
}

/* Hero section elegante */
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px 20px;
  background-color: #000;
  color: #fff;
  position: relative;
}

.hero-box {
  max-width: 700px;
  text-align: center;
  padding: 40px 30px;
  border-radius: 15px;
  border-left: 4px solid #1e5f3f; /* verde */
  border-right: 4px solid #c06cae; /* rosa */
  box-shadow: 0 15px 40px rgba(0,0,0,0.6), inset 0 0 30px rgba(255,255,255,0.05);
  animation: fadeInScale 1s ease-in-out forwards;
  opacity: 0;
}

@keyframes fadeInScale {
  0% { opacity: 0; transform: scale(0.95); }
  100% { opacity: 1; transform: scale(1); }
}

.hero-title {
  font-size: 2.2rem;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
}

.hero-text {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: #ccc;
}

/* Pulsante hero elegante */
.hero .btn {
  border: 2px solid #1e5f3f;
  border-radius: 25px;
  padding: 10px 25px;
  font-weight: 600;
  background-color: transparent;
  color: #fff;
  transition: all 0.3s ease;
}

.hero .btn:hover {
  background-color: #1e5f3f;
  border-color: #1e5f3f;
  color: #fff;
}

/* Footer minimal */
footer {
  background-color: #000;
  color: #ccc;
  text-align: center;
  padding: 25px 20px;
  border-top: 1px solid rgba(30, 95, 63, 0.3); /* linea sottile verde */
}
