:root {
  --red: #e50914;
  --navy: #002366;
  --light: #f8f9fa;
  --text: #111;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: linear-gradient(rgba(248,249,250,0.5), rgba(248,249,250,0.5)),
    url('../img/background.jpg') no-repeat center center fixed;
  background-size: cover;
  color: var(--text);
  line-height: 1.6;
}

/* ---------- CONTAINER ---------- */
.container {
  max-width: 1000px;
  margin: 20px auto;
  background: rgba(255, 255, 255, 0.5);
  padding: 28px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

/* ---------- HEADER ---------- */
header.site-header {
  background: rgba(242, 242, 242, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--navy);
  padding: 12px 24px;
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid rgba(0,0,0,0.05);
}

.site-header img.logo {
  height: 100px;
  width: auto;
}

.site-nav a {
  color: var(--navy);
  text-decoration: none;
  margin: 0 10px;
  font-weight: 600;
}
.site-nav a:hover {
  background: #e50914; /* bright red hover */
  color: #fff;          /* white text when hovered */
  border-radius: 8px;   /* optional: rounded effect */
  padding: 8px 14px;    /* optional: better spacing */
  transition: 0.3s;     /* smooth animation */
}

.site-nav a.active {
  outline: 3px solid rgba(255, 255, 255, 0.08);
  padding: 6px 8px;
  border-radius: 6px;
}

/* ---------- HERO SECTION ---------- */
.hero {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(90deg, rgba(229,9,20,0.5), rgba(0,35,102,0.5));
  color: white;
  border-radius: 8px;
}

.hero h1 {
  font-size: 32px;
  margin: 0 0 10px;
  font-weight: 800;
}

.hero p.lead {
  font-size: 18px;
  margin: 0;
}

/* ---------- HEADINGS ---------- */
h2 {
  color: var(--red);
  font-size: 22px;
  margin-top: 8px;
}

section {
  margin-top: 18px;
}

/* ---------- FORM STYLES ---------- */
.form-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.form-row .col {
  flex: 1;
  min-width: 180px;
}

input[type="text"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

button.cta {
  background: var(--navy);
  color: #fff;
  padding: 10px 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 700;
}

button.cta:hover {
  background: var(--red);
}
.counter {
  font-size: 42px;
  font-weight: 800;
  color: #e50914; /* your brand red */
}

#counter-section h2 {
  color: var(--navy);
  margin-bottom: 10px;
}

#counter-section p.lead {
  font-size: 20px;
  color: var(--text);
}
#nomination {
  margin-top: 40px;
  background: rgba(242, 242, 242, 0.8);
  padding: 40px 20px;
  border-radius: 12px;
}

#nomination h2 {
  color: var(--navy);
  text-align: center;
  margin-bottom: 10px;
}

#nomination .lead {
  text-align: center;
  color: #444;
  margin-bottom: 20px;
}

.nomination-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nomination-form label {
  font-weight: bold;
  text-align: left;
}

.nomination-form input,
.nomination-form select,
.nomination-form textarea {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 15px;
}

.nomination-form textarea {
  resize: vertical;
}

.nomination-form .cta {
  background-color: var(--navy);
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}

.nomination-form .cta:hover {
  background-color: #004080;
}

/* ---------- FOOTER ---------- */
footer.site-footer {
  text-align: center;
  padding: 18px;
  background: var(--navy);
  color: #fff;
  margin-top: 24px;
  border-radius: 8px;
}

/* ---------- FLOATING CONTACT ICONS ---------- */
.floating-contact {
  position: fixed;
  bottom: 22px;
  right: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1200;
}

.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 22px;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.whatsapp {
  background-color: #25D366;
}

.phone {
  background-color: #007AFF;
}

.gmail {
  background-color: #EA4335;
}

.facebook {
  background-color: #1877F2;
}

.float-btn:hover {
  transform: translateY(-4px);
  opacity: 0.95;
}

  header.site-header {
    padding: 12px;
  }

  .hero {
    padding: 40px 14px;
  }

  .container {
    margin: 10px;
  }
}
/* ---------- COUNTDOWN STYLES ---------- */
#launch-countdown {
  margin-top: 40px;
  background: rgba(242, 242, 242, 0.7);
  padding: 30px 10px;
  border-radius: 10px;
}

#launch-countdown h2 {
  color: var(--navy);
  margin-bottom: 20px;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-family: 'Arial', sans-serif;
}

.countdown div {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 12px;
  width: 70px;
}

.countdown span {
  display: block;
  font-size: 28px;
  font-weight: bold;
  color: #e50914;
}

.countdown small {
  display: block;
  font-size: 12px;
  color: #333;
}

@media (max-width: 600px) {
  .countdown {
    gap: 10px;
  }
  .countdown div {
    width: 55px;
    padding: 8px;
  }
  .countdown span {
    font-size: 22px;
  }
/* ===============================
   🕒 LIVE FOOTER DATETIME + COPYRIGHT
   =============================== */
.site-footer {
  background: #111;
  color: #eee;
  text-align: center;
  padding: 20px 10px;
  border-top: 3px solid #ff8c00; /* Fire accent */
  font-family: 'Montserrat', Arial, sans-serif;
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
}

.footer-datetime {
  font-size: 15px;
  color: #ffcc66;
  margin-bottom: 8px;
}

.footer-copy {
  font-size: 14px;
  color: #bbb;
}
/* ===============================
   💰 HOME DONATION SECTION (PayPal Only)
   =============================== */
.home-donate {
  background: #fff;
  text-align: center;
  padding: 60px 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  border-top: 3px solid #ff8c00;
}

.home-donate h2 {
  color: #003366;
  font-weight: 700;
  margin-bottom: 10px;
}

.donate-intro {
  max-width: 700px;
  margin: 0 auto 30px;
  color: #555;
  font-size: 16px;
  line-height: 1.6;
}

.donate-buttons {
  display: flex;
  justify-content: center;
}

.donate-btn {
  display: inline-block;
  padding: 14px 25px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: 0.3s;
  min-width: 240px;
  background: #ff8c00;
  color: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.donate-btn:hover {
  background: #e67300;
  transform: translateY(-2px);
}

.donate-btn i {
  margin-right: 8px;
}

