@import "https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css";

/* Custom Fonts setup */
.font-mea-culpa {
  font-family: 'Mea Culpa', cursive, handwriting;
}

.font-aleo {
  font-family: 'Aleo', serif;
}

.font-cormorant {
  font-family: 'Cormorant Garamond', serif;
}

.font-noto {
  font-family: 'Noto Serif Display', serif;
}

.font-roboto {
  font-family: 'Roboto Condensed', sans-serif;
}

.font-merriweather {
  font-family: 'Merriweather', serif;
}

.font-bodoni {
  font-family: 'Bodoni Moda', serif;
}

/* Custom Date Badge Flex Layout (Pure CSS - 100% Mobile Compatible) */
.date-badge-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Noto Serif Display', serif;
  color: #ffffff !important;
  margin: 20px 0;
  user-select: none;
}

.date-badge-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.date-badge-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 90px;
  height: 54px;
}

.date-badge-line {
  display: block;
  width: 100%;
  height: 1.5px;
  background-color: #ffffff !important;
}

.date-badge-month {
  font-size: 15.4px;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
  color: #ffffff !important;
  padding: 4px 0;
}

.date-badge-number {
  font-size: 67.2px;
  line-height: 0.85;
  font-weight: 400;
  color: #ffffff !important;
  padding: 0 4px;
}

.date-badge-year {
  font-size: 15.4px;
  letter-spacing: 0.12em;
  line-height: 1;
  color: #ffffff !important;
  padding: 4px 0;
}

.date-badge-day {
  margin-top: 14px;
  font-size: 18.2px;
  letter-spacing: 0.22em;
  line-height: 1;
  text-transform: uppercase;
  color: #ffffff !important;
  text-align: center;
}

/* All Text Colors set to White (#ffffff) as requested */
h1, h2, h3, h4, p, span, small, blockquote, footer, header {
  color: #ffffff !important;
}

/* Animations */
@keyframes pulse-subtle {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.02);
    opacity: 0.95;
  }
}

.animate-pulse-subtle {
  animation: pulse-subtle 2s ease-in-out infinite;
}

/* Glassmorphism helpers */
.backdrop-blur-md {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Mobile-Safe Zero-Black-Gaps Background Cover */
.mobile-fixed-bg-container {
  position: fixed;
  top: -5vh;
  left: -5vw;
  width: 110vw;
  height: 110vh;
  min-height: 110dvh;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  background-color: #1a1715;
}

.mobile-fixed-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.15);
  will-change: transform;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: 'Roboto Condensed', sans-serif;
  background-color: #1a1715;
  color: #ffffff !important;
  overflow-x: hidden;
}

/* Custom scrollbars */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: #ffffff;
  border-radius: 3px;
}

