/* Forest Gold Architecture Studio - Custom CSS */

:root {
  --primary-color: #2C5F41;
  --secondary-color: #D4AF37;
  --dark-primary: #1a3a28;
  --light-primary: #3d7a59;
  --dark-gold: #b89420;
  --light-gold: #e5c85f;
  --white: #ffffff;
  --light-bg: #f8f9fa;
  --dark-text: #1a1a1a;
  --medium-text: #6c757d;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

/* Navbar Styles */
.navbar {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-primary) 100%) !important;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  padding: 1rem 0;
  box-shadow: 0 2px 20px rgba(44, 95, 65, 0.3);
}

.navbar.scrolled {
  background: rgba(44, 95, 65, 0.95) !important;
  padding: 0.5rem 0;
}

.navbar-brand {
  color: var(--secondary-color) !important;
  font-size: 1.8rem;
  font-weight: 700 !important;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

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

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25) !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='%23D4AF37' 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.9) !important;
  font-weight: 500;
  padding: 0.5rem 1.2rem !important;
  margin: 0 0.2rem;
  transition: all 0.3s ease;
  position: relative;
  border-radius: 5px;
}

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

.nav-link:hover {
  color: var(--secondary-color) !important;
  background: rgba(212, 175, 55, 0.1);
  transform: translateY(-2px);
}

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

.nav-link.active {
  color: var(--secondary-color) !important;
  background: rgba(212, 175, 55, 0.15);
  font-weight: 600 !important;
}

/* Hero Section */
.position-relative {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--dark-primary) 0%, var(--primary-color) 50%, var(--light-primary) 100%);
  overflow: hidden;
}

.position-relative::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="%23D4AF37" fill-opacity="0.05"%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;
  animation: backgroundScroll 60s linear infinite;
}

@keyframes backgroundScroll {
  0% { transform: translate(0, 0); }
  100% { transform: translate(60px, 60px); }
}

.text-white {
  color: var(--white) !important;
  position: relative;
  z-index: 2;
}

.display-2, .display-3, .display-4, .display-5 {
  font-weight: 700 !important;
  line-height: 1.2;
  animation: fadeInUp 1s ease;
}

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

.lead {
  font-size: 1.25rem;
  font-weight: 300;
  opacity: 0.95;
  animation: fadeInUp 1s ease 0.2s both;
}

/* Buttons */
.btn {
  font-weight: 600 !important;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

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

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

.btn-lg {
  background: var(--secondary-color) !important;
  color: var(--dark-primary) !important;
  border-color: var(--secondary-color) !important;
  padding: 1rem 2.5rem !important;
  font-size: 1.1rem !important;
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-lg:hover {
  background: var(--dark-gold) !important;
  border-color: var(--dark-gold) !important;
  color: var(--white) !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

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

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

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

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

/* Cards */
.card {
  border: none !important;
  border-radius: 15px;
  transition: all 0.4s ease;
  overflow: hidden;
  background: var(--white);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(44, 95, 65, 0.2) !important;
}

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

.shadow-lg {
  box-shadow: 0 10px 30px rgba(44, 95, 65, 0.15) !important;
}

.shadow {
  box-shadow: 0 5px 20px rgba(44, 95, 65, 0.1) !important;
}

.shadow-sm {
  box-shadow: 0 2px 10px rgba(44, 95, 65, 0.08) !important;
}

/* Forms */
.form-control, .form-select {
  border: 2px solid #e0e0e0 !important;
  border-radius: 8px !important;
  padding: 0.75rem 1rem !important;
  transition: all 0.3s ease;
  background: var(--white) !important;
  color: var(--dark-text) !important;
}

.form-control:focus, .form-select:focus {
  border-color: var(--secondary-color) !important;
  box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.15) !important;
  background: var(--white) !important;
}

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

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

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

.input-group {
  border-radius: 8px;
  overflow: hidden;
}

/* Icons */
.bi {
  transition: all 0.3s ease;
}

.bi-house-door, .bi-cup-hot, .bi-flower1, .bi-easel, .bi-compass, .bi-heart-pulse,
.bi-star-fill, .bi-facebook, .bi-instagram, .bi-twitter, .bi-linkedin,
.bi-geo-alt, .bi-telephone, .bi-envelope, .bi-send, .bi-snow, .bi-shop,
.bi-water, .bi-bicycle, .bi-calendar-check, .bi-images, .bi-stars, .bi-rulers,
.bi-people, .bi-door-open, .bi-sunset, .bi-check2, .bi-eye, .bi-tree,
.bi-layout-split, .bi-clock-history, .bi-shield-check, .bi-percent,
.bi-info-circle, .bi-wifi, .bi-quote, .bi-check-circle-fill,
.bi-person-workspace, .bi-car-front, .bi-house-heart, .bi-snow2,
.bi-telephone-fill, .bi-envelope-fill, .bi-geo-alt-fill {
  color: var(--secondary-color);
  font-size: 2.5rem;
}

.bi:hover {
  transform: scale(1.1) rotate(5deg);
  color: var(--dark-gold);
}

/* Section Backgrounds */
.bg-white {
  background: var(--white) !important;
}

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

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

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

/* Text Colors */
.text-white {
  color: var(--white) !important;
}

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

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

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

/* Images */
.img-fluid {
  max-width: 100%;
  height: auto;
  transition: all 0.4s ease;
}

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

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

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

.card-img-top {
  height: 250px;
  object-fit: cover;
  transition: all 0.4s ease;
}

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

.overflow-hidden {
  overflow: hidden !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%;
}

/* Lists */
.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.list-unstyled li {
  padding: 0.5rem 0;
  transition: all 0.3s ease;
}

.list-unstyled li:hover {
  padding-left: 10px;
  color: var(--secondary-color);
}

/* Links */
a {
  color: var(--secondary-color) !important;
  text-decoration: none;
  transition: all 0.3s ease;
}

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

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

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

/* Badges */
.badge {
  background: var(--secondary-color) !important;
  color: var(--dark-primary) !important;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
}

/* Alerts */
.alert {
  border-radius: 10px;
  border: none;
  padding: 1.25rem;
  animation: slideInDown 0.5s ease;
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Sticky Elements */
.sticky-top {
  position: sticky !important;
  top: 0;
  z-index: 1020;
}

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

.fixed-top {
  position: fixed !important;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

/* Positioning */
.position-relative {
  position: relative !important;
}

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

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

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

.top-50 {
  top: 50% !important;
}

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

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

/* Borders */
.border-0 {
  border: 0 !important;
}

.border-top {
  border-top: 1px solid rgba(44, 95, 65, 0.1) !important;
}

/* Opacity */
.opacity-75 {
  opacity: 0.75 !important;
}

/* Font Styles */
.fst-italic {
  font-style: italic !important;
}

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

.fs-1 {
  font-size: calc(1.375rem + 1.5vw) !important;
}

.fs-4 {
  font-size: calc(1.275rem + 0.3vw) !important;
}

.fs-5 {
  font-size: 1.25rem !important;
}

.h5 {
  font-size: 1.25rem !important;
  font-weight: 600;
}

.h6 {
  font-size: 1rem !important;
  font-weight: 600;
}

.small {
  font-size: 0.875rem !important;
}

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

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

/* Spacing Utilities */
.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; }
.mt-1 { margin-top: 0.25rem !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; }
.ms-2 { margin-left: 0.5rem !important; }
.ms-4 { margin-left: 1.5rem !important; }
.ms-auto { margin-left: auto !important; }
.me-1 { margin-right: 0.25rem !important; }
.me-2 { margin-right: 0.5rem !important; }
.me-3 { margin-right: 1rem !important; }
.my-4 { margin-top: 1.5rem !important; margin-bottom: 1.5rem !important; }
.my-5 { margin-top: 3rem !important; margin-bottom: 3rem !important; }
.mx-auto { margin-left: auto !important; margin-right: auto !important; }

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

/* Gaps */
.gap-3 {
  gap: 1rem !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;
}

/* Flexbox */
.d-flex {
  display: flex !important;
}

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

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

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

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

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

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

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

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

.justify-content-end {
  justify-content: flex-end !important;
}

/* Width & Height */
.w-100 {
  width: 100% !important;
}

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

/* Text Alignment */
.text-center {
  text-align: center !important;
}

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

/* Social Media Icons */
.bi-facebook, .bi-instagram, .bi-twitter, .bi-linkedin {
  font-size: 1.5rem !important;
  color: var(--white) !important;
  transition: all 0.3s ease;
}

.bi-facebook:hover {
  color: #1877f2 !important;
  transform: scale(1.2);
}

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

.bi-twitter:hover {
  color: #1da1f2 !important;
  transform: scale(1.2);
}

.bi-linkedin:hover {
  color: #0077b5 !important;
  transform: scale(1.2);
}

/* Footer Specific */
footer {
  background: linear-gradient(135deg, var(--dark-primary) 0%, var(--primary-color) 100%);
  color: var(--white);
}

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

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

footer .bi-geo-alt, footer .bi-telephone, footer .bi-envelope {
  font-size: 1.2rem !important;
  color: var(--secondary-color) !important;
}

/* Animation Classes */
.fade-in {
  animation: fadeIn 0.8s ease;
}

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

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

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

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

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

.zoom-in {
  animation: zoomIn 0.6s ease;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Hover Effects */
.hover-lift {
  transition: all 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(44, 95, 65, 0.2);
}

.hover-grow {
  transition: all 0.3s ease;
}

.hover-grow:hover {
  transform: scale(1.05);
}

/* Responsive Design - Mobile First */
@media (max-width: 575.98px) {
  .display-2 {
    font-size: 2.5rem !important;
  }
  
  .display-3 {
    font-size: 2rem !important;
  }
  
  .display-4 {
    font-size: 1.75rem !important;
  }
  
  .display-5 {
    font-size: 1.5rem !important;
  }
  
  .btn-lg {
    padding: 0.75rem 1.5rem !important;
    font-size: 1rem !important;
  }
  
  .py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  
  .navbar-brand {
    font-size: 1.4rem;
  }
  
  .nav-link {
    padding: 0.75rem 1rem !important;
  }
  
  .card-body {
    padding: 1.5rem !important;
  }
  
  .bi {
    font-size: 2rem !important;
  }
  
  .lead {
    font-size: 1.1rem;
  }
}

@media (min-width: 576px) {
  .flex-sm-row {
    flex-direction: row !important;
  }
  
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
}

@media (min-width: 768px) {
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.333333%;
  }
  
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.666667%;
  }
  
  .text-md-start {
    text-align: left !important;
  }
  
  .text-md-end {
    text-align: right !important;
  }
  
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
}

@media (min-width: 992px) {
  .navbar-expand-lg {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  
  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }
  
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
  }
  
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
  
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.666667%;
  }
  
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.333333%;
  }
  
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.666667%;
  }
  
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.333333%;
  }
  
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.666667%;
  }
  
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.333333%;
  }
  
  .offset-lg-1 {
    margin-left: 8.333333%;
  }
  
  .offset-lg-2 {
    margin-left: 16.666667%;
  }
  
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  
  .pe-lg-0 {
    padding-right: 0 !important;
  }
  
  .ps-lg-5 {
    padding-left: 3rem !important;
  }
  
  .order-lg-1 {
    order: 1 !important;
  }
  
  .order-lg-2 {
    order: 2 !important;
  }
  
  .text-lg-end {
    text-align: right !important;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

/* Column System */
.col, .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12 {
  position: relative;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x, 1.5rem) * 0.5);
  padding-left: calc(var(--bs-gutter-x, 1.5rem) * 0.5);
}

.col-4 {
  flex: 0 0 auto;
  width: 33.333333%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.666667%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

/* Container */
.container, .container-fluid {
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
}

.container-fluid {
  max-width: 100%;
}

/* Row */
.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}

.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 10px;
}

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

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

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

/* Loading Animation */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  border-top-color: var(--secondary-color);
  animation: spin 1s ease-in-out infinite;
}

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

/* Disabled State */
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Focus Visible */
*:focus-visible {
  outline: 2px solid var(--secondary-color);
  outline-offset: 2px;
}

/* Selection Color */
::selection {
  background: var(--secondary-color);
  color: var(--dark-primary);
}

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

/* Print Styles */
@media print {
  .navbar, .btn, footer {
    display: none;
  }
  
  body {
    color: #000;
  }
  
  a {
    text-decoration: underline;
  }
}