/* Nordic Forest Ember - Architectural Studio Theme */

:root {
  --primary-color: #1B5E20;
  --secondary-color: #FF6F00;
  --primary-light: #2E7D32;
  --primary-dark: #0D3E10;
  --secondary-light: #FF8F00;
  --secondary-dark: #E65100;
  --forest-green: #1B5E20;
  --ember-orange: #FF6F00;
  --warm-white: #FFF8F0;
  --dark-charcoal: #2C2C2C;
  --light-gray: #F5F5F5;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary-dark);
}

/* Navigation Styles */
.navbar {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%) !important;
  padding: 1rem 0;
  box-shadow: 0 4px 20px rgba(27, 94, 32, 0.3);
  transition: var(--transition-smooth);
  backdrop-filter: blur(10px);
  z-index: 1050;
}

.navbar.scrolled {
  padding: 0.5rem 0;
  background: rgba(27, 94, 32, 0.95) !important;
}

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

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

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

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

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

.navbar-dark .navbar-nav .nav-link:hover::after,
.navbar-dark .navbar-nav .nav-link.active::after {
  width: 80%;
}

.navbar-dark .navbar-nav .nav-link.active {
  color: var(--secondary-color) !important;
  background: rgba(255, 111, 0, 0.15);
  font-weight: 600;
}

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

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 111, 0, 0.25);
}

.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='%23FF6F00' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Hero Video Section */
.hero-video-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
  overflow: hidden;
  padding-top: 76px;
}

.hero-video-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  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="%23FF6F00" 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: patternMove 60s linear infinite;
}

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

.hero-video-section .position-absolute.w-100.h-100 {
  background: linear-gradient(135deg, rgba(27, 94, 32, 0.85) 0%, rgba(255, 111, 0, 0.3) 100%);
  z-index: 1;
}

.hero-video-section .container {
  position: relative;
  z-index: 2;
}

.hero-video-section .display-1 {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 800;
  color: var(--warm-white) !important;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease-out;
  letter-spacing: 2px;
}

.hero-video-section .lead {
  color: rgba(255, 255, 255, 0.95) !important;
  font-size: clamp(1rem, 3vw, 1.5rem);
  font-weight: 400;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
  animation: fadeInUp 1s ease-out 0.3s both;
  max-width: 800px;
  margin: 0 auto;
}

.hero-video-section .fs-2 {
  color: var(--secondary-color) !important;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease-out 0.6s both;
}

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

/* Buttons */
.btn {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition-smooth);
  border: none;
  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 {
  padding: 1rem 2.5rem !important;
  font-size: 1.1rem;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

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

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

.btn-outline-success:hover {
  background: var(--primary-color) !important;
  color: var(--warm-white) !important;
  border-color: var(--primary-color) !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(27, 94, 32, 0.4);
}

.btn-outline-dark {
  border: 3px solid var(--dark-charcoal) !important;
  color: var(--dark-charcoal) !important;
  background: transparent;
}

.btn-outline-dark:hover {
  background: var(--dark-charcoal) !important;
  color: var(--warm-white) !important;
  border-color: var(--dark-charcoal) !important;
  transform: translateY(-3px);
}

.btn-secondary {
  background: var(--secondary-color) !important;
  color: var(--warm-white) !important;
  border: none;
}

.btn-secondary:hover {
  background: var(--secondary-dark) !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 111, 0, 0.4);
}

.bi-chevron-down {
  font-size: 2rem;
  animation: bounce 2s infinite;
  color: var(--warm-white) !important;
  cursor: pointer;
}

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

/* Cards */
.card {
  border: none !important;
  border-radius: 20px;
  transition: var(--transition-smooth);
  overflow: hidden;
  background: white;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(27, 94, 32, 0.2);
}

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

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

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

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

.card-text {
  color: var(--dark-charcoal);
  font-size: 1rem;
  line-height: 1.6;
}

.card-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%) !important;
  color: var(--warm-white) !important;
  border: none !important;
  font-weight: 700;
  padding: 1.5rem !important;
}

/* Icons */
.bi {
  transition: var(--transition-smooth);
}

.bi-lightning-charge-fill,
.bi-fire,
.bi-trophy-fill,
.bi-person-check-fill,
.bi-people-fill,
.bi-heart-pulse-fill {
  font-size: 3rem;
  color: var(--secondary-color) !important;
  margin-bottom: 1rem;
  display: inline-block;
  animation: iconPulse 2s ease-in-out infinite;
}

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

.bi-check-circle-fill {
  color: var(--primary-color) !important;
  font-size: 1.5rem;
  margin-right: 0.5rem;
}

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

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

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

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

.bg-success {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%) !important;
  color: var(--warm-white) !important;
}

/* Images */
.img-fluid {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
}

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

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

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

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

.shadow {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.shadow-sm {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08) !important;
}

.shadow-lg {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15) !important;
}

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

/* Display Typography */
.display-1 {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
}

.display-3 {
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--primary-color) !important;
  margin-bottom: 2rem;
}

.display-4 {
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--primary-color) !important;
}

.display-5 {
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-weight: 700;
}

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

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

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

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

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

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

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-color) !important;
  box-shadow: 0 0 0 0.25rem rgba(27, 94, 32, 0.15) !important;
  outline: none;
}

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

/* Badges */
.badge {
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.875rem;
}

/* Alerts */
.alert {
  border: none;
  border-radius: 15px;
  padding: 1.5rem;
  font-weight: 500;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.alert-warning {
  background: linear-gradient(135deg, var(--secondary-light) 0%, var(--secondary-color) 100%) !important;
  color: white !important;
}

.alert-info {
  background: linear-gradient(135deg, #00ACC1 0%, #0097A7 100%) !important;
  color: white !important;
}

.alert-success {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%) !important;
  color: white !important;
}

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

.accordion-header {
  margin-bottom: 0;
}

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

.accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%) !important;
  color: white !important;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(27, 94, 32, 0.15);
  border: none;
}

.accordion-button::after {
  filter: brightness(0) saturate(100%) invert(25%) sepia(85%) saturate(1024%) hue-rotate(88deg) brightness(91%) contrast(93%);
}

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

.accordion-body {
  padding: 1.5rem;
  background: white;
  color: var(--dark-charcoal);
  line-height: 1.8;
}

/* Modal */
.modal-content {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  color: white;
  border: none;
  padding: 1.5rem 2rem;
}

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

.modal-body {
  padding: 2rem;
}

.modal-footer {
  border: none;
  padding: 1.5rem 2rem;
  background: var(--light-gray);
}

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

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

/* Table */
.table {
  border-radius: 15px;
  overflow: hidden;
}

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

.table-hover tbody tr:hover {
  background-color: rgba(27, 94, 32, 0.05);
  transform: scale(1.01);
}

.table-responsive {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Carousel */
.carousel-item {
  transition: transform 0.6s ease-in-out;
}

.carousel-control-prev,
.carousel-control-next {
  width: 5%;
  opacity: 0.8;
}

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

.carousel-indicators {
  margin-bottom: 2rem;
}

.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--secondary-color);
}

/* Filter Buttons */
.filter-btn {
  background: white;
  color: var(--primary-color) !important;
  border: 2px solid var(--primary-color) !important;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  transition: var(--transition-smooth);
  margin: 0.5rem;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-color) !important;
  color: white !important;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(27, 94, 32, 0.3);
}

/* Membership Card */
.membership-card {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  color: white;
  border: none;
  position: relative;
  overflow: hidden;
}

.membership-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

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

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

/* Utility Classes */
.opacity-10 {
  opacity: 0.1 !important;
}

.opacity-90 {
  opacity: 0.9 !important;
}

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

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

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

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

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

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

.border {
  border: 2px solid #e0e0e0 !important;
}

.border-bottom {
  border-bottom: 2px solid #e0e0e0 !important;
}

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

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

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

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

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

/* Animations */
@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 {
  animation: fadeIn 1s ease-out;
}

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

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

/* Hover Effects */
.hover-lift {
  transition: var(--transition-smooth);
}

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

/* Link Styles */
a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition-smooth);
}

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

/* Footer Links */
footer a {
  color: rgba(255, 255, 255, 0.8) !important;
  transition: var(--transition-smooth);
}

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

/* Responsive Design */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(27, 94, 32, 0.98);
    padding: 1rem;
    border-radius: 15px;
    margin-top: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }
  
  .navbar-dark .navbar-nav .nav-link {
    margin: 0.5rem 0;
    padding: 0.75rem 1rem !important;
  }
  
  .display-1 {
    font-size: 2.5rem;
  }
  
  .display-3 {
    font-size: 2rem;
  }
  
  .display-4 {
    font-size: 1.8rem;
  }
  
  .py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  
  .btn-lg {
    padding: 0.875rem 2rem !important;
    font-size: 1rem;
  }
  
  .card-body {
    padding: 1.5rem !important;
  }
  
  .position-sticky {
    position: relative !important;
    top: 0 !important;
  }
}

@media (max-width: 767.98px) {
  .hero-video-section .display-1 {
    font-size: 2rem;
  }
  
  .hero-video-section .lead {
    font-size: 1rem;
  }
  
  .hero-video-section .fs-2 {
    font-size: 1.2rem !important;
  }
  
  .btn-lg {
    padding: 0.75rem 1.5rem !important;
    font-size: 0.9rem;
  }
  
  .navbar-brand {
    font-size: 1.5rem;
  }
  
  .card-img-top {
    height: 200px;
  }
  
  .bi-lightning-charge-fill,
  .bi-fire,
  .bi-trophy-fill,
  .bi-person-check-fill,
  .bi-people-fill,
  .bi-heart-pulse-fill {
    font-size: 2rem;
  }
}

@media (max-width: 575.98px) {
  .hero-video-section .display-1 {
    font-size: 1.75rem;
  }
  
  .display-3 {
    font-size: 1.5rem;
  }
  
  .py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  
  .modal-dialog {
    margin: 0.5rem;
  }
  
  .modal-body {
    padding: 1.5rem;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .btn,
  .modal,
  .carousel-control-prev,
  .carousel-control-next,
  .navbar-toggler {
    display: none !important;
  }
  
  body {
    background: white;
    color: black;
  }
  
  .card {
    box-shadow: none;
    border: 1px solid #ddd !important;
  }
}

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

.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;
}

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

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

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

/* Selection */
::selection {
  background: var(--secondary-color);
  color: white;
}

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

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

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

/* Class Card Specific */
.class-card {
  transition: var(--transition-smooth);
  cursor: pointer;
  border-left: 5px solid var(--secondary-color) !important;
}

.class-card:hover {
  border-left-color: var(--primary-color) !important;
  background: var(--light-gray);
}

/* Social Media Icons */
.bi-instagram,
.bi-facebook,
.bi-youtube,
.bi-tiktok {
  font-size: 1.5rem;
  color: white !important;
  transition: var(--transition-smooth);
}

.bi-instagram:hover {
  color: #E4405F !important;
}

.bi-facebook:hover {
  color: #1877F2 !important;
}

.bi-youtube:hover {
  color: #FF0000 !important;
}

.bi-tiktok:hover {
  color: #00F2EA !important;
}

/* Custom Utilities */
.text-ember {
  color: var(--secondary-color) !important;
}

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

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

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

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

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