/* Forest Ember Architecture Studio Theme - CSS */

/* === ROOT VARIABLES === */
:root {
  --primary-color: #2E7D32;
  --secondary-color: #FFB300;
  --dark-forest: #1B5E20;
  --light-forest: #4CAF50;
  --ember-orange: #FF6F00;
  --warm-amber: #FFC107;
  --text-dark: #212121;
  --text-light: #FAFAFA;
  --background-light: #F5F5F5;
  --transition-smooth: all 0.3s ease;
  --shadow-soft: 0 4px 6px rgba(0,0,0,0.1);
  --shadow-medium: 0 8px 16px rgba(0,0,0,0.15);
  --shadow-strong: 0 12px 24px rgba(0,0,0,0.2);
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--text-dark);
}

a {
  text-decoration: none;
  transition: var(--transition-smooth);
}

img {
  max-width: 100%;
  height: auto;
}

/* === NAVBAR STYLES === */
.navbar {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-forest) 100%) !important;
  padding: 1rem 0;
  box-shadow: var(--shadow-medium);
  transition: var(--transition-smooth);
}

.navbar.sticky-top {
  backdrop-filter: blur(10px);
}

.navbar-brand {
  font-size: 1.5rem;
  color: var(--text-light) !important;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition-smooth);
}

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

.navbar-brand .bi {
  color: var(--secondary-color) !important;
  font-size: 1.8rem;
  animation: pulse 2s infinite;
}

.navbar-dark .navbar-nav .nav-link {
  color: var(--text-light) !important;
  font-weight: 500;
  padding: 0.5rem 1.2rem !important;
  margin: 0 0.2rem;
  border-radius: 8px;
  transition: var(--transition-smooth);
  position: relative;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: var(--secondary-color) !important;
  background-color: rgba(255, 179, 0, 0.1) !important;
  transform: translateY(-2px);
}

.navbar-dark .navbar-nav .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 3px;
  background-color: var(--secondary-color);
  border-radius: 2px;
}

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

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

/* === HERO CAROUSEL === */
.hero-carousel {
  position: relative;
  margin-top: 72px;
}

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

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

.carousel-caption {
  background: linear-gradient(to top, rgba(30, 125, 50, 0.9), rgba(30, 125, 50, 0.3));
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  padding: 3rem 1rem !important;
  text-align: center;
}

.carousel-caption .display-3 {
  color: var(--text-light) !important;
  font-weight: 800;
  text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease-out;
}

.carousel-caption .lead {
  color: var(--text-light) !important;
  font-size: 1.4rem;
  font-weight: 400;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  margin-bottom: 2rem;
  animation: fadeInUp 1.2s ease-out;
}

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

.carousel-indicators button.active {
  opacity: 1 !important;
  transform: scale(1.3);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(46, 125, 50, 0.7);
  border-radius: 50%;
  padding: 2rem;
  border: 3px solid var(--secondary-color);
  transition: var(--transition-smooth);
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
  background-color: var(--primary-color);
  transform: scale(1.2);
}

/* === BUTTONS === */
.btn {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  transition: var(--transition-smooth);
  border: none;
  position: relative;
  overflow: hidden;
}

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

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

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

.btn-primary,
.btn-success {
  background: linear-gradient(135deg, var(--primary-color), var(--dark-forest)) !important;
  color: var(--text-light) !important;
  box-shadow: var(--shadow-soft);
  border: 2px solid transparent !important;
}

.btn-primary:hover,
.btn-success:hover {
  background: linear-gradient(135deg, var(--dark-forest), var(--primary-color)) !important;
  color: var(--text-light) !important;
  transform: translateY(-3px);
  box-shadow: var(--shadow-strong);
}

.btn-warning,
.btn-light {
  background: linear-gradient(135deg, var(--secondary-color), var(--warm-amber)) !important;
  color: var(--text-dark) !important;
  box-shadow: var(--shadow-soft);
  border: 2px solid transparent !important;
  font-weight: 700 !important;
}

.btn-warning:hover,
.btn-light:hover {
  background: linear-gradient(135deg, var(--ember-orange), var(--secondary-color)) !important;
  color: var(--text-light) !important;
  transform: translateY(-3px);
  box-shadow: var(--shadow-strong);
}

.btn-outline-success {
  border: 2px solid var(--primary-color) !important;
  color: var(--primary-color) !important;
  background: transparent !important;
  font-weight: 600 !important;
}

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

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

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

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

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

.my-5 {
  margin: 5rem 0 !important;
}

.my-4 {
  margin: 3rem 0 !important;
}

.display-3, .display-4, .display-5 {
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.lead {
  font-size: 1.25rem;
  color: #555;
}

/* === SERVICES SECTION === */
.services-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-forest) 100%);
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 179, 0, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.services-section::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(76, 175, 80, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite reverse;
}

.services-section .display-5 {
  color: var(--text-light) !important;
}

.services-section .lead {
  color: rgba(255, 255, 255, 0.9) !important;
}

.service-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  transition: var(--transition-smooth);
  border: 3px solid transparent;
  position: relative;
  z-index: 1;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3) !important;
  border-color: var(--secondary-color);
}

.service-card .bi {
  font-size: 3.5rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  transition: var(--transition-smooth);
}

.service-card:hover .bi {
  transform: scale(1.2) rotate(10deg);
  color: var(--ember-orange);
}

.service-card .h4 {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-card p {
  color: #666;
  line-height: 1.8;
}

/* === CTA SECTION === */
.cta-section {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--ember-orange) 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
}

.cta-section h2 {
  color: var(--text-dark) !important;
  font-weight: 800;
  text-shadow: 2px 2px 4px rgba(255,255,255,0.5);
}

.cta-section p {
  color: var(--text-dark) !important;
  font-size: 1.2rem;
  font-weight: 500;
}

/* === TESTIMONIALS SECTION === */
.testimonials-section {
  background-color: var(--background-light);
}

.testimonials-section .card {
  border-radius: 20px;
  transition: var(--transition-smooth);
  border: 2px solid transparent;
  overflow: hidden;
}

.testimonials-section .card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-strong) !important;
  border-color: var(--primary-color);
}

.testimonials-section .card-body {
  padding: 2rem;
}

.testimonials-section .bi-star-fill {
  color: var(--secondary-color);
  font-size: 1.2rem;
  margin: 0 0.1rem;
}

.testimonials-section .card-text {
  font-style: italic;
  color: #555;
  margin: 1.5rem 0;
  font-size: 1.05rem;
  line-height: 1.8;
}

.testimonials-section .h5 {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.testimonials-section .text-muted {
  color: #888 !important;
  font-size: 0.9rem;
}

/* === GALLERY STYLES === */
.filter-buttons {
  text-align: center;
  margin-bottom: 3rem;
}

.filter-btn {
  margin: 0.5rem;
  padding: 0.7rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.gallery-masonry {
  column-count: 3;
  column-gap: 1.5rem;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
}

.gallery-card:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-strong);
}

.gallery-card img {
  width: 100%;
  display: block;
  transition: var(--transition-smooth);
}

.gallery-card:hover img {
  filter: brightness(0.8);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(46, 125, 50, 0.95), transparent);
  color: var(--text-light) !important;
  padding: 2rem 1rem;
  transform: translateY(100%);
  transition: var(--transition-smooth);
}

.gallery-card:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h4 {
  color: var(--text-light) !important;
  font-weight: 700;
}

.gallery-overlay p {
  color: rgba(255, 255, 255, 0.9) !important;
}

/* === WORKSHOP CARDS === */
.workshop-card {
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition-smooth);
  border: 3px solid transparent;
  background: white;
}

.workshop-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-strong) !important;
  border-color: var(--secondary-color);
}

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

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

.workshop-card .badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.7rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 50px;
  box-shadow: var(--shadow-soft);
}

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

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

.workshop-card .card-title {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.3rem;
}

.workshop-card .card-text {
  color: #666;
  line-height: 1.8;
}

.workshop-card .bi {
  color: var(--secondary-color);
  margin-right: 0.5rem;
}

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

.accordion-button {
  background-color: var(--background-light) !important;
  color: var(--primary-color) !important;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 1.5rem;
  border: none;
  transition: var(--transition-smooth);
}

.accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, var(--primary-color), var(--light-forest)) !important;
  color: var(--text-light) !important;
  box-shadow: var(--shadow-soft);
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(46, 125, 50, 0.25) !important;
}

.accordion-button::after {
  filter: brightness(0) saturate(100%) invert(34%) sepia(74%) saturate(566%) hue-rotate(83deg) brightness(91%) contrast(91%);
}

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

.accordion-body {
  padding: 1.5rem;
  background-color: white;
  color: #555;
  line-height: 1.8;
  font-size: 1.05rem;
}

/* === FORMS === */
.form-floating {
  margin-bottom: 1.5rem;
}

.form-control,
.form-select {
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 1rem;
  font-size: 1rem;
  transition: var(--transition-smooth);
  background-color: white;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-color) !important;
  box-shadow: 0 0 0 0.25rem rgba(46, 125, 50, 0.15) !important;
  background-color: white;
}

.form-floating label {
  color: #888;
  font-weight: 500;
}

.form-check-input {
  border: 2px solid var(--primary-color);
  cursor: pointer;
  width: 1.5rem;
  height: 1.5rem;
}

.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.25rem rgba(46, 125, 50, 0.15) !important;
}

.form-check-label {
  color: #555;
  font-weight: 500;
  cursor: pointer;
  margin-left: 0.5rem;
}

/* === FOOTER === */
footer {
  background: linear-gradient(135deg, var(--dark-forest) 0%, var(--primary-color) 100%);
  color: var(--text-light) !important;
  padding: 4rem 0 2rem;
}

footer h5, footer h4 {
  color: var(--secondary-color) !important;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

footer p, footer li, footer a {
  color: rgba(255, 255, 255, 0.9) !important;
  line-height: 2;
}

footer a:hover {
  color: var(--secondary-color) !important;
  transform: translateX(5px);
}

footer .bi {
  color: var(--secondary-color) !important;
  margin-right: 0.7rem;
  font-size: 1.1rem;
}

footer .list-unstyled li {
  margin-bottom: 0.8rem;
  transition: var(--transition-smooth);
}

footer .list-unstyled li:hover {
  transform: translateX(5px);
}

.social-links a {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  border: 2px solid var(--secondary-color);
  color: var(--secondary-color) !important;
  margin: 0 0.5rem;
  transition: var(--transition-smooth);
  font-size: 1.5rem !important;
}

.social-links a:hover {
  background-color: var(--secondary-color);
  color: var(--text-dark) !important;
  transform: translateY(-5px) rotate(10deg);
  box-shadow: var(--shadow-medium);
}

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

.modal-header {
  background: linear-gradient(135deg, var(--primary-color), var(--dark-forest));
  color: var(--text-light) !important;
  padding: 1.5rem 2rem;
  border: none;
}

.modal-title {
  color: var(--text-light) !important;
  font-weight: 700;
}

.modal-body {
  padding: 2rem;
}

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

.btn-close:hover {
  transform: rotate(90deg);
}

/* === UTILITY CLASSES === */
.text-white,
.text-white-50 {
  color: var(--text-light) !important;
}

.text-white-50 {
  opacity: 0.8;
}

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

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

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

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

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

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

.position-sticky {
  position: sticky;
  top: 90px;
  z-index: 10;
}

.overflow-hidden {
  overflow: hidden;
}

.ratio-16x9 {
  position: relative;
  padding-bottom: 56.25%;
}

.ratio-16x9 iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 15px;
}

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

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(10deg);
  }
}

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

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

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

/* === RESPONSIVE DESIGN === */
@media (max-width: 1200px) {
  .gallery-masonry {
    column-count: 2;
  }
}

@media (max-width: 991px) {
  .navbar-collapse {
    background-color: rgba(27, 94, 32, 0.98);
    padding: 1.5rem;
    border-radius: 15px;
    margin-top: 1rem;
    box-shadow: var(--shadow-medium);
  }
  
  .navbar-nav .nav-link {
    padding: 0.8rem 1rem !important;
    margin: 0.3rem 0;
  }
  
  .carousel-item img {
    height: 60vh;
  }
  
  .carousel-caption .display-3 {
    font-size: 2rem;
  }
  
  .carousel-caption .lead {
    font-size: 1rem;
  }
  
  section {
    padding: 3rem 0;
  }
  
  .py-5 {
    padding: 3rem 0 !important;
  }
  
  .display-3, .display-4, .display-5 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-carousel {
    margin-top: 60px;
  }
  
  .carousel-item img {
    height: 50vh;
  }
  
  .carousel-caption {
    padding: 2rem 1rem !important;
  }
  
  .btn-lg {
    padding: 0.8rem 2rem !important;
    font-size: 1rem;
  }
  
  .gallery-masonry {
    column-count: 1;
  }
  
  .service-card {
    margin-bottom: 1.5rem;
  }
  
  .workshop-card .card-img-top {
    height: 200px;
  }
  
  .modal-dialog {
    margin: 1rem;
  }
  
  .social-links a {
    width: 45px;
    height: 45px;
    line-height: 45px;
    font-size: 1.2rem !important;
  }
  
  footer {
    text-align: center;
  }
  
  footer .text-lg-end {
    text-align: center !important;
    margin-top: 2rem;
  }
}

@media (max-width: 576px) {
  .container,
  .container-fluid {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .carousel-caption .display-3 {
    font-size: 1.5rem;
  }
  
  .carousel-caption .lead {
    font-size: 0.9rem;
  }
  
  .display-3, .display-4, .display-5 {
    font-size: 1.75rem;
  }
  
  .btn-lg {
    padding: 0.7rem 1.5rem !important;
    font-size: 0.95rem;
  }
  
  .filter-btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    margin: 0.3rem;
  }
  
  .accordion-button {
    font-size: 1rem;
    padding: 1rem;
  }
  
  .workshop-card .card-img-top {
    height: 180px;
  }
}

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

/* === ACCESSIBILITY === */
.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;
}

*:focus-visible {
  outline: 3px solid var(--secondary-color) !important;
  outline-offset: 3px !important;
}

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

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

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary-color), var(--dark-forest));
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--dark-forest), var(--primary-color));
}

/* === LOADING ANIMATION === */
.loading {
  position: relative;
  pointer-events: none;
  opacity: 0.6;
}

.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  margin: -15px 0 0 -15px;
  border: 3px solid var(--primary-color);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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