/* Angoon Taxi - Custom Styles
   Yellowish taxi theme with Admiralty Island / Southeast Alaska accents
   Tailwind CSS is loaded via CDN in each HTML file
*/

:root {
  --taxi-yellow: #FACC15;
  --taxi-yellow-dark: #EAB308;
  --taxi-yellow-light: #FEF08C;
  --forest-green: #166534;
  --ocean-blue: #1E3A5F;
  --warm-cream: #FFFBEB;
  --slate-dark: #1E293B;
  --text-primary: #1F2937;
  --text-muted: #4B5563;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Navbar */
.nav-link {
  position: relative;
  transition: color 0.2s ease;
}

.nav-link:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: var(--taxi-yellow-dark);
  transition: width 0.3s ease;
}

.nav-link:hover:after,
.nav-link.active:after {
  width: 100%;
}

/* Hero sections */
.hero {
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(30, 41, 59, 0.45), rgba(30, 41, 59, 0.55));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* Service cards */
.service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

/* Pricing table */
.pricing-table th {
  background-color: #FEF08C;
  color: #1E293B;
  font-weight: 600;
}

.pricing-table tr:nth-child(even) {
  background-color: #FFFBEB;
}

/* Form styles */
.form-input {
  transition: all 0.2s ease;
}

.form-input:focus {
  outline: none;
  border-color: #FACC15;
  box-shadow: 0 0 0 3px rgba(250, 204, 21, 0.15);
}

/* Buttons */
.btn-primary {
  background-color: #FACC15;
  color: #1E293B;
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn-primary:hover {
  background-color: #EAB308;
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: #1E3A5F;
  color: white;
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn-secondary:hover {
  background-color: #0F2744;
}

/* Driver card */
.driver-card {
  transition: all 0.3s ease;
}

/* Testimonials */
.testimonial {
  position: relative;
}

.testimonial::before {
  content: '“';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 120px;
  line-height: 1;
  color: #FEF08C;
  font-family: Georgia, serif;
  opacity: 0.4;
}

/* Footer */
footer {
  background-color: #1E293B;
  color: #CBD5E1;
}

/* Mobile menu */
.mobile-menu {
  animation: slideDown 0.25s ease forwards;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Island motif accents */
.island-accent {
  background-image: linear-gradient(135deg, #166534 0%, #1E3A5F 100%);
}

/* Van / taxi specific */
.van-icon {
  width: 64px;
  height: 64px;
}

/* Reservation success modal */
.modal {
  animation: fadeInScale 0.2s ease forwards;
}

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

/* Responsive tweaks */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.25rem;
    line-height: 1.1;
  }
}

/* Print styles for reservation confirmation if needed */
@media print {
  nav, footer, .no-print { display: none !important; }
}