/* style.css for Scoutable */

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f9f9f9;
  color: #333;
}

.navbar {
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 1rem 2rem;
}

.logo {
  margin: 0;
  font-size: 1.75rem;
  font-weight: bold;
  color: #2c3e50;
}
html {
  scroll-behavior: smooth;
}

.hero {
  background: url("https://source.unsplash.com/1600x900/?sanfrancisco,city")
    no-repeat center center/cover;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 1rem;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.btn-primary {
  background-color: #3498db;
  color: white;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.btn-primary:hover {
  background-color: #2980b9;
}

.features {
  padding: 4rem 2rem;
  background-color: #fff;
  text-align: center;
}

.features h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.footer {
  background-color: #2c3e50;
  color: white;
  text-align: center;
  padding: 1rem 2rem;
  margin-top: 2rem;
}

/* style.css for Scoutable */

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f9f9f9;
  color: #333;
}

.navbar {
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 1rem 2rem;
}

.logo {
  margin: 0;
  font-size: 1.75rem;
  font-weight: bold;
  color: #2c3e50;
}

.hero {
  background: url("https://source.unsplash.com/1600x900/?sanfrancisco,city")
    no-repeat center center/cover;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero {
  background-image: url("mission.jpg"); /* Update with your actual image filename */
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 100px 20px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 1rem;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.btn-primary {
  background-color: #3498db;
  color: white;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: #2980b9;
}

.search-section {
  padding: 4rem 2rem;
  background-color: #fff;
  text-align: center;
}

.search-form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: center;
}

.address-input,
.priority-select {
  width: 100%;
  padding: 0.6rem 1rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #fff;
}

label {
  font-weight: 600;
  margin-top: 1rem;
  display: block;
  text-align: left;
  width: 100%;
}

.footer {
  background-color: #1188ff;
  color: rgb(46, 46, 46);
  text-align: center;
  padding: 1rem 2rem;
  margin-top: 2rem;
}

#output h3 {
  font-weight: bold;
  font-size: 1.5rem; /* bigger */
  color: s#502c2c; /* dark slate color */
  background-color: #0080ff; /* light grey highlight */
  padding: 8px 12px; /* space inside */
  border-left: 20px solid #000000; /* colored bar for emphasis */
  margin-top: 20px; /* space above each heading */
}
.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 20px;
}

.card {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 6px 5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-body {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card-body p {
  margin: 0.25rem 0;
  font-size: 0.95rem;
}

.card-body strong {
  color: #0d86ff;
}
.clickable-card:hover {
  box-shadow: 0 8px 20px rgba(52, 152, 219, 0.17);
  transform: translateY(-4px) scale(1.025);
  transition: box-shadow 0.18s, transform 0.18s;
  cursor: pointer;
}
