/* === Global Styles === */
body {
  font-family: 'Oswald', sans-serif;
  background-color: #f8f9fa;
  color: #222;
  margin: 0;
  padding: 0;
}

/* === Navbar === */
.navbar {
  background-color: #000;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.navbar-brand {
  color: #fff !important;
  font-weight: 700;
  letter-spacing: 1px;
}

.navbar-nav .nav-link {
  color: #fff !important;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #e63946 !important; /* Cute red hover */
}

/* === Headings === */
h3 {
  color: #000;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

h3::after {
  content: '';
  display: block;
  width: 60%;
  height: 3px;
  background-color: #e63946;
  margin: 0.4rem auto 0;
  border-radius: 2px;
}

/* === Links === */
a {
  color: #e63946;
  text-decoration: none;
  font-weight: 600;
}

a:hover {
  text-decoration: underline;
}

/* === Buttons === */
.btn-link {
  border: 2px solid #000;
  border-radius: 30px;
  padding: 0.4rem 1rem;
  transition: all 0.3s ease;
  color: #000;
  background-color: #fff;
}

.btn-link:hover {
  background-color: #e63946;
  color: #fff;
  border-color: #e63946;
}

/* === Images === */
img {
  border-radius: 10px;
  border: 3px solid #000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* === Video Frames === */
.ratio {
  border: 3px solid #000;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1rem;
}

/* === Purpose Section === */
#Purpose p {
  max-width: 800px;
  margin: 0 auto;
  background-color: #fff;
  padding: 1rem;
  border-left: 5px solid #e63946;
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* === Footer === */
footer {
  background-color: #000;
  color: #fff;
  margin-top: 2rem;
  font-size: 0.9rem;
}

/* === Back to Top Button === */
#backToTopBtn {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
  border: none;
  outline: none;
  background-color: #e63946;
  color: #fff;
  cursor: pointer;
  padding: 12px 15px;
  border-radius: 50%;
  font-size: 18px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

#backToTopBtn:hover {
  background-color: #fff;
  color: #e63946;
  border: 2px solid #e63946;
}

/* === Candidate Name Link === */
a.btn-link.mx-2.my-1 {
  font-size: 2rem;           /* Bigger font size */
  font-weight: 700;          /* Bold and strong */
  letter-spacing: 1px;
  text-transform: uppercase; /* Makes it more commanding */
  color: #000;
  border: 3px solid #000;
  border-radius: 40px;
  padding: 0.5rem 1.5rem;
  transition: all 0.3s ease;
}

a.btn-link.mx-2.my-1:hover {
  background-color: #e63946;
  color: #fff;
  border-color: #e63946;
  transform: scale(1.05);    /* Adds a cute bounce */
}

/* === Campaign Quote === */
p em {
  display: block;
  font-size: 1.8rem;
  font-weight: 600;
  color: #e63946;
  letter-spacing: 1px;
  margin-top: 1rem;
  margin-bottom: 1rem;
  text-shadow: 1px 1px #000;
}

/* === Cute Subtle Animation === */
section {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-in-out;
}

section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === Smooth Scroll Reveal === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

section.visible {
  animation: fadeInUp 0.6s ease forwards;
}

/* === Responsive Tweaks === */
@media (max-width: 768px) {
  h3 {
    font-size: 1.4rem;
  }

  .btn-link {
    font-size: 0.9rem;
    padding: 0.3rem 0.8rem;
  }

  a.btn-link.mx-2.my-1 {
    font-size: 1.5rem;
  }

  p em {
    font-size: 1.4rem;
  }
}
