/* ============================================
   Labour Party Abia – Public Styles
   Based on provided modern design
   ============================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: #1e1e1e;
  background-color: #fefefe;
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
header {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(5px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo svg {
  width: 48px;
  height: 48px;
}

.logo span {
  font-size: 1.6rem;
  font-weight: 700;
  color: #C41E3A;
  letter-spacing: -0.5px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
  font-weight: 500;
}

.nav-links a {
  font-size: 1rem;
  transition: color 0.2s;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  color: #C41E3A;
  border-bottom-color: #C41E3A;
}

.login-link {
  color: #1e1e1e;
  font-weight: 600;
}

.login-link i {
  margin-right: 6px;
  color: #C41E3A;
}

.donate-btn {
  background: #C41E3A;
  color: white !important;
  padding: 0.6rem 1.8rem;
  border-radius: 40px;
  font-weight: 600;
  transition: background 0.2s, transform 0.1s;
  border: none;
  cursor: pointer;
}

.donate-btn:hover {
  background: #a01830;
  transform: scale(1.02);
}

.hamburger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #C41E3A;
}

/* Mobile menu */
@media (max-width: 992px) {
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: white;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 40px 20px;
    transition: left 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    gap: 40px;
    overflow-y: auto;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 28px;
    font-size: 1.2rem;
  }

  .hamburger {
    display: block;
  }

  .login-link {
    margin-top: 10px;
  }
}

/* Hero */
.hero {
  background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 100%), url('https://images.unsplash.com/photo-1540910419892-4a36d2c3266c?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
  color: white;
  padding: 120px 0;
  text-align: center;
}

.hero h1 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero p {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  opacity: 0.95;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.2s;
  border: 2px solid transparent;
  font-size: 1rem;
}

.btn-primary {
  background: #C41E3A;
  color: white;
}

.btn-primary:hover {
  background: #a01830;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(196,30,58,0.3);
}

.btn-outline-light {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.btn-outline-light:hover {
  background: white;
  color: #C41E3A;
  transform: translateY(-2px);
}

/* Section general */
section {
  padding: 80px 0;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
}

.section-title span {
  color: #C41E3A;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: #C41E3A;
  margin: 16px auto 0;
  border-radius: 2px;
}

/* Cards */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.card {
  background: white;
  border-radius: 20px;
  padding: 36px 24px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.05);
  transition: all 0.3s;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.02);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 40px rgba(196,30,58,0.08);
}

.card i {
  font-size: 2.8rem;
  color: #C41E3A;
  margin-bottom: 1.2rem;
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}

.card p {
  color: #5a5a5a;
}

/* Leadership */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.leader-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0,0,0,0.05);
  transition: transform 0.3s;
  text-align: center;
  padding-bottom: 24px;
}

.leader-card:hover {
  transform: translateY(-6px);
}

.leader-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  background: #ddd;
}

.leader-card h3 {
  font-size: 1.4rem;
  margin-top: 1.2rem;
}

.leader-card .position {
  color: #C41E3A;
  font-weight: 600;
  margin: 0.2rem 0 0.8rem;
}

.btn-small {
  background: transparent;
  border: 1px solid #C41E3A;
  color: #C41E3A;
  padding: 0.5rem 1.5rem;
  border-radius: 40px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-block;
  transition: all 0.2s;
}

.btn-small:hover {
  background: #C41E3A;
  color: white;
}

/* News grid */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.news-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

.news-card:hover {
  transform: translateY(-6px);
}

.news-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: #ccc;
}

.news-content {
  padding: 24px;
}

.news-date {
  color: #C41E3A;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.news-title {
  font-size: 1.4rem;
  margin: 0.6rem 0 0.8rem;
  line-height: 1.3;
}

.news-excerpt {
  color: #5a5a5a;
  margin-bottom: 1.2rem;
}

.read-more {
  color: #C41E3A;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.read-more i {
  transition: transform 0.2s;
}

.read-more:hover i {
  transform: translateX(4px);
}

/* Events list */
.events-list {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.event-item {
  display: flex;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid #eee;
  flex-wrap: wrap;
  gap: 20px;
}

.event-item:last-child {
  border-bottom: none;
}

.event-date {
  background: #C41E3A;
  color: white;
  text-align: center;
  padding: 10px 16px;
  border-radius: 12px;
  min-width: 90px;
}

.event-date .day {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.event-date .month {
  font-size: 1rem;
  text-transform: uppercase;
}

.event-details {
  flex: 1;
}

.event-details h4 {
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
}

.event-details p {
  color: #5a5a5a;
}

.event-btn {
  background: #C41E3A;
  color: white;
  padding: 0.7rem 2rem;
  border-radius: 40px;
  font-weight: 600;
  transition: background 0.2s;
}

.event-btn:hover {
  background: #a01830;
}

/* Manifesto highlight */
.manifesto-highlight {
  background: linear-gradient(135deg, #C41E3A 0%, #a01830 100%);
  color: white;
  text-align: center;
  padding: 80px 40px;
  border-radius: 30px;
}

.manifesto-highlight h2 {
  font-size: 2.6rem;
  margin-bottom: 1rem;
}

.manifesto-highlight p {
  max-width: 700px;
  margin: 0 auto 2rem;
  font-size: 1.2rem;
  opacity: 0.95;
}

/* Get involved */
.involve-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.involve-card {
  background: white;
  border-radius: 20px;
  padding: 48px 24px;
  text-align: center;
  box-shadow: 0 15px 30px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

.involve-card:hover {
  transform: translateY(-6px);
}

.involve-card i {
  font-size: 3.2rem;
  color: #C41E3A;
  margin-bottom: 1.2rem;
}

.involve-card h3 {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
}

.involve-card p {
  color: #5a5a5a;
  margin-bottom: 1.8rem;
}

.btn-secondary {
  background: #C41E3A;
  color: white;
  padding: 0.7rem 2rem;
  border-radius: 40px;
  font-weight: 600;
  display: inline-block;
  transition: background 0.2s;
}

.btn-secondary:hover {
  background: #a01830;
}

/* Footer */
footer {
  background: #0f0f0f;
  color: #f0f0f0;
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col h4 {
  color: white;
  margin-bottom: 1.2rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.8rem;
}

.footer-col ul li a {
  color: #aaa;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: #C41E3A;
}

.footer-col p {
  color: #aaa;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border-radius: 50px;
  border: none;
  background: #2a2a2a;
  color: white;
}

.newsletter-form input::placeholder {
  color: #888;
}

.newsletter-form button {
  background: #C41E3A;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.newsletter-form button:hover {
  background: #a01830;
}

.social-links {
  display: flex;
  gap: 18px;
  font-size: 1.5rem;
  margin-top: 20px;
}

.social-links a {
  color: #aaa;
  transition: color 0.2s;
}

.social-links a:hover {
  color: #C41E3A;
}

.copyright {
  text-align: center;
  border-top: 1px solid #2a2a2a;
  padding-top: 30px;
  color: #888;
  font-size: 0.9rem;
}

/* Placeholder image style */
.placeholder-img {
  background: linear-gradient(145deg, #e0e0e0, #f0f0f0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 { font-size: 2.4rem; }
  .section-title { font-size: 2rem; }
  .event-item { flex-direction: column; align-items: flex-start; }
  .event-date { align-self: flex-start; }
}