/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

/* Travel Planner Custom Styles */

body {
  background-color: #f8f9fa;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.hero-section {
  text-align: center;
  padding: 4rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 10px;
  margin-bottom: 3rem;
}

.hero-section h1 {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.hero-section .lead {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-buttons .btn {
  margin: 0 0.5rem;
  padding: 0.75rem 2rem;
}

.features-section {
  margin: 3rem 0;
}

.feature-card {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  height: 100%;
  margin-bottom: 1rem;
}

.feature-card h3 {
  color: #495057;
  margin-bottom: 1rem;
}

.quick-actions {
  text-align: center;
  margin: 3rem 0;
  padding: 2rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.action-links .btn {
  margin: 0.5rem;
}

.navbar-brand {
  font-weight: bold;
  font-size: 1.5rem;
}

.card {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border: none;
  border-radius: 10px;
}

.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
  transform: translateY(-1px);
  transition: all 0.2s ease;
}

.jumbotron {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.jumbotron .btn {
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  font-weight: 600;
}

.feature-card {
  transition: transform 0.3s ease;
  padding: 1.5rem;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.alert-success {
  background: linear-gradient(135deg, #56ab2f 0%, #a8e6cf 100%);
  border: none;
  color: white;
}

.progress-bar {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Safety Level Badge Styles */
.bg-orange {
  background-color: #fd7e14 !important;
}

.badge.bg-orange {
  color: #000 !important;
}
