body {
  font-family: "Playfair Display", serif;
  margin: 0;
  color: #f8f8f8;
  background-color: #0a0016;
  background-image: url('../assets/long-bg.webp');
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% auto;
}

html, body {
  min-height: 100vh;
}

h1, h2 {
  font-family: "Press Start 2P", cursive;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  width: 300px;
  height: auto;
  border-radius: 10px;
}

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  background: linear-gradient(135deg, #2e003e, #ff6f00);
  color: white;
  padding: 2rem 1rem;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: start;
  width: 200px;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.5);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.sidebar.active {
  transform: translateX(0);
}

.sidebar h2 {
  font-size: 1.3rem;
  margin-bottom: 2rem;
}

.sidebar ul {
  list-style: none;
  padding-left: 0;
}

.sidebar ul li {
  margin-bottom: 1rem;
}

.sidebar ul li a {
  color: white;
  transition: color 0.3s ease;
}

.sidebar ul li a:hover {
  color: #ffd700;
}

.sidebar button {
  margin-top: 1rem;
}

.main-content {
  margin-left: 0;
  padding: 2rem;
  transition: margin-left 0.3s ease;
}

@media (min-width: 769px) {
  .sidebar.active + .main-content {
    margin-left: 220px;
  }
}

.carousel-inner img {
  object-fit: contain;
  width: 100%;
  max-height: 60vh;
}

.carousel-caption {
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 10px;
  padding: 1rem;
  font-size: 0.9rem;
}

.form-container form {
  background: rgba(28, 10, 45, 0.9);
  border: 2px solid transparent;
  border-image: linear-gradient(135deg, #ff6f00, #ffb347);
  border-image-slice: 1;
  border-radius: 10px;
  padding: 2rem;
}

form input,
form select {
  background-color: #2e003e;
  color: #fff;
  border: 1px solid #666;
}

form input:focus,
form select:focus {
  border-color: #ff6f00;
  box-shadow: 0 0 5px 2px rgba(255, 111, 0, 0.25);
}

form button {
  background: linear-gradient(135deg, #ff6f00, #ffb347);
  color: #0d021c;
  border: none;
  padding: 0.5rem 1.5rem;
  font-weight: bold;
  transition: all 0.3s ease;
}

form button:hover {
  background: linear-gradient(135deg, #ffb347, #ff6f00);
  transform: scale(1.05);
}

.tarot-card:hover {
  transform: scale(1.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

section {
  padding: 4rem 2rem;
  margin-bottom: 3rem;
}

section h2 {
  margin-bottom: 2rem;
  text-align: center;
}

footer {
  font-size: 0.8rem;
  color: #aaa;
  padding: 2rem;
  text-align: center;
}

::-webkit-scrollbar {
  display: none;
}

body.admin {
  background-color: #1a001a;
  background-image: none;
  font-family: 'Press Start 2P', monospace;
}

.table thead {
  background-color: #3d003d;
}

.highlight {
  background-color: #ff6f00 !important;
  color: black;
}

.admin input,
.admin select {
  font-family: 'Playfair Display', serif;
}
