body {
  margin: 0;
  font-family: 'Lato', sans-serif;
  color: #333;
  background-color: #fafafa;
}

h1, h2, h3 {
  font-family: 'Merriweather', serif;
  color: #2b5fae;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 0.8rem 2rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.2rem;
}

.nav-links a {
  text-decoration: none;
  color: #2b5fae;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #00a896;
}

.hero {
  text-align: center;
  padding: 4rem 1rem;
  background: #eef4fa;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.hero p {
  font-size: 1.1rem;
  color: #555;
}

/* 🔍 Filter Bar */
.filter-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  background: #fff;
  padding: 1rem 2rem;
  border-bottom: 1px solid #e5e5e5;
}

.filter-bar input, .filter-bar select {
  padding: 0.6rem 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  width: 220px;
}

.filter-bar input:focus, .filter-bar select:focus {
  outline: none;
  border-color: #2b5fae;
}

/* 🧪 Card Grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: auto;
}

.card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* .card img {
  height: 80px;
  margin-bottom: 1rem;
} */
.card img {
  width: 100%;
  height: 200px;          /* 🔹 increase this value for larger images */
  object-fit: contain;      /* keeps images from distorting */
  border-radius: 8px;
  margin-bottom: 1rem;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.1);
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.6rem 1.2rem;
  background: #2b5fae;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.btn:hover {
  background: #00a896;
}

.about {
  background: #fff;
  padding: 3rem 2rem;
  text-align: center;
  line-height: 1.6;
  color: #444;
}

footer {
  background: #2b5fae;
  color: #fff;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
}

footer a {
  color: #cce5ff;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

.logo img {
  height: 60px;       /* adjust based on your logo size */
  width: auto;
  display: block;
}

.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

/* --- Feedback Page --- */
.feedback-container {
  max-width: 700px;
  margin: 4rem auto;
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.feedback-container h2 {
  text-align: center;
  color: #2b5fae;
  font-family: 'Merriweather', serif;
}

.feedback-intro {
  text-align: center;
  color: #555;
  margin-bottom: 2rem;
}

.feedback-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feedback-form label {
  font-weight: 500;
  color: #333;
}

.feedback-form input,
.feedback-form select,
.feedback-form textarea {
  padding: 0.7rem 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.feedback-form input:focus,
.feedback-form select:focus,
.feedback-form textarea:focus {
  outline: none;
  border-color: #2b5fae;
  box-shadow: 0 0 3px rgba(43,95,174,0.3);
}

/* Star Rating */
.rating-group {
  display: flex;
  gap: 0.5rem;
  justify-content: space-between;
}

.rating-group input[type="radio"] {
  display: none;
}

.rating-group label {
  cursor: pointer;
  font-size: 1.2rem;
  opacity: 0.5;
  transition: opacity 0.2s ease;
}

.rating-group input[type="radio"]:checked + label,
.rating-group label:hover {
  opacity: 1;
}

/* Feedback message */
.feedback-message {
  margin-top: 1rem;
  text-align: center;
  font-weight: 500;
  color: #00a896;
}
