* {
  box-sizing: border-box;
}
html,
body {
  overflow-x: hidden;
}
:root {
  --main-color: #2f1041;
  --accent-color: #e3c770;
  --bg-light: #f4f1f9;
  --font-heading: "Cinzel", serif;
  --font-body: "Inter", sans-serif;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-light);
  color: #2d2d2d;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
}
.hero {
  background: linear-gradient(135deg, #32154d, #4b2965);
  color: white;
  padding: 120px 0;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
}

.btn-gold {
  background-color: var(--accent-color);
  color: #2f1041;
  border: none;
}

.btn-gold:hover {
  background-color: #d2b65a;
  color: white;
}

.icon-card {
  background-color: white;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.icon-card:hover {
  transform: translateY(-5px);
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 2rem;
}

.bg-gradient-magic {
  background: linear-gradient(to right, #2f1041, #4b2965);
  color: white;
}

footer {
  background-color: #2f1041;
  color: white;
}

footer a {
  color: #e3c770;
  text-decoration: none;
}

footer a:hover {
  color: white;
}
.bg-gradient-magic {
  background: linear-gradient(135deg, #4527a0, #7b1fa2, #ab47bc);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
  0% {background-position: 0% 50%;}
  50% {background-position: 100% 50%;}
  100% {background-position: 0% 50%;}
}
