:root {
  --primary-color: #c90511; /* Vibrant red for accents */
  --secondary-color: #efece7; /* Light beige for secondary elements */
  --text-color: #c90511; /* Darker text for better contrast in light theme */
  --background-color: #efece7; /* Light beige background */
}

[data-theme="dark"] {
  --primary-color: #a3000b; /* Muted red for accents, distinct from background */
  --secondary-color: #fff; /* White for secondary elements */
  --text-color: #fff; /* White for text */
  --background-color: #212121; /* Soft charcoal */
}

/* Utility Classes */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

* {
  font-family: "Montserrat", sans-serif;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

/* Typography System */
/* Oswald for headings, titles, navigation, and prominent text */
h1, h2, h3, h4, h5, h6,
header nav a,
.title,
.video-title,
.shorts-card-title,
button,
.btn,
nav a,
.menu-item,
.logo-text,
.brand-name {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Montserrat for body text, paragraphs, and readable content */
p, span, article, section,
input, textarea, select, label,
.description, .content, .text {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  line-height: 1.6;
}

/* Specific heading weights for better hierarchy */
h1 {
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.2;
}

h2 {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.3;
}

h3 {
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.3;
}

h4 {
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.4;
}

h5, h6 {
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.4;
}

/* Navigation and UI elements */
header nav a,
nav a,
.menu-item {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Form elements with better typography */
input, textarea, select {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
}

/* Button styling with Oswald */
button, .btn {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Responsive typography */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  h4 {
    font-size: 1.125rem;
  }
  
  /* Adjust paragraph size for mobile readability */
  p {
    font-size: 0.95rem;
    line-height: 1.7;
  }
}

/* Allow text selection for form inputs and textareas */
input,
textarea,
select {
  user-select: text;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
}

/* Loading Spinner Animations */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.loader-spinner {
  animation: spin 1s linear infinite;
}

#videoLoader,
#exhibitionLoader,
#shortsLoader {
  transition: opacity 0.3s ease;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
  z-index: 15;
}

/* Video/Exhibition/Shorts Card Loading States */
.video-card,
.shorts-card {
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.video-card.loaded,
.shorts-card.loaded {
  opacity: 1;
}

/* Swiper slides should always be visible */
.swiper-slide {
  opacity: 1 !important;
}

/* Gallery loader fix */
#loader {
  z-index: 60;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  height: 100vh;
  overflow-x: hidden;
  max-width: 100vw;
}

/* Base Styles */
body {
  background-color: var(--background-color);
  color: var(--text-color);
  transition: background-color 0.3s ease, color 0.3s ease;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  height: 100vh;
  max-width: 100vw;
}

/* AOS Animation Fixes */
/* Only apply fallback styles when AOS fails to load */
.aos-fallback [data-aos] {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  transition: all 0.6s ease;
}

/* Ensure AOS can work properly by not overriding its styles */
[data-aos] {
  transition-duration: 1000ms;
  transition-timing-function: ease;
}

/* Only use fallback when explicitly needed */
.aos-disabled [data-aos] {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

/* Ensure all sections respect viewport width */
section {
  max-width: 100vw;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  display: none;
}

/* Header */

header a {
  position: relative;
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.4s ease;
}

header nav a::after {
  content: "";
  position: absolute;
  left: -5%;
  bottom: -4px; /* space between text and underline */
  width: 110%; /* make it slightly wider than the text */
  height: 1px;
  background-color: white;
  opacity: 0;
  transition: opacity 0.4s ease;
}

header a:hover::after {
  opacity: 1;
}

header nav {
  display: flex;
  width: 50%;
  justify-content: space-between;
  align-items: center;
}

/* Hero Section */
#hero {
  display: flex;
  align-items: center;
  height: 100vh;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.title {
  font-size: 64px;
  width: 70%;
  margin: 0 auto;
  color: black;
  font-weight: 700;
  border-bottom: 4px solid var(--primary-color);
}

.bottom-left-text {
  left: 20px;
}

.bottom-right-text {
  right: 20px;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(20, 0, 0, 0.2);
  z-index: 1;
}

.writing-vertical {
  writing-mode: vertical-rl;
  text-orientation: sideways-left;
}

#projectGrid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(auto-fit, minmax(0, auto));
  width: 100%;
  height: auto;
}

.gallery-card {
  width: 100%;
  height: 50vh;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s linear;
}

.gallery-card:hover img {
  transform: scale(1.05);
}

.gallery-card .overlay-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 1),
    rgba(0, 0, 0, 0.2)
  ); /* Darker black fading to transparent */
  padding: 20px 10px 10px;
  transition: opacity 0.3s ease;
  text-align: center;
}

.gallery-card .overlay-bar p {
  color: white;
  font-weight: bold;
  font-size: 16px;
  margin: 0;
}

.gallery-card:hover .overlay-bar {
  opacity: 0.9;
}

/* Brands Animation */
@keyframes scrollBrands {
  0% {
    transform: translateX(calc(var(--drag-offset, 0px) + 0%));
  }
  100% {
    transform: translateX(calc(var(--drag-offset, 0px) - 50%));
  }
}

.brands-wrapper {
  width: 100%;
  overflow: hidden;
  cursor: grab;
  user-select: none;
}

.brands-wrapper.dragging {
  cursor: grabbing;
}

#brandsContainer {
  display: flex;
  align-items: center;
  animation: scrollBrands 60s linear infinite;
  will-change: transform;
  --drag-offset: 0px;
}

/* Loading Overlay */
#loadingOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--background-color);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}

#loadingOverlay.hidden {
  opacity: 0;
  pointer-events: none;
}

/* Logo Animation */
@keyframes pulse-logo {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1);
  }
}

.animate-pulse-logo {
  animation: pulse-logo 1.5s ease-in-out infinite;
}

/* Consolidated Media Queries */
@media (min-width: 768px) {
  #projectGrid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    height: 100vh;
  }

  .gallery-card {
    height: 100%;
  }

  .content h1 {
    font-size: 120px;
  }
}

@media (max-width: 768px) {
  header a {
    font-size: 12px;
    margin: 5px;
  }

  #hero {
    display: flex;
    flex-direction: column;
  }

  .switch-container {
    bottom: 60px;
    right: 30px;
    left: auto;
    transform: translateX(0);
  }

  .content h1 {
    font-size: 60px;
  }

  .bottom-left-text,
  .bottom-right-text {
    position: relative;
    width: 100%;
    bottom: 10px;
    font-size: 12px;
    text-align: center;
  }

  .bottom-right-text {
    margin-top: 30px;
  }
}

/* Go to Top Button */
.go-to-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(201, 5, 17, 0.3);
  transition: all 0.3s ease;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.go-to-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.go-to-top-btn:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(201, 5, 17, 0.4);
}

.go-to-top-btn:active {
  transform: translateY(-1px);
}

/* Mobile styles for go-to-top button */
@media (max-width: 768px) {
  .go-to-top-btn {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 16px;
  }

  /* Override h-screen on mobile - let sections fit content naturally */
  section.h-screen,
  .h-screen {
    height: auto !important;
    min-height: auto !important;
  }

  /* Ensure proper spacing on mobile */
  section {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

/* ===== 3D VIDEO CAROUSEL STYLES (fixed) ===== */
.myVideoSwiper,
.myVideoSwiper .swiper-wrapper {
  height: 100%;
}

.myVideoSwiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  /* let Swiper compute width, don't hard-set it */
  width: auto;
  height: 100%;
}

/* Card fills most of the available height, keeps 16:9 */
.video-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.05)
  );
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
    0 2px 16px rgba(255, 255, 255, 0.1) inset;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 9;
}

.video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Title only */
.video-info {
  color: #fff;
  transform: none;
  position: absolute;
  top: 10px;
  left: 15px;
  text-align: center;
}
.video-title {
  font-weight: 400;
  font-size: 16px;
}

.video-play-button {
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  background-color: var(--primary-color);
  position: absolute;
  width: 40px;
  height: 40px;
}

.swiper-pagination {
  display: none !important;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .myVideoSwiper {
    padding: 30px;
  }

  .video-card {
    aspect-ratio: none;
  }

  .custom-button-prev,
  .custom-button-next {
    display: none !important;
  }
}

/* Mobile text fixes for video carousel */
@media (max-width: 640px) {
  .myVideoSwiper .swiper-slide h3 {
    font-size: 1.125rem !important; /* text-lg instead of text-2xl */
    line-height: 1.4 !important;
    margin-bottom: 0.25rem !important;
  }

  .myVideoSwiper .swiper-slide p {
    font-size: 0.75rem !important; /* text-xs instead of text-sm */
    opacity: 0.9 !important;
  }

  .myVideoSwiper .swiper-slide .p-6 {
    padding: 1rem !important; /* Reduce padding */
  }
}

/* Extra small screens for video carousel */
@media (max-width: 480px) {
  .myVideoSwiper .swiper-slide h3 {
    font-size: 1rem !important; /* Even smaller for very small screens */
    margin-bottom: 0.125rem !important;
  }

  .myVideoSwiper .swiper-slide p {
    font-size: 0.6875rem !important; /* Slightly smaller text */
  }

  .myVideoSwiper .swiper-slide .p-6 {
    padding: 0.75rem !important; /* Further reduce padding */
  }
}

.myShortsSwiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  /* let Swiper compute width, don't hard-set it */
  width: auto;
  height: 100%;
  overflow: hidden;
}

.shorts-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 9/16;
}

.shorts-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shorts-card-title {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  text-align: left;
  line-height: 1.2;
  position: absolute;
  top: 15px;
  left: 15px;
}

.shorts-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(201, 5, 17, 0.9);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  opacity: 0.9;
}

.shorts-card:hover .shorts-play-button {
  transform: translate(-50%, -50%) scale(1.1);
  background: rgba(201, 5, 17, 1);
}

.shorts-play-button svg {
  color: white;
  width: 24px;
  height: 24px;
  margin-left: 2px;
}

/* Shorts navigation buttons */
.shorts-button-prev,
.shorts-button-next {
  background: rgba(255, 255, 255, 0.9) !important;
  color: rgba(0, 0, 0, 0.8) !important;
  border: 2px solid rgba(0, 0, 0, 0.1) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
  transition: all 0.3s ease !important;
}

/* Mobile responsiveness for shorts */
@media (max-width: 1024px) {
  .myShortsSwipe {
    padding: 50px;
  }

  .shorts-card {
    width: 60%;
  }

  .shorts-button-prev,
  .shorts-button-next {
    display: none !important;
  }
}

/* Exhibition Section - Coverflow Swiper */
.myExhibitionSwiper {
  width: 100%;
  height: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
}

.myExhibitionSwiper .swiper-slide {
  background-position: center;
  background-size: cover;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.myExhibitionSwiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.myExhibitionSwiper .swiper-slide:hover img {
  transform: scale(1.05);
}

/* Exhibition Navigation Buttons */
.exhibition-button-prev,
.exhibition-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.25rem;
}

.exhibition-button-prev {
  left: 1rem;
}

.exhibition-button-next {
  right: 1rem;
}

.exhibition-button-prev:hover,
.exhibition-button-next:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(1.1);
}

/* Exhibition Pagination */
.myExhibitionSwiper .swiper-pagination {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
}

.myExhibitionSwiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  margin: 0 6px;
}

.myExhibitionSwiper .swiper-pagination-bullet-active {
  background: white;
}

/* Mobile Responsive Exhibition */
@media (max-width: 1024px) {
  .myExhibitionSwiper {
    padding: 40px;
  }

  .exhibition-button-prev,
  .exhibition-button-next {
    display: none !important;
  }
}

/* Gallery Overlay */

#galleryOverlay {
  display: none;
  backdrop-filter: blur(4px);
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  z-index: 1000;
}

/* When gallery overlay is open, prevent body scroll */
body.gallery-open {
  position: fixed !important;
  width: 100% !important;
  overflow: hidden !important;
}

/* Ensure the gallery grid is the only scrollable element */

/* ===== Overlay (grid) ===== */
#galleryOverlay {
  display: none;
  background-color: rgba(0, 0, 0, 0.6);
  position: fixed !important;
  inset: 0 !important;
  z-index: 1000;
}

body.gallery-open {
  position: fixed !important;
  width: 100% !important;
  overflow: hidden !important;
}

/* Grid layout: 4 per row desktop, 2 per row mobile */
#galleryGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 100vh;
  max-height: 100vh;
  overflow-y: scroll !important;
  overflow-x: hidden !important;
  contain: layout paint size;
  -webkit-overflow-scrolling: touch;
  will-change: transform;
  transform: translateZ(0);
  overscroll-behavior: contain;
  touch-action: auto;
}

#galleryGrid img {
  width: 100%;
  height: 300px; /* uniform size */
  object-fit: cover; /* crop to fill */
  -webkit-user-drag: none;
  pointer-events: auto;
  cursor: zoom-in;
  transition: opacity .2s ease;
}

/* Close button (grid overlay) */
#closeGallery {
  position: fixed;
  top: 8px;
  right: 8px;
  z-index: 1060;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.55);
  border-radius: 999px;
  border: none;
  cursor: pointer;
}
#closeGallery:hover {
  background: rgba(0, 0, 0, 0.75);
}

/* Mobile: 2 columns */
@media (max-width: 640px) {
  #galleryGrid {
    grid-template-columns: repeat(2, 1fr);
  }
  #galleryGrid img {
    width: 100%;
    height: 200px; /* uniform size */
    object-fit: cover; /* crop to fill */
    -webkit-user-drag: none;
    pointer-events: auto;
    transition: opacity 0.2s ease, filter 0.2s ease;
    cursor: zoom-in;
  }
}

/* ===== Lightbox (Swiper) ===== */
#lightboxOverlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000; /* above grid overlay */
  background: rgba(0, 0, 0, 0.9);
}

#lightboxSwiper{
  height: 100vh;
}

/* center slide content */
#lightboxOverlay .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

#lightboxOverlay,
#galleryOverlay,
#galleryGrid {
  overscroll-behavior: contain;
  touch-action: pan-y pinch-zoom;  /* allow vertical scroll + pinch */
  -webkit-overflow-scrolling: touch;
}

#lightboxOverlay .swiper-slide img {
  width: 90vw;
  height: 90vh;
  object-fit: contain;
  -webkit-user-drag: none;
  user-select: none;
}

/* close button for lightbox */
#closeLightbox {
  position: fixed;
  top: 8px;
  right: 8px;
  z-index: 2060;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.55);
  border-radius: 999px;
  border: none;
  cursor: pointer;
}
#closeLightbox:hover {
  background: rgba(0, 0, 0, 0.75);
}

/* Swiper nav arrows – show on desktop only */
#lightboxOverlay .swiper-button-next,
#lightboxOverlay .swiper-button-prev {
  color: #fff;
  opacity: 0.9;
  transition: transform 0.2s ease;
  z-index: 2050;
}
#lightboxOverlay .swiper-button-next:hover,
#lightboxOverlay .swiper-button-prev:hover {
  transform: scale(1.1);
}

@media (max-width: 640px) {
  #lightboxOverlay .swiper-button-next,
  #lightboxOverlay .swiper-button-prev {
    display: none; /* swipe on mobile */
  }
}

/* prevent background scroll while lightbox open */
body.lightbox-open {
  position: fixed !important;
  width: 100% !important;
  overflow: hidden !important;
}

/* ===== NAVIGATION AND SCROLL FIXES ===== */
/* Offset for fixed header navigation */
section {
  scroll-margin-top: 70px; /* Desktop header: py-3 (24px) + h-12 (48px) + buffer (18px) */
}

/* Mobile header offset */
@media (max-width: 767px) {
  section {
    scroll-margin-top: 55px; /* Mobile header: py-3 (24px) + text height (~36px) + buffer (15px) */
  }
}

/* Ensure About section is visible even if AOS fails */
#about-preview {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  background-color: #efece7 !important;
  color: #c90511;
}

/* Only apply fallback when AOS is disabled */
.aos-disabled #about-preview [data-aos],
.aos-disabled #awards [data-aos],
.aos-disabled #team [data-aos] {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

/* ===== HERO VIDEO CONTROLS AND FALLBACK ===== */
/* Hide iOS video play button completely */
#heroVideo::-webkit-media-controls {
  display: none !important;
}

#heroVideo::-webkit-media-controls-panel {
  display: none !important;
}

#heroVideo::-webkit-media-controls-play-button {
  display: none !important;
}

#heroVideo::-webkit-media-controls-start-playback-button {
  display: none !important;
}

/* Ensure video stays behind overlay */
#heroVideo {
  pointer-events: none !important;
}

/* Fallback image styling */
#heroFallbackImage {
  pointer-events: none !important;
}

/* Critical sections should always be visible (but allow AOS animations) */
#about-preview,
#awards,
#team {
  visibility: visible !important;
}

/* Fallback for CSS variables */
#about-preview h2 {
  color: #c90511 !important;
}

#about-preview p,
#about-preview span {
  color: #666 !important;
}

#about-preview .bg-\[var\(--primary-color\)\] {
  background-color: #c90511 !important;
}

#about-preview .border-\[var\(--primary-color\)\] {
  border-color: #c90511 !important;
}

#about-preview .text-\[var\(--primary-color\)\] {
  color: #c90511 !important;
}
