/* ============================================
   Architectural Studio - Steel & Amber Theme
   Primary: #2C3E50 (Steel)
   Secondary: #E67E22 (Amber)
   ============================================ */

/* ===== ROOT VARIABLES ===== */
:root {
  --primary-color: #2C3E50;
  --secondary-color: #E67E22;
  --primary-light: #34495E;
  --secondary-light: #F39C12;
  --text-dark: #1A252F;
  --text-light: #ECF0F1;
  --bg-light: #F8F9FA;
  --bg-dark: #212529;
  --shadow-sm: 0 2px 8px rgba(44, 62, 80, 0.1);
  --shadow-md: 0 4px 16px rgba(44, 62, 80, 0.15);
  --shadow-lg: 0 8px 32px rgba(44, 62, 80, 0.2);
  --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark) !important;
  background-color: #FFFFFF !important;
  line-height: 1.6;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

/* ===== TYPOGRAPHY ===== */
.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
  font-weight: 700 !important;
  letter-spacing: -0.02em;
  color: var(--primary-color) !important;
}

.text-white,
.text-white.display-1,
.text-white.display-4,
.text-white.display-5 {
  color: #FFFFFF !important;
}

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

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

.lead {
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text-dark) !important;
  line-height: 1.7;
}

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

.fw-semibold {
  font-weight: 600 !important;
}

.fs-1 { font-size: 2.5rem !important; }
.fs-3 { font-size: 1.5rem !important; }
.fs-4 { font-size: 1.25rem !important; }

/* ===== NAVBAR ===== */
.navbar {
  padding: 1rem 0 !important;
  transition: var(--transition-base);
  background-color: var(--primary-color) !important;
  box-shadow: var(--shadow-md);
}

.navbar.fixed-top {
  z-index: 1030;
}

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

.navbar-brand {
  font-size: 1.5rem !important;
  font-weight: 700 !important;
  color: #FFFFFF !important;
  letter-spacing: 0.5px;
  transition: var(--transition-base);
}

.navbar-brand:hover {
  color: var(--secondary-color) !important;
  transform: translateY(-2px);
}

.navbar-toggler {
  border: 2px solid rgba(255, 255, 255, 0.3) !important;
  padding: 0.5rem 0.75rem !important;
  transition: var(--transition-base);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.25rem rgba(230, 126, 34, 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='rgba(255, 255, 255, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.navbar-nav {
  gap: 0.5rem;
}

.nav-link {
  color: rgba(255, 255, 255, 0.85) !important;
  font-weight: 500 !important;
  padding: 0.5rem 1rem !important;
  position: relative;
  transition: var(--transition-base);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background-color: var(--secondary-color);
  transform: scaleX(0);
  transition: var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
  color: #FFFFFF !important;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-link.active {
  color: var(--secondary-color) !important;
  font-weight: 600 !important;
}

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

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

.carousel-fade .carousel-item {
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

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

.carousel-item img {
  object-fit: cover;
  height: 100%;
  filter: brightness(0.7);
}

.carousel-caption {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 2rem;
  text-align: left;
  background: linear-gradient(135deg, rgba(44, 62, 80, 0.85), rgba(44, 62, 80, 0.4));
}

.carousel-caption .display-1 {
  color: #FFFFFF !important;
  font-size: clamp(2.5rem, 8vw, 5rem) !important;
  margin-bottom: 1rem;
  animation: fadeInUp 1s ease-out;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.carousel-caption .fs-3 {
  color: #FFFFFF !important;
  font-size: clamp(1rem, 3vw, 1.5rem) !important;
  margin-bottom: 2rem;
  animation: fadeInUp 1.2s ease-out;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  animation: bounce 2s infinite;
}

.scroll-indicator a {
  color: #FFFFFF !important;
  font-size: 2rem;
  text-decoration: none !important;
  display: block;
  transition: var(--transition-base);
}

.scroll-indicator a:hover {
  color: var(--secondary-color) !important;
  transform: scale(1.2);
}

/* ===== BUTTONS ===== */
.btn {
  font-weight: 600 !important;
  padding: 0.75rem 2rem !important;
  border-radius: 4px !important;
  transition: var(--transition-base);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid transparent !important;
}

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

.btn-sm {
  padding: 0.5rem 1rem !important;
  font-size: 0.875rem !important;
}

.btn-primary {
  background-color: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
  color: #FFFFFF !important;
}

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

.btn-outline-light {
  border-color: #FFFFFF !important;
  color: #FFFFFF !important;
  background-color: transparent !important;
}

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

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

.btn-outline-secondary:hover {
  background-color: var(--secondary-color) !important;
  color: #FFFFFF !important;
  border-color: var(--secondary-color) !important;
  transform: translateY(-2px);
}

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

.btn-outline-dark:hover {
  background-color: var(--primary-color) !important;
  color: #FFFFFF !important;
  border-color: var(--primary-color) !important;
  transform: translateY(-2px);
}

/* ===== BADGE ===== */
.badge {
  background-color: var(--secondary-color) !important;
  color: #FFFFFF !important;
  font-weight: 600 !important;
  border-radius: 4px;
  font-size: 0.875rem !important;
  letter-spacing: 0.5px;
}

/* ===== CARDS ===== */
.card {
  border: none !important;
  border-radius: 8px !important;
  transition: var(--transition-base);
  overflow: hidden;
  background-color: #FFFFFF !important;
}

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

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

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

.card-img-top {
  height: 250px;
  object-fit: cover;
  transition: var(--transition-slow);
}

.card:hover .card-img-top {
  transform: scale(1.05);
}

.card-body {
  padding: 2rem !important;
}

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

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

/* ===== SECTIONS ===== */
section {
  padding: 5rem 0;
  position: relative;
}

.py-0 { padding-top: 0 !important; padding-bottom: 0 !important; }
.py-4 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
.py-5 { padding-top: 5rem !important; padding-bottom: 5rem !important; }
.pt-5 { padding-top: 5rem !important; }
.pb-3 { padding-bottom: 2rem !important; }
.pb-4 { padding-bottom: 3rem !important; }
.p-3 { padding: 1.5rem !important; }
.p-4 { padding: 2rem !important; }
.p-5 { padding: 3rem !important; }
.px-3 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
.px-4 { padding-left: 2rem !important; padding-right: 2rem !important; }
.px-5 { padding-left: 3rem !important; padding-right: 3rem !important; }

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

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

/* ===== IMAGES ===== */
.img-fluid {
  max-width: 100%;
  height: auto;
}

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

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

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

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

.form-control,
.form-select {
  border: 2px solid #DEE2E6 !important;
  border-radius: 4px !important;
  padding: 0.75rem 1rem !important;
  transition: var(--transition-base);
  color: var(--text-dark) !important;
  background-color: #FFFFFF !important;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--secondary-color) !important;
  box-shadow: 0 0 0 0.25rem rgba(230, 126, 34, 0.15) !important;
  outline: none;
}

.form-control::placeholder {
  color: #ADB5BD !important;
}

.form-check-input {
  border: 2px solid #DEE2E6 !important;
  transition: var(--transition-base);
}

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

.form-check-input:focus {
  box-shadow: 0 0 0 0.25rem rgba(230, 126, 34, 0.15) !important;
}

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

/* ===== LIST STYLES ===== */
.list-unstyled {
  list-style: none;
  padding-left: 0;
}

.list-unstyled li {
  padding: 0.5rem 0;
  color: var(--text-dark) !important;
}

/* ===== PORTFOLIO FILTER ===== */
.filter-btn {
  background-color: transparent !important;
  border: 2px solid var(--primary-color) !important;
  color: var(--primary-color) !important;
  padding: 0.5rem 1.5rem !important;
  margin: 0.25rem;
  border-radius: 4px;
  transition: var(--transition-base);
  font-weight: 600 !important;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
  color: #FFFFFF !important;
  transform: translateY(-2px);
}

.portfolio-item {
  overflow: hidden;
  border-radius: 8px;
  position: relative;
  cursor: pointer;
  transition: var(--transition-base);
}

.portfolio-item img {
  transition: var(--transition-slow);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-item:hover img {
  transform: scale(1.1);
  filter: brightness(0.8);
}

.portfolio-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(44, 62, 80, 0.8), rgba(230, 126, 34, 0.6));
  opacity: 0;
  transition: var(--transition-base);
}

.portfolio-item:hover::after {
  opacity: 1;
}

/* ===== MODAL ===== */
.modal-content {
  border-radius: 8px !important;
  border: none !important;
  overflow: hidden;
}

.modal-header {
  background-color: var(--primary-color) !important;
  color: #FFFFFF !important;
  border-bottom: none !important;
  padding: 1.5rem 2rem !important;
}

.modal-title {
  color: #FFFFFF !important;
  font-weight: 700 !important;
}

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

.btn-close,
.btn-close-white {
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

.btn-close:hover,
.btn-close-white:hover {
  opacity: 1;
}

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

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

.bi-geo-alt-fill,
.bi-telephone-fill,
.bi-envelope-fill,
.bi-send,
.bi-calendar-check,
.bi-file-earmark-pdf,
.bi-briefcase,
.bi-arrow-right-circle,
.bi-person-circle,
.bi-building,
.bi-chat-dots,
.bi-globe,
.bi-shield-check,
.bi-lock,
.bi-arrow-repeat,
.bi-check-circle-fill,
.bi-graph-up,
.bi-envelope,
.bi-telephone,
.bi-linkedin,
.bi-instagram,
.bi-facebook,
.bi-twitter,
.bi-tools,
.bi-house-door,
.bi-tree,
.bi-layout-text-window-reverse,
.bi-bank,
.bi-award,
.bi-geo-alt,
.bi-snow2,
.bi-moisture,
.bi-file-earmark-text {
  color: var(--secondary-color) !important;
}

/* ===== PROGRESS BAR ===== */
.progress {
  height: 1rem;
  border-radius: 4px;
  background-color: #E9ECEF !important;
  overflow: hidden;
}

.progress-bar {
  background-color: var(--secondary-color) !important;
  transition: width 1s ease-in-out;
}

/* ===== RATIO (VIDEO EMBEDS) ===== */
.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-21x9 {
  --bs-aspect-ratio: 42.857143%;
}

/* ===== UTILITY CLASSES ===== */
.text-decoration-none {
  text-decoration: none !important;
}

.text-center {
  text-align: center !important;
}

.text-start {
  text-align: left !important;
}

.text-end {
  text-align: right !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-sticky {
  position: sticky !important;
  top: 100px;
}

.position-fixed {
  position: fixed !important;
}

.sticky-top {
  position: sticky !important;
  top: 0;
  z-index: 1020;
}

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

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

.start-0 {
  left: 0 !important;
}

.start-50 {
  left: 50% !important;
}

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

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

.d-block {
  display: block !important;
}

.d-flex {
  display: flex !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.ms-auto {
  margin-left: auto !important;
}

.me-2 {
  margin-right: 0.5rem !important;
}

.me-3 {
  margin-right: 1rem !important;
}

.ms-4 {
  margin-left: 1.5rem !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-lg-0 {
  margin-bottom: 0 !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mt-auto {
  margin-top: auto !important;
}

.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.gap-2 {
  gap: 0.5rem !important;
}

.gap-3 {
  gap: 1rem !important;
}

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

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

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

.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

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

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

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

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

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

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

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

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

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

@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);
  }
}

/* Animation classes */
.fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

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

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

/* ===== RESPONSIVE DESIGN ===== */

/* Mobile First - Base styles above are mobile */

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
  
  .col-md-3 { width: 25%; }
  .col-md-4 { width: 33.333333%; }
  .col-md-5 { width: 41.666667%; }
  .col-md-6 { width: 50%; }
  .col-md-7 { width: 58.333333%; }
  .col-md-8 { width: 66.666667%; }
  
  .order-md-1 { order: 1; }
  .order-md-2 { order: 2; }
  
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  
  .text-md-end {
    text-align: right !important;
  }
  
  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  
  .p-md-5 {
    padding: 3rem !important;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
  
  .col-lg-2 { width: 16.666667%; }
  .col-lg-3 { width: 25%; }
  .col-lg-4 { width: 33.333333%; }
  .col-lg-5 { width: 41.666667%; }
  .col-lg-6 { width: 50%; }
  .col-lg-7 { width: 58.333333%; }
  .col-lg-8 { width: 66.666667%; }
  .col-lg-9 { width: 75%; }
  .col-lg-10 { width: 83.333333%; }
  .col-lg-12 { width: 100%; }
  
  .offset-lg-1 { margin-left: 8.333333%; }
  .offset-lg-2 { margin-left: 16.666667%; }
  
  .order-lg-1 { order: 1; }
  .order-lg-2 { order: 2; }
  
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  
  .text-lg-end {
    text-align: right !important;
  }
  
  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }
  
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
  }
  
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

/* Extra extra large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

/* Mobile optimization */
@media (max-width: 767px) {
  .hero-slideshow {
    height: 80vh;
    min-height: 500px;
  }
  
  .carousel-caption {
    padding: 1rem;
  }
  
  .display-1 {
    font-size: 2.5rem !important;
  }
  
  .display-4 {
    font-size: 2rem !important;
  }
  
  .display-5 {
    font-size: 1.75rem !important;
  }
  
  .display-6 {
    font-size: 1.5rem !important;
  }
  
  section {
    padding: 3rem 0;
  }
  
  .card-img-top {
    height: 200px;
  }
  
  .btn-lg {
    padding: 0.875rem 1.5rem !important;
    font-size: 1rem !important;
  }
  
  .navbar-collapse {
    background-color: var(--primary-color);
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 4px;
  }
  
  .position-sticky {
    position: relative !important;
  }
}

/* Print styles */
@media print {
  .navbar,
  .btn,
  .scroll-indicator {
    display: none !important;
  }
  
  body {
    background-color: white !important;
    color: black !important;
  }
}

/* ===== ACCESSIBILITY ===== */
*:focus {
  outline: 2px solid var(--secondary-color);
  outline-offset: 2px;
}

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

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

::-webkit-scrollbar-track {
  background: var(--bg-light);
}

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

::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-color);
}

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

::-moz-selection {
  background-color: var(--secondary-color);
  color: #FFFFFF;
}