:root {
  --orange: #f47c20;
  --blue: #0f3c5f;
  --light-blue: #e8f1f7;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

/* GLOBAL */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(180deg, var(--blue), #08263d);
  color: var(--white);
  line-height: 1.6;
}

/* HERO */
.hero {
  background: linear-gradient(135deg, #e06a1a, #f4a261);
  padding: 90px 20px 70px; /* extra top space for sticky button */
  text-align: center;
}

.hero img {
  width: 100%;
  max-width: 420px;
  border-radius: 14px;
  border: 5px solid var(--white);
  box-shadow: 0 15px 35px rgba(0,0,0,0.35);
  margin-bottom: 30px;
  background: var(--white);
}

/* TITLE */
.main-title {
  font-family: 'Libre Baskerville', serif;
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  background: linear-gradient(90deg, #0b2f4a, #f47c20);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

/* SLOGAN */
.slogan {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.5rem;
  font-style: italic;
  margin-top: 10px;
  letter-spacing: 0.5px;
  color: #ffffff;
}

/* TEXT */
.hero p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: auto;
}

.tagline {
  font-style: italic;
  margin-top: 10px;
}

/* ELECTION */
.election-dates {
  margin: 10px 0 15px;
  font-weight: 600;
}

/* SECTIONS */
.section {
  background: var(--light-blue);
  color: #0d2438;
  padding: 60px 20px;
}

.dark-section {
  background: #0b2f4a;
  color: var(--white);
  padding: 60px 20px;
}

.compact {
  padding: 40px 20px;
}

.container {
  max-width: 1000px;
  margin: auto;
}

/* HEADERS */
h2 {
  color: var(--blue);
  border-left: 6px solid var(--orange);
  padding-left: 14px;
  margin-top: 0;
}

.dark-section h2 {
  color: #ffffff;
  border-left: 6px solid #f4a261;
}

/* LISTS */
ul {
  padding-left: 20px;
}

ul li {
  margin-bottom: 10px;
}

/* CONTACT */
.contact {
  font-size: 1.2rem;
  font-weight: 600;
}

/* MAIN DONATE BUTTON */
.donate-button {
  display: inline-block;
  background: #f47c20;
  color: #ffffff;
  padding: 30px 60px;
  margin: 25px 0;
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 60px;
  border: 3px solid black;
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}

/* 🔥 STICKY TOP DONATE BUTTON */
.floating-donate {
  position: fixed;
  top: 15px;
  right: 20px;
  background: #f47c20;
  color: #fff;
  padding: 18px 30px;
  font-size: 1.1rem;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  border: 3px solid black;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
  z-index: 1000;
  animation: pulse 2s infinite;
}

/* PULSE */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(244,124,32, 0.7); }
  70% { box-shadow: 0 0 0 14px rgba(244,124,32, 0); }
  100% { box-shadow: 0 0 0 0 rgba(244,124,32, 0); }
}

/* SOCIAL SECTION */
.social-section {
  background: #061c2e;
  text-align: center;
  padding: 50px 20px;
}

.social-section h2 {
  color: #ffffff;
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.social-icons a img {
  width: 45px;
  height: 45px;
  transition: transform 0.2s ease;
}

.social-icons a img:hover {
  transform: scale(1.15);
}

/* FOOTER */
footer {
  background: #061c2e;
  padding: 30px 20px;
  font-size: 0.85rem;
  text-align: center;
  color: #cfd8df;
}