/* Midnight Crimson Architecture Studio - Complete Styles */

/* === ROOT VARIABLES === */
:root {
  --primary-color: #1a1a2e;
  --secondary-color: #e94560;
  --accent-light: #0f3460;
  --text-light: #ffffff;
  --text-muted: #b0b0b0;
  --shadow-dark: rgba(233, 69, 96, 0.3);
  --shadow-primary: rgba(26, 26, 46, 0.5);
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --gradient-overlay: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(15, 52, 96, 0.9) 50%, rgba(233, 69, 96, 0.85) 100%);
}

/* === GLOBAL STYLES === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background-color: var(--primary-color) !important;
  color: var(--text-light) !important;
  line-height: 1.7;
  overflow-x: hidden;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-light) !important;
}

.display-1, .display-2, .display-3, .display-4, .display-5 {
  font-weight: 800 !important;
  color: var(--text-light) !important;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--text-muted) !important;
}

a {
  color: var(--secondary-color) !important;
  text-decoration: none !important;
  transition: var(--transition-smooth);
}

a:hover {
  color: #ff6b81 !important;
  transform: translateX(3px);
}

.text-white {
  color: var(--text-light) !important;
}

.text-light {
  color: rgba(255, 255, 255, 0.9) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

/* === NAVIGATION === */
.navbar {
  background: linear-gradient(180deg, rgba(26, 26, 46, 0.98) 0%, rgba(26, 26, 46, 0.95) 100%) !important;
  backdrop-filter: blur(10px);
  padding: 1rem 0 !important;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 20px var(--shadow-primary);
  border-bottom: 2px solid var(--secondary-color);
}

.navbar.scrolled {
  padding: 0.5rem 0 !important;
  background: rgba(26, 26, 46, 0.99) !important;
}

.navbar-brand {
  font-size: 1.8rem !important;
  color: var(--text-light) !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em;
  transition: var(--transition-smooth);
  position: relative;
}

.navbar-brand::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--secondary-color);
  transition: var(--transition-smooth);
}

.navbar-brand:hover::after {
  width: 100%;
}

.navbar-brand:hover {
  color: var(--secondary-color) !important;
  transform: scale(1.05);
}

.navbar-toggler {
  border: 2px solid var(--secondary-color) !important;
  padding: 0.5rem 0.75rem !important;
  transition: var(--transition-smooth);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.25rem rgba(233, 69, 96, 0.3) !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23e94560' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.nav-link {
  color: rgba(255, 255, 255, 0.85) !important;
  font-weight: 500 !important;
  padding: 0.5rem 1.25rem !important;
  margin: 0 0.25rem;
  position: relative;
  transition: var(--transition-smooth);
  border-radius: 8px;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  transition: var(--transition-smooth);
}

.nav-link:hover,
.nav-link.active {
  color: var(--secondary-color) !important;
  background: rgba(233, 69, 96, 0.1) !important;
}

.nav-link:hover::before,
.nav-link.active::before {
  width: 70%;
}

/* === BUTTONS === */
.btn {
  font-weight: 600 !important;
  border-radius: 12px !important;
  transition: var(--transition-smooth) !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 2px solid transparent !important;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  z-index: -1;
}

.btn:hover::before {
  width: 300%;
  height: 300%;
}

.btn-lg {
  font-size: 1rem !important;
  padding: 1rem 2.5rem !important;
}

.btn-primary,
.btn-dark {
  background: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
  color: var(--text-light) !important;
  box-shadow: 0 4px 15px var(--shadow-dark);
}

.btn-primary:hover,
.btn-dark:hover {
  background: #ff6b81 !important;
  border-color: #ff6b81 !important;
  color: var(--text-light) !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px var(--shadow-dark);
}

.btn-outline-light {
  border: 2px solid var(--text-light) !important;
  color: var(--text-light) !important;
  background: transparent !important;
}

.btn-outline-light:hover {
  background: var(--text-light) !important;
  color: var(--primary-color) !important;
  border-color: var(--text-light) !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-light {
  background: var(--text-light) !important;
  color: var(--primary-color) !important;
  border: 2px solid var(--text-light) !important;
}

.btn-light:hover {
  background: transparent !important;
  color: var(--text-light) !important;
  border-color: var(--text-light) !important;
  transform: translateY(-3px);
}

/* === HERO SECTION === */
.position-relative.overflow-hidden {
  min-height: 100vh;
  background: var(--primary-color);
  position: relative;
}

.position-absolute.w-100.h-100 {
  background: var(--gradient-overlay);
  z-index: 1;
}

.position-absolute.w-100.h-100::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 2px,
    rgba(233, 69, 96, 0.03) 2px,
    rgba(233, 69, 96, 0.03) 4px
  );
  animation: slidePattern 20s linear infinite;
}

@keyframes slidePattern {
  0% { transform: translateX(0); }
  100% { transform: translateX(50px); }
}

.container.d-flex.align-items-center {
  position: relative;
  z-index: 2;
  min-height: 100vh;
}

/* === PARALLAX === */
.parallax-container {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.parallax-layer {
  position: absolute;
  width: 200px;
  height: 200px;
  border: 2px solid var(--secondary-color);
  opacity: 0.1;
  animation: float 20s infinite ease-in-out;
}

.parallax-layer:nth-child(1) {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.parallax-layer:nth-child(2) {
  top: 60%;
  right: 15%;
  animation-delay: 3s;
  width: 150px;
  height: 150px;
}

.parallax-layer:nth-child(3) {
  bottom: 20%;
  left: 20%;
  animation-delay: 6s;
  width: 100px;
  height: 100px;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(30px, -30px) rotate(120deg);
  }
  66% {
    transform: translate(-20px, 20px) rotate(240deg);
  }
}

/* === ANIMATE BOUNCE === */
.animate-bounce {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* === SECTIONS === */
section {
  position: relative;
  overflow: hidden;
}

.py-5 {
  padding: 5rem 0 !important;
}

.pt-5 {
  padding-top: 5rem !important;
}

.pb-4 {
  padding-bottom: 3rem !important;
}

/* === IMAGES === */
.img-fluid {
  border-radius: 15px;
  transition: var(--transition-smooth);
}

.img-fluid:hover {
  transform: scale(1.05) rotate(2deg);
}

.shadow-lg {
  box-shadow: 0 20px 60px var(--shadow-primary) !important;
}

.shadow {
  box-shadow: 0 10px 30px var(--shadow-primary) !important;
}

.rounded {
  border-radius: 15px !important;
}

.rounded-circle {
  border-radius: 50% !important;
  border: 3px solid var(--secondary-color);
}

/* === CARDS === */
.card {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(233, 69, 96, 0.2) !important;
  border-radius: 15px !important;
  transition: var(--transition-smooth);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px var(--shadow-dark) !important;
  border-color: var(--secondary-color) !important;
}

.card-body {
  padding: 2rem !important;
  color: var(--text-light) !important;
}

.border-0 {
  border: 0 !important;
}

/* === PROGRAM CARDS === */
.program-card {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.95), rgba(15, 52, 96, 0.9));
  border: 2px solid rgba(233, 69, 96, 0.3);
  border-radius: 20px;
  padding: 2rem;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.program-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(233, 69, 96, 0.1) 0%, transparent 70%);
  transform: scale(0);
  transition: transform 0.6s;
}

.program-card:hover::before {
  transform: scale(1);
}

.program-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--secondary-color);
  box-shadow: 0 25px 70px var(--shadow-dark);
}

.program-overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: var(--secondary-color);
  opacity: 0.1;
  border-radius: 0 20px 0 100%;
}

/* === BADGES === */
.badge {
  background: var(--secondary-color) !important;
  color: var(--text-light) !important;
  padding: 0.5rem 1rem !important;
  font-weight: 600 !important;
  border-radius: 8px !important;
  font-size: 0.875rem !important;
}

/* === BORDERS === */
.border-start {
  border-left: 4px solid var(--secondary-color) !important;
}

.border-3 {
  border-width: 3px !important;
}

/* === FORMS === */
.form-control,
.form-select {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 2px solid rgba(233, 69, 96, 0.3) !important;
  color: var(--text-light) !important;
  padding: 0.875rem 1.25rem !important;
  border-radius: 10px !important;
  transition: var(--transition-smooth);
  font-size: 1rem !important;
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
}

.form-control:focus,
.form-select:focus {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: var(--secondary-color) !important;
  box-shadow: 0 0 0 0.25rem rgba(233, 69, 96, 0.25) !important;
  color: var(--text-light) !important;
}

.form-label {
  color: var(--text-light) !important;
  font-weight: 600 !important;
  margin-bottom: 0.75rem !important;
  font-size: 0.95rem !important;
}

.form-select option {
  background: var(--primary-color) !important;
  color: var(--text-light) !important;
}

/* === ACCORDION === */
.accordion {
  --bs-accordion-bg: transparent !important;
  --bs-accordion-border-color: rgba(233, 69, 96, 0.3) !important;
}

.accordion-item {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(233, 69, 96, 0.3) !important;
  border-radius: 12px !important;
  margin-bottom: 1rem !important;
  overflow: hidden;
}

.accordion-button {
  background: rgba(233, 69, 96, 0.1) !important;
  color: var(--text-light) !important;
  font-weight: 600 !important;
  padding: 1.25rem 1.5rem !important;
  border: none !important;
  transition: var(--transition-smooth);
}

.accordion-button:not(.collapsed) {
  background: var(--secondary-color) !important;
  color: var(--text-light) !important;
  box-shadow: none !important;
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(233, 69, 96, 0.25) !important;
  border-color: var(--secondary-color) !important;
}

.accordion-button::after {
  filter: brightness(0) invert(1);
}

.accordion-body {
  background: rgba(255, 255, 255, 0.03) !important;
  color: rgba(255, 255, 255, 0.85) !important;
  padding: 1.5rem !important;
  border-top: 1px solid rgba(233, 69, 96, 0.2);
}

.accordion-collapse {
  border: none !important;
}

/* === TABLE === */
.table {
  color: var(--text-light) !important;
  border-color: rgba(233, 69, 96, 0.3) !important;
}

.table-dark {
  --bs-table-bg: rgba(26, 26, 46, 0.8) !important;
  --bs-table-striped-bg: rgba(233, 69, 96, 0.1) !important;
  --bs-table-hover-bg: rgba(233, 69, 96, 0.15) !important;
  --bs-table-border-color: rgba(233, 69, 96, 0.3) !important;
  color: var(--text-light) !important;
}

.table-dark thead {
  background: var(--secondary-color) !important;
  color: var(--text-light) !important;
}

.table-hover tbody tr {
  transition: var(--transition-smooth);
  cursor: pointer;
}

.table-hover tbody tr:hover {
  transform: scale(1.01);
}

/* === CAROUSEL === */
.carousel {
  border-radius: 15px;
  overflow: hidden;
}

.carousel-item {
  transition: transform 0.8s ease-in-out !important;
}

.carousel-indicators button {
  background-color: var(--secondary-color) !important;
  border: 2px solid var(--text-light) !important;
  width: 15px !important;
  height: 15px !important;
  border-radius: 50% !important;
  margin: 0 8px !important;
}

.carousel-indicators .active {
  transform: scale(1.3);
}

.carousel-control-prev,
.carousel-control-next {
  width: 5% !important;
  opacity: 0.8 !important;
  transition: var(--transition-smooth);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1 !important;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: var(--secondary-color);
  border-radius: 50%;
  padding: 2rem;
  filter: none !important;
}

/* === BOOTSTRAP ICONS === */
.bi {
  color: var(--secondary-color) !important;
  transition: var(--transition-smooth);
}

.bi:hover {
  color: #ff6b81 !important;
  transform: scale(1.2);
}

/* === UTILITIES === */
.gap-3 {
  gap: 1rem !important;
}

.gap-4 {
  gap: 1.5rem !important;
}

.g-3 {
  --bs-gutter-x: 1rem !important;
  --bs-gutter-y: 1rem !important;
}

.g-4 {
  --bs-gutter-x: 1.5rem !important;
  --bs-gutter-y: 1.5rem !important;
}

.g-5 {
  --bs-gutter-x: 3rem !important;
  --bs-gutter-y: 3rem !important;
}

.g-0 {
  --bs-gutter-x: 0 !important;
  --bs-gutter-y: 0 !important;
}

.opacity-75 {
  opacity: 0.75 !important;
}

.text-decoration-none {
  text-decoration: none !important;
}

.list-unstyled {
  padding-left: 0 !important;
  list-style: none !important;
}

.fst-italic {
  font-style: italic !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* === SPACING === */
.p-0 { padding: 0 !important; }
.p-3 { padding: 1rem !important; }
.p-4 { padding: 1.5rem !important; }
.p-5 { padding: 3rem !important; }
.px-4 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
.px-5 { padding-left: 3rem !important; padding-right: 3rem !important; }
.py-2 { padding-top: 0.5rem !important; padding-bottom: 0.5rem !important; }
.py-3 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
.py-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
.pt-4 { padding-top: 1.5rem !important; }
.pt-5 { padding-top: 3rem !important; }
.pb-4 { padding-bottom: 1.5rem !important; }
.ps-3 { padding-left: 1rem !important; }
.ps-lg-5 { padding-left: 3rem !important; }
.m-0 { margin: 0 !important; }
.mt-1 { margin-top: 0.25rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mt-5 { margin-top: 3rem !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.25rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 3rem !important; }
.mb-md-0 { margin-bottom: 0 !important; }
.mb-lg-0 { margin-bottom: 0 !important; }
.ms-2 { margin-left: 0.5rem !important; }
.ms-3 { margin-left: 1rem !important; }
.ms-4 { margin-left: 1.5rem !important; }
.ms-auto { margin-left: auto !important; }
.me-2 { margin-right: 0.5rem !important; }
.me-3 { margin-right: 1rem !important; }
.mx-auto { margin-left: auto !important; margin-right: auto !important; }
.my-4 { margin-top: 1.5rem !important; margin-bottom: 1.5rem !important; }

/* === POSITION === */
.position-relative { position: relative !important; }
.position-absolute { position: absolute !important; }
.position-sticky { position: sticky !important; top: 100px; }
.sticky-top { position: sticky !important; top: 0 !important; z-index: 1020 !important; }
.fixed-top { position: fixed !important; top: 0 !important; right: 0 !important; left: 0 !important; z-index: 1030 !important; }

.top-0 { top: 0 !important; }
.top-50 { top: 50% !important; }
.bottom-0 { bottom: 0 !important; }
.start-0 { left: 0 !important; }
.start-50 { left: 50% !important; }
.end-0 { right: 0 !important; }

.translate-middle { transform: translate(-50%, -50%) !important; }
.translate-middle-x { transform: translateX(-50%) !important; }

/* === DISPLAY === */
.d-flex { display: flex !important; }
.d-none { display: none !important; }
.d-block { display: block !important; }

.flex-wrap { flex-wrap: wrap !important; }
.flex-fill { flex: 1 1 auto !important; }

.align-items-center { align-items: center !important; }
.align-items-start { align-items: flex-start !important; }
.justify-content-center { justify-content: center !important; }
.justify-content-between { justify-content: space-between !important; }

.text-center { text-align: center !important; }
.text-md-start { text-align: left !important; }
.text-md-end { text-align: right !important; }

/* === SIZING === */
.w-100 { width: 100% !important; }
.h-100 { height: 100% !important; }

/* === OVERFLOW === */
.overflow-hidden { overflow: hidden !important; }

/* === SCROLL ANIMATIONS === */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* === LOADING ANIMATION === */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.loading {
  animation: pulse 1.5s ease-in-out infinite;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(26, 26, 46, 0.98);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1rem;
    border: 1px solid rgba(233, 69, 96, 0.3);
  }
  
  .nav-link {
    padding: 0.75rem 1rem !important;
    margin: 0.25rem 0;
  }
  
  .display-1 {
    font-size: 3rem !important;
  }
  
  .display-3 {
    font-size: 2.5rem !important;
  }
  
  .display-4 {
    font-size: 2rem !important;
  }
  
  .display-5 {
    font-size: 1.75rem !important;
  }
  
  .btn-lg {
    padding: 0.875rem 2rem !important;
    font-size: 0.95rem !important;
  }
  
  .py-5 {
    padding: 3rem 0 !important;
  }
  
  .px-4 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  .d-lg-none {
    display: block !important;
  }
  
  .d-lg-block {
    display: none !important;
  }
  
  .mb-lg-0 {
    margin-bottom: 1rem !important;
  }
  
  .order-lg-1 {
    order: 1 !important;
  }
  
  .order-lg-2 {
    order: 2 !important;
  }
  
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-10 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .position-sticky {
    position: relative !important;
    top: auto !important;
  }
  
  .ps-lg-5 {
    padding-left: 1rem !important;
  }
  
  .text-md-start {
    text-align: center !important;
  }
  
  .text-md-end {
    text-align: center !important;
  }
}

@media (max-width: 767.98px) {
  .col-md-3,
  .col-md-4,
  .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .mb-md-0 {
    margin-bottom: 1rem !important;
  }
  
  .display-1 {
    font-size: 2.5rem !important;
  }
  
  .lead {
    font-size: 1.1rem !important;
  }
  
  .gap-3 {
    gap: 0.75rem !important;
  }
  
  .gap-4 {
    gap: 1rem !important;
  }
}

@media (max-width: 575.98px) {
  .col-sm-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .px-5 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  
  .btn-lg {
    padding: 0.75rem 1.5rem !important;
    font-size: 0.9rem !important;
  }
}

/* === CUSTOM SCROLLBAR === */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--primary-color);
}

::-webkit-scrollbar-thumb {
  background: var(--secondary-color);
  border-radius: 6px;
  border: 2px solid var(--primary-color);
}

::-webkit-scrollbar-thumb:hover {
  background: #ff6b81;
}

/* === SELECTION === */
::selection {
  background: var(--secondary-color);
  color: var(--text-light);
}

::-moz-selection {
  background: var(--secondary-color);
  color: var(--text-light);
}

/* === FOCUS VISIBLE === */
*:focus-visible {
  outline: 2px solid var(--secondary-color);
  outline-offset: 3px;
}

/* === SMOOTH TRANSITIONS === */
.container,
.container-fluid,
.row,
.col,
[class*="col-"] {
  transition: var(--transition-smooth);
}

/* === PRINT STYLES === */
@media print {
  .navbar,
  .btn,
  .carousel-control-prev,
  .carousel-control-next,
  .carousel-indicators {
    display: none !important;
  }
  
  body {
    background: white !important;
    color: black !important;
  }
}