/* Reset e base */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "DM Sans", system-ui, sans-serif;
  color: #2d2d2d;
  background: #faf9f7;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

/* Sfumatura ispirata ai colori delle meditazioni */
.gradient {
  position: fixed;
  inset: 0;
  background: linear-gradient(
    160deg,
    #faf9f7 0%,
    #f5f0e8 25%,
    #efe8e0 50%,
    #e8dfd5 75%,
    #e0d4c8 100%
  );
  z-index: 0;
}

.header,
.hero,
.footer {
  position: relative;
  z-index: 1;
}

/* Header */
.header {
  padding: 1.5rem 1.5rem 0;
  text-align: center;
}

.logo {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: 0.2em;
  color: #6b6b6b;
}

/* Hero */
.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem 4rem;
  text-align: center;
}

.title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: clamp(2rem, 6vw, 3.5rem);
  line-height: 1.2;
  margin: 0 0 1rem;
  color: #2d2d2d;
}

.tagline {
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 420px;
  margin: 0 0 2.5rem;
  color: #5a5a5a;
}

.cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.btn {
  display: inline-block;
  padding: 0.85rem 1.5rem;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 999px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:focus {
  outline: 2px solid #a8c8e8;
  outline-offset: 2px;
}

.btn-primary {
  background: linear-gradient(135deg, #a8d5ba 0%, #a8c8e8 100%);
  color: #1a1a1a;
  box-shadow: 0 2px 12px rgba(168, 197, 232, 0.4);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(168, 197, 232, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.9);
  color: #4a4a4a;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.btn-secondary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

/* Footer */
.footer {
  padding: 1.5rem;
  text-align: center;
}

.footer p {
  margin: 0;
  font-size: 0.875rem;
  color: #8a8a8a;
}
