/* Custom styles extending Tailwind for coachtrip.club "The Golden Age" aesthetic */

@layer utilities {
  /* Subtle ticket serrated edge styling */
  .ticket-edge {
    background-image: radial-gradient(circle at 0.5rem 0, transparent 0.45rem, currentColor 0.5rem);
    background-size: 1rem 100%;
    background-repeat: repeat-x;
  }

  /* Smooth modal animations */
  dialog[open] {
    animation: modal-fade-in 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  dialog::backdrop {
    background: rgba(26, 46, 64, 0.65);
    backdrop-filter: blur(4px);
    animation: backdrop-fade-in 0.25s ease-out forwards;
  }

  @keyframes modal-fade-in {
    from {
      opacity: 0;
      transform: scale(0.96) translateY(8px);
    }
    to {
      opacity: 1;
      transform: scale(1) translateY(0);
    }
  }

  @keyframes backdrop-fade-in {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
}

/* Custom range slider styling for the ROI Calculator */
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #1B4332;
  border: 3px solid #FAF8F5;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: transform 0.1s ease;
}

input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

input[type="range"]::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #1B4332;
  border: 3px solid #FAF8F5;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}

