/* Template Watermark: Developed by templates.uicomponent.in */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

/* Global Reset and Smooth Scroll */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: #ECE8DA;
  color: #1E1F1A;
}

/* Custom Heading Font */
h1, h2, h3, h4, h5, h6, .font-serif-custom {
  font-family: 'Cormorant Garamond', Georgia, serif;
}

/* Custom Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@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); }
}

@keyframes scaleUp {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.animate-fade-in {
  animation: fadeIn 0.8s ease-out forwards;
}

.animate-slide-left {
  animation: slideInLeft 0.8s ease-out forwards;
}

.animate-slide-right {
  animation: slideInRight 0.8s ease-out forwards;
}

.animate-scale-up {
  animation: scaleUp 0.6s ease-out forwards;
}

/* Custom scrollbar for premium feel */
::-webkit-scrollbar {
  width: 8px;
}

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

::-webkit-scrollbar-thumb {
  background: #25422B;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #1E3524;
}

/* Navigation frosted glass */
.navbar-scrolled {
  background-color: rgba(236, 232, 218, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(37, 66, 43, 0.1);
}

/* Custom Pill Container in Headings */
.heading-pill {
  display: inline-block;
  vertical-align: middle;
  width: 70px;
  height: 38px;
  border-radius: 9999px;
  background-size: cover;
  background-position: center;
  margin: 0 8px;
  border: 1.5px solid #25422B;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}
