/* Merged Custom styles */
* {
  transition: all 0.2s ease;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
  border: 2px solid #f1f5f9;
}

::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

body {
  font-family: "Montserrat", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #f8fafc;
  background-color: #0f1117;
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

/* Secondary Serif */
.font-serif-alt,
.font-cormorant {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
}

/* Custom Utilities */
.text-balance {
  text-wrap: balance;
}

.text-shadow-sm {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.glass-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-card-light {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-gradient-overlay {
  background: linear-gradient(to bottom, rgba(15, 17, 23, 0.4) 0%, rgba(15, 17, 23, 0.9) 100%);
}

.accent-underline {
  position: relative;
  display: inline-block;
}

.accent-underline::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 8px;
  background: url("data:image/svg+xml,%3Csvg width='100' height='8' viewBox='0 0 100 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 6C20 2 40 2 99 6' stroke='%23c2592a' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  opacity: 0.7;
}

/* Image reveal / masking */
.reveal-mask,
.mask-soft-edge {
  mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
}

/* Interactive elements */
a,
button,
.card-hover {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-hover-glow:hover {
  box-shadow: 0 0 20px rgba(194, 89, 42, 0.3);
}

::selection {
  background-color: rgba(194, 65, 12, 0.2);
  color: #c2410c;
}

/* Custom list markers */
.custom-bullet {
  list-style: none;
}

.custom-bullet li::before {
  content: "•";
  color: #c2592a;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.note
{
 color: red;
 font-weight: 600;
}

@media (min-width: 1280px) {
  .xl\:gap-x-8 {
    column-gap: 1.3rem !important;
  }
}