:root {
  --bg: #0e0e0e;
  --bg-soft: #161616;
  --card: #1f1f1f;
  --gold: #d4af37;
  --text: #f5f5f5;
  --muted: #b5b5b5;
  --logo-bg: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  background: var(--bg);
  background-image: url('assets/sfondo.png'); /* New background image */
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  color: var(--text);
  line-height: 1.7;
  padding-top: 112px; /* Space for the fixed nav */
}

.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(22, 22, 22, 0.7);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.main-nav .logo-wrapper {
  padding: 0;
  margin-bottom: 0;
  box-shadow: none;
}

.main-nav .logo-wrapper img {
  width: 80px;
}

.nav-cta {
  padding: 0.8rem 1.8rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  text-decoration: none; /* Remove underline */
  background-color: transparent; /* Ensure no background */
  border-radius: 5px; /* Slightly rounded corners for card effect */
}

.nav-cta:hover {
  background: var(--gold);
  color: #000;
}

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

.hero h1 {
  margin-bottom: 0.5rem;
}

.subtitle {
  margin-bottom: 1rem;
}

/* SECTIONS */
.section {
  padding: 3rem 2rem;
}

.container {
  max-width: 1000px;
  margin: auto;
}

.lead {
  font-size: 1.35rem;
  margin-bottom: 2rem;
}

.dark {
  background: rgba(22, 22, 22, 0.7);
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}

.card {
  background: var(--card);
  padding: 2.5rem;
  border-left: 3px solid var(--gold);
}

.card h3 {
  margin-bottom: 1rem;
  color: var(--gold);
  font-family: "Dancing Script", cursive;
  font-size: 1.6rem;
}

/* QUOTE */
.quote-section {
  padding: 3rem 2rem;
  text-align: center;
}

.quote-section p {
  font-family: "Dancing Script", cursive;
  font-size: 2.6rem;
  color: var(--gold);
}

/* CONTACT */
.contact {
  text-align: center;
}

.contact h2 {
  font-size: 2.2rem;
  font-weight: normal;
  margin-bottom: 2rem;
}

.contact-info a {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.3);
}

/* FOOTER */
footer {
  text-align: center;
  padding: 3rem 2rem;
  font-size: 0.9rem;
  color: var(--muted);
}

/* ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  animation: reveal 1s ease forwards;
}

.reveal:nth-child(2) { animation-delay: 0.2s; }
.reveal:nth-child(3) { animation-delay: 0.4s; }
.reveal:nth-child(4) { animation-delay: 0.6s; }

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}