:root{
  --bg:#121212;
  --card:#1c1c1c;
  --muted:#9e9e9e;
}

body{
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", sans-serif;
  background-color: var(--bg);
  color:#f1f1f1;
  scroll-behavior:smooth;
  overflow-x: hidden; /* Prevents horizontal scroll */
}

/* Navbar */
.logo-img {
  height: 40px;
  width: auto;
}

/* Hero Section */
.hero-section{
  background: linear-gradient(135deg, #1f1c2c, #928dab);
  color: #fff;
  border-radius: 10px;
  margin: 0 1rem;
}
.hero-img{
  max-width: 90%;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Next birthday card */
.bg-gradient-dark{
  background: linear-gradient(135deg,#232526,#414345);
  color: #fff;
}

/* Birthdays */
.birthday-section .card {
  background-color: var(--card);
  border: none;
  border-radius: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.birthday-section .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

/* Month filters */
#monthFilters .btn.active {
  background-color: #f1f1f1;
  color: #121212;
  font-weight: bold;
}

/* Links */
.link-card {
  background-color: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.15s, box-shadow 0.15s;
  color: #f1f1f1;
}
.link-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

/* WhatsApp images */
#whatsapp img {
  border: 2px solid #444;
  border-radius: 12px;
}

/* Footer */
.profile-img{
  border-radius: 50%;
  height: 100px;
  width: 100px;
  object-fit: cover;
  border: 3px solid #444;
}

/* General images */
img {
  max-width: 100%;
  height: auto;
}

/* Animated gradients for legacy sections (kept if you still want them) */
.gradient-background1 {
  background: linear-gradient(300deg, #000000,#b8860b, #a9a9a9);
  background-size: 180% 180%;
  animation: gradient-animation 18s ease infinite;
}
@keyframes gradient-animation {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Dark list group items */
.list-group-item{
  background-color: #1c1c1c;
  color: #f1f1f1;
  border: 1px solid rgba(255,255,255,0.05);
}
