/* GLOBAL */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f7f7f7;
  color: #333;
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #5a0a1e;
  color: white;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  animation: slideDown 0.8s ease;
}

.header nav a {
  color: white;
  margin-left: 20px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.header nav a:hover {
  opacity: 0.7;
}

/* HERO */
.hero {
  background: #5a0a1e;
  color: white;
  text-align: center;
  padding: 160px 20px 120px;
}

.btn {
  background: white;
  color: #5a0a1e;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn:hover {
  background: #e6e6e6;
}

/* SECTIONS */
.section {
  padding: 80px 20px;
  text-align: center;
}

/* CARDS */
.cards, .pricing {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.card, .price-box {
  background: white;
  padding: 25px;
  border-radius: 10px;
  width: 280px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover, .price-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* FOOTER */
footer {
  background: #5a0a1e;
  color: white;
  text-align: center;
  padding: 20px;
}

/* ANIMATIONS */
.fade-in {
  animation: fadeIn 1.2s ease;
}

.slide-up {
  animation: slideUp 1.2s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideDown {
  from { transform: translateY(-60px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
