/* ===== COMMON STYLES ===== */

/* App Loading State */

/* Skip to main content link for accessibility */
.skip-link {
  position: absolute;
  top: -50px;
  left: 0;
  background: var(--black);
  color: white;
  padding: 8px;
  z-index: 9999;
  transition: top 0.3s;
}
.skip-link:focus {
  top: 0;
}

/* Background Color */
.main-bg-color {
  background-color: #f7f6ee;
}

/* Header Styles */
#deskmond.container-fluid {
  padding: 0 1.5rem;
}
.deskmond-header-logo {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-content: center;
}
.header a {
  font-size: 1rem;
}
.deskmond-header-logo a {
  font-size: 1.5rem;
  color: black;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
}
.deskmond-header-logo img {
  display: inline-block;
  height: 50px;
  margin-right: 10px;
}

/* ===== INDEX PAGE STYLES ===== */

/* Hero Section */
#billboard h1 {
  font-size: 2.75rem;
}
#wand img {
  max-width: 4rem !important;
}

/* Features Section */
.features p {
  font-size: 1.25rem;
}

/* Testimonials */
.blockquote {
  font-size: 1rem;	
}

/* Pricing Cards */
.pricing-card {
  border-radius: var(--border-radius) !important;
  overflow: hidden; /* Ensures child elements respect the border radius */
}
.pricing-card .card-header {
  border-top-left-radius: var(--border-radius) !important;
  border-top-right-radius: var(--border-radius) !important;
  border-bottom: none; /* Optional: cleaner look */
}
.pricing-card .card-body {
  border-bottom-left-radius: var(--border-radius) !important;
  border-bottom-right-radius: var(--border-radius) !important;
}
/* Optional hover effect */
.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

/* ===== JOIN/REGISTRATION PAGE STYLES ===== */

/* Card Container */
.card-container {
  max-width: 720px;
  margin: 0 auto;
  padding: 1rem;
}
.card.create-account {
  border-radius: var(--border-radius);
}

.radio-group {
  display: flex;
  justify-content: center;
}
.teacher-button {
  border-width: 2px;
}

/* Accessibility Focus Styles */
.image-radio:focus-within {
  outline: 3px solid var(--black);
  box-shadow: 0 0 0 0.3rem var(--black-rgba-20);
}

