/* ===================================
   ARCHITECTURAL STUDIO WEBSITE CSS
   Theme: Dynamic Blue & Energy Orange
   =================================== */

/* === ROOT VARIABLES === */
:root {
  --primary-color: #1976D2;
  --secondary-color: #FFA726;
  --primary-dark: #1565C0;
  --secondary-dark: #F57C00;
  --text-dark: #212529;
  --text-light: #ffffff;
  --gradient-primary: linear-gradient(135deg, #1976D2 0%, #1565C0 100%);
  --gradient-secondary: linear-gradient(135deg, #FFA726 0%, #F57C00 100%);
  --gradient-overlay: linear-gradient(rgba(25, 118, 210, 0.7), rgba(21, 101, 192, 0.8));
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
  --transition-base: all 0.3s ease;
  --transition-slow: all 0.5s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* === BOOTSTRAP OVERRIDES === */
.btn-primary {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  color: var(--text-light) !important;
  font-weight: 600 !important;
  transition: var(--transition-base) !important;
  box-shadow: var(--shadow-sm) !important;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--primary-dark) !important;
  border-color: var(--primary-dark) !important;
  color: var(--text-light) !important;
  transform: translateY(-2px) !important;
  box-shadow: var(--shadow-md) !important;
}

.btn-secondary {
  background-color: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
  color: var(--text-dark) !important;
  font-weight: 600 !important;
  transition: var(--transition-base) !important;
  box-shadow: var(--shadow-sm) !important;
}

.btn-secondary:hover,
.btn-secondary:focus {
  background-color: var(--secondary-dark) !important;
  border-color: var(--secondary-dark) !important;
  color: var(--text-light) !important;
  transform: translateY(-2px) !important;
  box-shadow: var(--shadow-md) !important;
}

.btn-outline-primary {
  border-color: var(--primary-color) !important;
  color: var(--primary-color) !important;
  background-color: transparent !important;
  font-weight: 600 !important;
  transition: var(--transition-base) !important;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  color: var(--text-light) !important;
  transform: translateY(-2px) !important;
}

.btn-outline-light {
  border-color: var(--text-light) !important;
  color: var(--text-light) !important;
  background-color: transparent !important;
  font-weight: 600 !important;
  transition: var(--transition-base) !important;
}

.btn-outline-light:hover {
  background-color: var(--text-light) !important;
  border-color: var(--text-light) !important;
  color: var(--primary-color) !important;
}

.btn-outline-success {
  border-color: #28a745 !important;
  color: #28a745 !important;
  background-color: transparent !important;
}

.btn-outline-success:hover {
  background-color: #28a745 !important;
  color: white !important;
}

.btn-outline-warning {
  border-color: var(--secondary-color) !important;
  color: var(--secondary-color) !important;
  background-color: transparent !important;
}

.btn-outline-warning:hover {
  background-color: var(--secondary-color) !important;
  color: white !important;
}

.btn-outline-danger {
  border-color: #dc3545 !important;
  color: #dc3545 !important;
  background-color: transparent !important;
}

.btn-outline-danger:hover {
  background-color: #dc3545 !important;
  color: white !important;
}

.btn-light {
  background-color: var(--text-light) !important;
  border-color: var(--text-light) !important;
  color: var(--primary-color) !important;
  font-weight: 600 !important;
}

.btn-light:hover {
  background-color: #f8f9fa !important;
  color: var(--primary-dark) !important;
}

.btn-lg {
  padding: 12px 32px !important;
  font-size: 1.1rem !important;
}

.btn-sm {
  padding: 6px 16px !important;
  font-size: 0.875rem !important;
}

.badge {
  background-color: var(--secondary-color) !important;
  color: var(--text-dark) !important;
  font-weight: 600 !important;
  padding: 8px 16px !important;
  font-size: 0.875rem !important;
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

.bg-secondary {
  background-color: var(--secondary-color) !important;
}

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

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

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

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

.text-muted {
  color: #6c757d !important;
}

.border-primary {
  border-color: var(--primary-color) !important;
}

.card {
  border: none !important;
  box-shadow: var(--shadow-md) !important;
  transition: var(--transition-base) !important;
  overflow: hidden;
}

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

.card-header {
  background-color: var(--primary-color) !important;
  color: var(--text-light) !important;
  font-weight: 600 !important;
  border-bottom: none !important;
}

.shadow {
  box-shadow: var(--shadow-md) !important;
}

.shadow-sm {
  box-shadow: var(--shadow-sm) !important;
}

.shadow-lg {
  box-shadow: var(--shadow-lg) !important;
}

/* === NAVIGATION === */
.navbar {
  z-index: 1000;
  transition: var(--transition-base) !important;
  padding: 1rem 0 !important;
}

.navbar.sticky-top {
  background-color: rgba(25, 118, 210, 0.95) !important;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md) !important;
}

.navbar-brand {
  color: var(--text-light) !important;
  font-weight: 700 !important;
  font-size: 1.5rem !important;
  transition: var(--transition-base) !important;
}

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

.navbar-dark .navbar-toggler {
  border-color: var(--text-light) !important;
  color: var(--text-light) !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='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.nav-link {
  color: var(--text-light) !important;
  font-weight: 500 !important;
  padding: 8px 16px !important;
  transition: var(--transition-base) !important;
  position: relative;
}

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

.nav-link:hover {
  color: var(--secondary-color) !important;
}

.nav-link:hover::after {
  width: 80%;
}

/* === HERO SLIDESHOW === */
.hero-slideshow {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
}

.carousel {
  height: 100%;
}

.carousel-inner,
.carousel-item {
  height: 100%;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-overlay);
  z-index: 1;
}

.carousel-fade .carousel-item {
  opacity: 0;
  transition-duration: 1s;
  transition-property: opacity;
}

.carousel-fade .carousel-item.active {
  opacity: 1;
}

.hero-slideshow .position-absolute {
  z-index: 2;
}

.hero-slideshow .display-2 {
  color: var(--text-light) !important;
  font-weight: 700 !important;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
  animation: fadeInUp 1s ease;
}

.hero-slideshow .lead {
  color: var(--text-light) !important;
  font-size: 1.25rem !important;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
  animation: fadeInUp 1.2s ease;
}

/* === SCROLL INDICATOR === */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--text-light) !important;
  cursor: pointer;
  transition: var(--transition-base);
}

.scroll-indicator:hover {
  color: var(--secondary-color) !important;
  transform: translateX(-50%) translateY(5px);
}

.animate-bounce {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* === SECTIONS === */
section {
  padding: 80px 0;
}

.py-5 {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

.display-1 {
  font-weight: 700 !important;
  color: var(--primary-color) !important;
}

.display-2 {
  font-weight: 700 !important;
}

.display-3 {
  font-weight: 700 !important;
  color: var(--primary-color) !important;
}

.display-4 {
  font-weight: 700 !important;
  color: var(--primary-color) !important;
}

.display-5 {
  font-weight: 700 !important;
  color: var(--primary-color) !important;
}

.display-6 {
  font-weight: 700 !important;
  color: var(--primary-color) !important;
}

/* === TIMELINE SECTION === */
.timeline-section {
  position: relative;
  padding: 60px 0;
}

.timeline-section::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: var(--gradient-primary);
  top: 0;
}

/* === PARALLAX SECTION === */
.parallax-section {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.parallax-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(25, 118, 210, 0.8);
}

/* === CARDS === */
.card-body {
  padding: 2rem !important;
}

.card-title {
  color: var(--primary-color) !important;
  font-weight: 700 !important;
  margin-bottom: 1rem !important;
}

.card-text {
  color: var(--text-dark) !important;
  line-height: 1.7 !important;
}

.card-img-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem !important;
}

.card-img-overlay .card-title,
.card-img-overlay .card-text {
  color: var(--text-light) !important;
}

/* === SPORT CARD === */
.sport-card {
  cursor: pointer;
  transition: var(--transition-base) !important;
  border: 2px solid transparent !important;
}

.sport-card:hover {
  border-color: var(--primary-color) !important;
  transform: scale(1.02) !important;
}

/* === FACILITY CARDS === */
.facility-photo-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  height: 300px;
}

.facility-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.facility-photo-card:hover img {
  transform: scale(1.1);
}

.photo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(25, 118, 210, 0.7);
  opacity: 0;
  transition: var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 1.5rem;
  font-weight: 600;
}

.facility-photo-card:hover .photo-overlay {
  opacity: 1;
}

.facility-spec-card {
  height: 100%;
  border-left: 4px solid var(--primary-color) !important;
}

/* === MASONRY GRID === */
.masonry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-gap: 20px;
  align-items: start;
}

/* === FORMS === */
.form-label {
  color: var(--text-dark) !important;
  font-weight: 600 !important;
  margin-bottom: 0.5rem !important;
}

.form-control,
.form-select {
  border: 2px solid #dee2e6 !important;
  padding: 12px 16px !important;
  transition: var(--transition-base) !important;
  color: var(--text-dark) !important;
  background-color: #fff !important;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-color) !important;
  box-shadow: 0 0 0 0.2rem rgba(25, 118, 210, 0.25) !important;
  outline: none !important;
}

.form-control-lg {
  padding: 16px 20px !important;
  font-size: 1.1rem !important;
}

.form-check-input {
  border: 2px solid #dee2e6 !important;
  width: 1.25em !important;
  height: 1.25em !important;
}

.form-check-input:checked {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
}

.form-check-input:focus {
  box-shadow: 0 0 0 0.2rem rgba(25, 118, 210, 0.25) !important;
}

.form-check-label {
  color: var(--text-dark) !important;
  margin-left: 0.5rem !important;
}

/* === TIME SLOT === */
.time-slot {
  padding: 12px 24px !important;
  border: 2px solid #dee2e6 !important;
  border-radius: 8px !important;
  transition: var(--transition-base) !important;
  cursor: pointer;
  text-align: center;
  font-weight: 600 !important;
  color: var(--text-dark) !important;
  background-color: #fff !important;
}

.time-slot:hover {
  border-color: var(--primary-color) !important;
  background-color: rgba(25, 118, 210, 0.1) !important;
  color: var(--primary-color) !important;
}

.time-slot.active {
  border-color: var(--primary-color) !important;
  background-color: var(--primary-color) !important;
  color: var(--text-light) !important;
}

/* === ALERTS === */
.alert {
  border: none !important;
  border-radius: 8px !important;
  padding: 1rem 1.5rem !important;
}

.alert-info {
  background-color: rgba(25, 118, 210, 0.1) !important;
  color: var(--primary-color) !important;
  border-left: 4px solid var(--primary-color) !important;
}

.alert-warning {
  background-color: rgba(255, 167, 38, 0.1) !important;
  color: var(--secondary-dark) !important;
  border-left: 4px solid var(--secondary-color) !important;
}

/* === ACCORDION === */
.accordion-item {
  border: 1px solid #dee2e6 !important;
  margin-bottom: 1rem !important;
  border-radius: 8px !important;
  overflow: hidden;
}

.accordion-button {
  background-color: #f8f9fa !important;
  color: var(--text-dark) !important;
  font-weight: 600 !important;
  padding: 1.25rem !important;
  transition: var(--transition-base) !important;
}

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

.accordion-button:focus {
  box-shadow: none !important;
  border-color: var(--primary-color) !important;
}

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

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

.accordion-body {
  padding: 1.5rem !important;
  background-color: #fff !important;
}

/* === TABLE === */
.table {
  color: var(--text-dark) !important;
}

.table thead th {
  background-color: var(--primary-color) !important;
  color: var(--text-light) !important;
  font-weight: 600 !important;
  border: none !important;
  padding: 1rem !important;
}

.table tbody td {
  padding: 1rem !important;
  vertical-align: middle !important;
}

.table-borderless tbody tr {
  border-bottom: 1px solid #dee2e6;
}

/* === LIST GROUP === */
.list-group-item {
  border: 1px solid #dee2e6 !important;
  padding: 1rem 1.25rem !important;
  transition: var(--transition-base) !important;
  color: var(--text-dark) !important;
  background-color: #fff !important;
}

.list-group-item:hover {
  background-color: rgba(25, 118, 210, 0.05) !important;
  border-color: var(--primary-color) !important;
}

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

.list-unstyled li {
  margin-bottom: 0.75rem !important;
}

/* === LINKS === */
a {
  color: var(--primary-color) !important;
  text-decoration: none !important;
  transition: var(--transition-base) !important;
}

a:hover {
  color: var(--primary-dark) !important;
  text-decoration: underline !important;
}

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

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

/* === ICONS === */
.bi {
  vertical-align: middle;
}

.bi-check-circle-fill {
  color: #28a745 !important;
}

.bi-circle-fill {
  color: var(--primary-color) !important;
}

/* === RATIO === */
.ratio {
  position: relative;
  width: 100%;
}

.ratio::before {
  display: block;
  padding-top: var(--bs-aspect-ratio);
  content: "";
}

.ratio > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ratio-16x9 {
  --bs-aspect-ratio: 56.25%;
}

/* === UTILITIES === */
.cursor-pointer {
  cursor: pointer !important;
}

.object-fit-cover {
  object-fit: cover !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.vh-100 {
  height: 100vh !important;
}

.h-100 {
  height: 100% !important;
}

.w-100 {
  width: 100% !important;
}

.opacity-25 {
  opacity: 0.25 !important;
}

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

.bg-light {
  background-color: #f8f9fa !important;
}

.bg-dark {
  background-color: #212529 !important;
}

.bg-white {
  background-color: #ffffff !important;
}

.bg-opacity-10 {
  background-color: rgba(25, 118, 210, 0.1) !important;
}

.border-light {
  border-color: #f8f9fa !important;
}

.border-top {
  border-top: 1px solid #dee2e6 !important;
}

.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}

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

.rounded {
  border-radius: 0.375rem !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-3 {
  border-radius: 0.5rem !important;
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease;
}

.fade-in {
  animation: fadeIn 0.8s ease;
}

.slide-in-left {
  animation: slideInLeft 0.8s ease;
}

.slide-in-right {
  animation: slideInRight 0.8s ease;
}

/* === FOOTER === */
footer {
  background-color: #212529 !important;
  color: var(--text-light) !important;
  padding: 3rem 0 1rem !important;
}

footer h5,
footer .h5 {
  color: var(--text-light) !important;
  font-weight: 700 !important;
  margin-bottom: 1.5rem !important;
}

footer p,
footer li,
footer a {
  color: rgba(255, 255, 255, 0.8) !important;
}

footer a:hover {
  color: var(--secondary-color) !important;
}

footer .bi {
  color: var(--text-light) !important;
  font-size: 1.5rem !important;
  transition: var(--transition-base) !important;
}

footer .bi:hover {
  color: var(--secondary-color) !important;
  transform: scale(1.2) !important;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background-color: rgba(25, 118, 210, 0.98);
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 8px;
  }
  
  .nav-link {
    padding: 12px 16px !important;
  }
  
  .display-1 {
    font-size: 3rem !important;
  }
  
  .display-2 {
    font-size: 2.5rem !important;
  }
  
  .display-3 {
    font-size: 2rem !important;
  }
  
  .display-4 {
    font-size: 1.75rem !important;
  }
  
  section {
    padding: 60px 0;
  }
  
  .timeline-section::before {
    left: 20px;
  }
}

@media (max-width: 767.98px) {
  .hero-slideshow .display-2 {
    font-size: 2rem !important;
  }
  
  .hero-slideshow .lead {
    font-size: 1rem !important;
  }
  
  .btn-lg {
    padding: 10px 24px !important;
    font-size: 1rem !important;
  }
  
  .card-body {
    padding: 1.5rem !important;
  }
  
  section {
    padding: 40px 0;
  }
  
  .py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  
  .masonry-grid {
    grid-template-columns: 1fr;
  }
  
  .facility-photo-card {
    height: 200px;
  }
}

@media (max-width: 575.98px) {
  .display-1 {
    font-size: 2.5rem !important;
  }
  
  .display-2 {
    font-size: 1.75rem !important;
  }
  
  .display-3 {
    font-size: 1.5rem !important;
  }
  
  .hero-slideshow {
    min-height: 500px;
  }
  
  .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }
  
  .gap-3 {
    gap: 0.5rem !important;
  }
}

/* === PRINT STYLES === */
@media print {
  .navbar,
  .btn,
  footer {
    display: none !important;
  }
  
  body {
    background: white !important;
    color: black !important;
  }
  
  .card {
    page-break-inside: avoid;
  }
}

/* === ACCESSIBILITY === */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

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

/* === FOCUS STYLES === */
*:focus {
  outline: 2px solid var(--secondary-color) !important;
  outline-offset: 2px !important;
}

.btn:focus,
.form-control:focus,
.form-select:focus {
  outline: none !important;
}

/* === LOADING ANIMATION === */
.loading {
  display: inline-block;
  width: 50px;
  height: 50px;
  border: 4px solid rgba(25, 118, 210, 0.3);
  border-radius: 50%;
  border-top-color: var(--primary-color);
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* === SCROLL TO TOP === */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color) !important;
  color: var(--text-light) !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-base) !important;
  z-index: 999;
  box-shadow: var(--shadow-lg);
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  background-color: var(--secondary-color) !important;
  transform: translateY(-5px) !important;
}

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

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

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

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

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

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