/* Custom Font Settings */
body {
  font-family: 'Montserrat', sans-serif;
  color: #333;
  background-color: #fcfcfc;
}

h1, h2, h3, h4, .serif-font {
  font-family: 'Cormorant Garamond', serif;
}

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

/* Fade In Animation Classes */
.fade-in-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
  will-change: opacity, visibility;
}

.fade-in-section.is-visible {
  opacity: 1;
  transform: none;
}

/* Parallax & Image Helpers */
.hero-bg {
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4)), url("https://images.unsplash.com/photo-1491002052546-bf38f186af56?q=80&w=2108&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.luxury-line::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background-color: #a0a0a0;
  margin: 2rem auto;
}

/* Form Customization */
.custom-input {
  background-color: transparent;
  border-bottom: 1px solid #ccc;
  transition: border-color 0.3s;
}

.custom-input:focus {
  outline: none;
  border-bottom: 1px solid #1a202c;
}

/* Style for optional labels */
.optional-badge {
  font-size: 0.65rem;
  color: #9ca3af;
  text-transform: none;
  letter-spacing: normal;
  margin-left: 0.5rem;
}

/* Specific Section Styles */
.onsen-bg {
  background-color: #f4f4f2;
  /* Warm grey for contrast */
}

.policy-box {
  background-color: #f8f9fa;
  border-left: 4px solid #1a202c;
}

/* Timeline Styles - Compact Version */
.timeline-item {
  position: relative;
  padding-left: 1.5rem;
  border-left: 1px solid #e5e7eb;
  padding-bottom: 1.25rem;
  /* Reduced from 2rem */
}

.timeline-item:last-child {
  border-left: none;
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -5px;
  top: 6px;
  width: 9px;
  height: 9px;
  background-color: #1f2937;
  border-radius: 50%;
}

/* Modal Styles */
.modal {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  transform: scale(0.95);
  transition: transform 0.3s ease-in-out;
}

.modal.active .modal-content {
  transform: scale(1);
}

/* reCaptcha v3 */
.grecaptcha-badge {
  display: none;
}
