/* ============================================================
   Mayfair & City Carriages — custom.css
   ONLY: @font-face, @keyframes, arch clip-path, utility overrides
   All design via Tailwind CDN classes
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,500;1,400;1,500&family=Raleway:wght@300;400;500;600&display=swap');

/* --- Arch Frames --- */
.arch-hero {
  border-radius: 999px 999px 0 0;
  overflow: hidden;
}

.arch-card {
  border-radius: 999px 999px 0 0;
  overflow: hidden;
}

.arch-accent::before {
  content: '';
  display: block;
  width: 48px;
  height: 24px;
  border-radius: 48px 48px 0 0;
  border: 1px solid #B8860B;
  border-bottom: none;
  margin: 0 auto 1rem auto;
}

/* --- Animations --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.animate-fade-in-up {
  animation: fadeInUp 0.7s ease forwards;
}

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

.stagger > *:nth-child(1) { animation: fadeInUp 0.7s ease 0.1s forwards; opacity: 0; }
.stagger > *:nth-child(2) { animation: fadeInUp 0.7s ease 0.2s forwards; opacity: 0; }
.stagger > *:nth-child(3) { animation: fadeInUp 0.7s ease 0.3s forwards; opacity: 0; }
.stagger > *:nth-child(4) { animation: fadeInUp 0.7s ease 0.4s forwards; opacity: 0; }
.stagger > *:nth-child(5) { animation: fadeInUp 0.7s ease 0.5s forwards; opacity: 0; }
.stagger > *:nth-child(6) { animation: fadeInUp 0.7s ease 0.6s forwards; opacity: 0; }

/* --- Select arrow --- */
.select-arrow {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23556275' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

/* --- Misc --- */
html { scroll-behavior: smooth; }

*:focus-visible {
  outline: 2px solid #1B2A4A;
  outline-offset: 2px;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0.4;
  cursor: pointer;
}

.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #E0E1DF;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.carousel-dot.active {
  background-color: #B8860B;
  transform: scale(1.4);
}

.header-scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}
