/* Custom styles */

/* Thunder SemiBold font */
@font-face {
  font-family: 'Thunder';
  src: url('/fonts/Thunder-SemiBoldLC.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}

/* Color scheme - 60/30/10 rule with #704CD3 as accent */
:root {
  --primary-60: #F5F3F9;      /* 60% - Light purple/gray background */
  --secondary-30: #9B7FD9;    /* 30% - Medium purple for secondary elements */
  --accent-10: #704CD3;       /* 10% - Vibrant purple for accents */
  --text-dark: #2B2B2B;       /* Dark text */
  --text-light: #6B6B6B;      /* Light text */
}

/* Typography - Thunder SemiBold for headings */
h1, h2, h3, h4, h5, h6,
.title, .subtitle {
  font-family: 'Thunder', sans-serif;
  font-weight: 600;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(to bottom, #5228cd, #7856d5);
  color: var(--text-dark);
}

main {
  flex: 1;
}

.navbar {
  background: linear-gradient(to right, #6232e6, #491cc3) !important;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-title {
  font-family: 'Thunder', sans-serif;
  font-weight: 600;
  font-size: 3rem;
}

.navbar-item {
  color: white !important;
}

.navbar-item:hover {
  background-color: var(--accent-10) !important;
}

.navbar-burger {
  cursor: pointer;
  color: white;
}

.button.is-primary {
  background-color: var(--accent-10) !important;
  border-color: var(--accent-10) !important;
}

.button.is-primary:hover {
  background-color: #5d3db0 !important;
}

.box {
  background-color: white;
  border-left: 4px solid var(--accent-10);
  box-shadow: none !important;
}

.title {
  color: var(--accent-10);
}

.subtitle {
  color: var(--secondary-30);
}

a {
  color: var(--accent-10);
}

a:hover {
  color: var(--secondary-30);
}

.footer {
  background: linear-gradient(to right, #6232e6, #491cc3);
  color: white;
}

.footer a {
  color: white;
  text-decoration: underline;
}

.footer a:hover {
  color: #f0f0f0;
}

/* Remove all shadows */
* {
  box-shadow: none !important;
}

/* Slide up animation */
@keyframes slideUp {
  from {
    opacity: 1;
    max-height: 500px;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    max-height: 0;
    transform: translateY(-20px);
  }
}

.slide-up {
  animation: slideUp 0.5s ease-out forwards;
  overflow: hidden;
}

#clientContent {
  margin-top: 1rem;
}

.day-group {
  margin-bottom: 2.5rem;
}

.day-title {
  font-family: 'Thunder', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  color: white;
}

.slots-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.slot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
}

/* Locked slots */
.slot.locked {
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.85);
  cursor: not-allowed;
}

/* Available slots */
.slot.unlocked {
  background: rgba(255, 255, 255, 0.95);
  color: #333;
  cursor: pointer;
  text-decoration: none;
}

.slot.unlocked:hover {
  background: white;
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
  color: #333;
}

.slot .spot-time {
  font-weight: 600;
  font-size: 1.1rem;
}

.slot .icon {
  font-size: 1rem;
  display: flex;
  align-items: center;
}

.slot.locked .icon {
  color: rgba(255, 255, 255, 0.85);
}

.slot.unlocked .icon {
  color: #6232e6;
}

.slot span.room {
  font-size: 0.9rem;
  opacity: 0.6;
  margin-left: auto;
  margin-right: 1rem;
}

.reserve-link {
  color: inherit;
  text-decoration: none;
  display: flex;
  align-items: center;
}