/* === Base === */
body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  background-color: #f5f7fa;
  color: #1c1c1c;
  margin: 0;
  padding: 0;
}

/* === Webcam Card === */
.webcam-card {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}
.webcam-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

/* === Webcam Image === */
.webcam-image-wrapper {
  height: 180px;
  overflow: hidden;
}
.webcam-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.webcam-card:hover .webcam-image {
  transform: scale(1.03);
}

/* === Card Body === */
.card-body {
  padding: 1rem 1.25rem;
  font-size: 1rem;
  position: relative;
}
.card-body h5 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.card-body p {
  margin: 0.25rem 0;
}

/* === Card Footer === */
.card-footer {
  padding: 0.75rem 1.25rem;
  background-color: #f9f9f9;
  font-size: 0.9rem;
  color: #555;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Buttons === */
.btn-sm {
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  background-color: #00bcd4;
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.btn-sm:hover {
  background-color: #0097a7;
  transform: scale(1.05);
}
.btn-sm i {
  font-size: 1rem;
}

/* === Badges === */
.badge {
  display: inline-block;
  font-size: 0.75rem;
  background-color: #ffeb3b;
  color: #333;
  border-radius: 12px;
  padding: 0.3rem 0.6rem;
  font-weight: 600;
}

/* === Social Icons === */
.card-footer a {
  font-size: 1.2rem;
  margin-left: 0.5rem;
  transition: transform 0.2s ease;
}
.card-footer a:hover {
  transform: scale(1.2);
}

/* === Search Bar === */
.search-bar {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}
.search-bar form {
  display: flex;
  max-width: 500px;
  width: 100%;
  background-color: #fff;
  border: 2px solid #00bcd4;
  border-radius: 12px;
  overflow: hidden;
}
.search-bar input {
  flex: 1;
  padding: 0.75rem;
  border: none;
  font-size: 1rem;
  outline: none;
}
.search-bar button {
  padding: 0.75rem 1rem;
  background-color: #00bcd4;
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 600;
}
.search-bar button:hover {
  background-color: #0097a7;
}

 .shadow-text {
    font-family: 'serif', cursive;
    font-size: 3rem;
    font-weight: 700;
    color: #000;
    text-shadow:
    
  }
  