/* Custom styles for Praxis */
:root {
  --header-height: 60px;
  --footer-height: 80px;
  
  /* Praxis brand colors */
  --background-color: #1F1F1F; /* charcoal */
  --accent-color: #D4AF37; /* gold */
  --base-color: #E9E4D4; /* sandstone */
  --action-color: #6A88F7; /* soft blue */
}

/* Book cards */
.book-card {
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.book-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--bs-box-shadow-lg)!important;
}

.book-card .card-img-top {
  height: 200px;
  object-fit: cover;
}

.category-badge {
  position: absolute;
  top: 10px;
  right: 10px;
}

.premium-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 10;
}

/* Book detail page */
.book-detail-img {
  max-height: 400px;
  object-fit: cover;
}

.template-action {
  margin-top: 2rem;
}

/* Hero section */
.hero-section {
  padding: 6rem 0;
  background-color: var(--bs-dark);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(33,37,41,0.95), rgba(33,37,41,0.7));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* Content sections */
.section-padding {
  padding: 5rem 0;
}

/* Admin styles */
.admin-actions {
  min-width: 150px;
}

/* Custom utility classes */
.text-justify {
  text-align: justify;
}

.min-vh-50 {
  min-height: 50vh;
}

/* Custom responsive adjustments */
@media (max-width: 767.98px) {
  .hero-section {
    padding: 4rem 0;
  }
  
  .section-padding {
    padding: 3rem 0;
  }
}
