/* Base Font and Typography */
body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  scroll-behavior: smooth;
}

h1, h2, h4 {
  font-weight: bold;
}

section h2 {
  margin-bottom: 20px;
}

/* Custom pink background */
.bg-pink {
  background-color: #ff69b4; /* Hot Pink */
}

/* Custom yellow background */
.bg-yellow {
  background-color: #ffeb3b; /* Bright Yellow */
}

/* Navbar */
.navbar-brand {
  font-weight: bold;
  font-size: 20px;
}

.nav-link {
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #f0ad4e !important;
}

/* Buttons */
.btn-light {
  color: #000;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 30px;
  transition: background-color 0.3s ease;
}

.btn-light:hover {
  background-color: #f8f9fa;
}

/* Form Inputs */
form input,
form textarea {
  border-radius: 8px;
  padding: 10px;
}

/* Footer */
footer {
  font-size: 14px;
  background-color: #111;
  color: #fff;
}

/* Responsive Section Padding */
@media (max-width: 768px) {
  section {
    padding: 40px 15px;
  }
}
