/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  margin: 0;
  font-family: 'Cinzel', serif;
  background: url('https://i.imgur.com/TZs3PvU.jpg') center/cover fixed;
  color: #2e1f09;
}

h1, h2, h3 {
  font-family: 'Uncial Antiqua', cursive;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

header, section, footer {
  max-width: 900px;
  margin: 2em auto;
  background: rgba(255, 248, 220, 0.85);
  padding: 2em;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

/* Intro Screen */
.intro-screen {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: url('https://i.imgur.com/k2FXw2A.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #f5deb3;
  text-align: center;
  z-index: 100;
}

.grimoire-btn {
  background: #7b3f00;
  color: #fff;
  border: 2px solid #d2b48c;
  padding: 1em 2em;
  font-family: 'Uncial Antiqua', cursive;
  font-size: 1.2em;
  cursor: pointer;
  margin-top: 1em;
  transition: transform 0.3s ease, background 0.3s ease;
}
.grimoire-btn:hover {
  transform: scale(1.05);
  background: #8b4513;
}

/* Fade transitions */
.hidden { display: none; opacity: 0; }
.fade-in { animation: fadeIn 1.5s forwards; }
.fade-out { animation: fadeOut 1.2s forwards; }

@keyframes fadeIn { from {opacity: 0;} to {opacity: 1;} }
@keyframes fadeOut { from {opacity: 1;} to {opacity: 0;} }

/* Packages Grid */
.package-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  justify-content: center;
}
.package {
  background: rgba(255,255,255,0.85);
  border: 2px solid #d2b48c;
  border-radius: 8px;
  padding: 1em;
  width: 260px;
  text-align: center;
}
.package .price {
  display: block;
  margin-top: 0.5em;
  font-weight: bold;
  color: #7b3f00;
}

/* Footer */
footer {
  text-align: center;
  font-size: 0.9em;
  color: #3b2b16;
}

}