@import url(https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap);
/* Font Face Declaration */
/* Using system fonts for better performance and reliability */
@font-face {
  font-family: 'Hyperwave One';
  src: url(164445a16544374a515d.ttf) format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Variables */
:root {
  --primary-color: #e63946; /* Red */
  --primary-dark: #c1121f; /* Darker Red */
  --secondary-color: #ffffff; /* White */
  --accent-color: #1e88e5; /* Blue */
  --accent-color: #d4a017;
  --text-color: #333;
  --text-dark: #222;
  --light-text: #f8f9fa;
  --hero-primary: #d4a017;
  --hero-secondary: #f8f9fa;
  --bg-white: #ffffff;
  --bg-light: #f8f9fa;
  --border-color: #ddd;
}

/* Base Styles */
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  margin: 0;
  padding: 0;
  background: var(--bg-white);
}

/* Navigation */
.navbar {
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.mobile-menu-toggle {
  display: none;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.navbar-brand {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--hero-primary);
}

.nav-link.active {
  color: var(--hero-primary);
  font-weight: 600;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(images/e5fde285d9b7ab870c47.png) no-repeat center center/cover;
  height: 100vh;
  min-height: 900px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  margin-top: 0;
  padding: 0 2rem;
}

.hero-content {
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding-top: 3rem;
  padding-bottom: 2rem;
}

.vote-text {
  color: #e63946; /* Red */
  font-size: 7rem;
  font-weight: 700;
  margin-bottom: -2rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  font-family: 'Hyperwave One', sans-serif;
}

.platform-title {
  font-size: 3rem;
  font-weight: 700;
  margin: 0.5rem 0;
  color: #ffffff; /* White */
  text-transform: uppercase;
  letter-spacing: 0.2em;
  line-height: 1.1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  font-family: 'Hyperwave One', sans-serif;
}

.council-text {
  font-size: 2.5rem;
  font-weight: 600;
  margin: 0.5rem 0 2rem;
  color: #fff; /* White */
  text-transform: uppercase;
  letter-spacing: 0.2em;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.display-1 {
  font-size: 5rem;
  font-weight: 900;
  margin: 0.5rem 0;
  color: #ffffff; /* White */
  text-transform: uppercase;
  letter-spacing: 0.2em;
  line-height: 1.1;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.fight-text {
  font-size: 4rem;
  font-weight: 700;
  margin: 1.5rem 0 3rem;
  color: #e63946; /* Red */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  display: inline-block;
  font-family: 'Hyperwave One', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

main {
  max-width: 800px;
  margin: 4rem auto;
  padding: 0 2rem;
}

#platform {
  max-width: 800px;
  margin: 2rem auto;
  padding: 4rem 2rem;
  background: #f8f9fa;
  border-radius: 8px;
}

#platform .section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

#platform .section-header h2 {
  font-size: 3rem;
  color: #2c5530;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

#platform .section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #2c5530;
  border-radius: 2px;
}

#platform .section-header + p {
  font-size: 1.5rem;
  color: #d4a017;
  font-weight: 600;
  text-align: center;
  margin-bottom: 3rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  position: relative;
}

#platform .content-box {
  background: white;
  border-radius: 2px;
  padding: 2rem 2rem 0.5rem 2rem;
  margin: 2.5rem 0 0.5rem 0;
  box-shadow: 
    rgba(44, 85, 48, 0.1) 0px 0px 0px 1px,
    rgba(44, 85, 48, 0.1) 0px 5px 10px,
    rgba(44, 85, 48, 0.2) 0px 15px 40px;
  border-left: 5px solid #2c5530;
}

.platform-section {
  margin-top: 4rem;
}

h1 {
  font-size: 3rem;
  font-weight: 800;
  color: #1f2937;
  margin: 0 0 1rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

h1 + p {
  font-size: 1.5rem;
  color: #2c5530;
  margin-bottom: 3rem;
  font-weight: 400;
  line-height: 1.4;
}

h2 {
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #2c5530;
  margin: 4rem 0 1rem;
  line-height: 1.4;
}

h2:first-of-type {
  margin-top: 0;
}

h2 + p {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #1f2937;
  margin-bottom: 1.5rem;
}

p {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: #374151;
}

ul {
  margin: 1.5rem 0 2rem;
  list-style: none;
  padding: 0;
}

li {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
  padding-left: 1.5em;
  position: relative;
  color: #374151;
}

li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: #2c5530;
}

.text-primary { color: var(--primary-color); }
.text-secondary { color: var(--text-light); }
.text-white { color: white; }



.fight-text {
  color: var(--hero-secondary);
  font-family: 'Hyperwave One', 'Montserrat', sans-serif;
  font-size: 4.5rem;
  font-weight: 800;
  margin: 1.5rem 0;
  text-transform: uppercase;
  letter-spacing: 4px;
  line-height: 1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.council-text {
  color: #1e88e5; /* Blue */
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.fight-text {
  font-family: 'Hyperwave One', sans-serif;
  font-size: 7rem;
  font-style: italic;
  margin-bottom: 2rem;
  text-shadow: 4px 4px 8px rgba(0,0,0,0.5);
  color: white;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

/* Hero Buttons */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 3rem 0;
  position: relative;
  z-index: 2;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 1.125rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transform: translateY(0);
  position: relative;
  overflow: hidden;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn:active {
  transform: translateY(1px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.btn-primary {
  background-color: #e63946; /* Red */
  color: white;
  border-color: #e63946;
  padding: 1rem 3rem;
  font-size: 1.25rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
  vertical-align: middle;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
  background-color: #c1121f;
  border-color: #a4133c;
  color: white;
  text-decoration: none;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-primary:active {
  transform: translateY(1px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background-color: #1e88e5; /* Blue */
  border-color: #1e88e5;
  color: white;
  padding: 1rem 3rem;
  font-size: 1.25rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: #1565c0;
  border-color: #0d47a1;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-secondary:active {
  transform: translateY(1px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.btn-outline {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.btn-outline:hover {
  background-color: white;
  color: var(--primary-color);
}

/* Social Links */
.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.social-link {
  color: white;
  font-size: 1.8rem;
  transition: all 0.3s ease;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.social-link:hover {
  color: #e63946;
  transform: translateY(-3px);
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.social-link:active {
  transform: translateY(1px);
}

/* Donate Section */
.donate-options {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 2rem;
  background: white;
}

.donate-card {
  flex: 1;
  min-width: 300px;
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.donate-amounts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.donate-button {
  width: 100%;
  margin-top: 1rem;
}

.donate-button:disabled {
  background-color: #ccc;
  border-color: #ccc;
  color: #666;
  cursor: not-allowed;
  opacity: 0.6;
}

.donate-button:disabled:hover {
  background-color: #ccc;
  border-color: #ccc;
  color: #666;
  transform: none;
  box-shadow: none;
}

.polling-button:disabled {
  background-color: #ccc;
  border-color: #ccc;
  color: #666;
  cursor: not-allowed;
  opacity: 0.8;
}

.polling-button:disabled:hover {
  background-color: #ccc;
  border-color: #ccc;
  color: #666;
  transform: none;
  box-shadow: none;
}

.donate-info {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-card {
  background: rgba(255,255,255,0.1);
  padding: 1.5rem;
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.info-card i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.info-card p {
  margin: 0;
  font-size: 0.95rem;
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section-alt {
  background-color: var(--bg-light);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.25rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* About Section */
.about-content {
  max-width: 900px;
  margin: 0 auto;
}

.about-content .content-box {
  background: white;
  border-radius: 2px;
  padding: 3.5rem;
  margin: 2.5rem 0;
  box-shadow: 
    rgba(44, 85, 48, 0.1) 0px 0px 0px 1px,
    rgba(44, 85, 48, 0.1) 0px 5px 10px,
    rgba(44, 85, 48, 0.2) 0px 15px 40px;
  border-left: 5px solid #2c5530;
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #2b3035;
}

.about-content p:last-child {
  margin-bottom: 0;
}

.about-content .section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.about-content .section-header h2 {
  font-size: 3rem;
  color: #2c5530;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.about-content .section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #2c5530;
  border-radius: 2px;
}

.about-content .highlight {
  font-size: 1.3rem;
  font-weight: 500;
  color: #2c5530;
  margin: 2rem 0;
  text-align: center;
  font-style: italic;
}

@media (max-width: 768px) {
  .about-content .content-box {
    padding: 2rem;
    margin: 1rem;
  }

  .about-content p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .about-content .section-header h2 {
    font-size: 2.5rem;
  }

  .about-content .highlight {
    font-size: 1.1rem;
  }
}

/* Platform styles */
.platform-intro {
  font-size: 1.2rem;
  color: #555;
  max-width: 800px;
  margin: 1rem auto;
  text-align: center;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.platform-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 
    rgba(44, 85, 48, 0.1) 0px 0px 0px 1px,
    rgba(44, 85, 48, 0.1) 0px 5px 10px,
    rgba(44, 85, 48, 0.2) 0px 15px 40px;
  transition: transform 0.3s ease;
  border-left: 4px solid #2c5530;
}

.platform-card:hover {
  transform: translateY(-5px);
}

.platform-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.platform-icon {
  font-size: 2rem;
  color: #2c5530;
  background: rgba(44, 85, 48, 0.1);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.platform-card h3 {
  margin: 0;
  color: #2c5530;
  font-size: 1.4rem;
  line-height: 1.3;
}

.platform-description {
  color: #444;
  line-height: 1.6;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.platform-details {
  list-style: none;
  padding: 0;
  margin: 0;
}

.platform-details li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.8rem;
  line-height: 1.5;
  color: #555;
}

.platform-details li::before {
  content: '•';
  color: #2c5530;
}

/* Platform Typography */
main {
  margin: 6rem auto;
  max-width: 65ch;
}

h2 + p {
  font-size: 2rem;
  line-height: 1.4;
  color: var(--platform-secondary);
  margin-bottom: 2rem;
}

p {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

ul {
  margin: 2rem 0 6rem;
}

li {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  padding-left: 1.5em;
  position: relative;
  color: var(--text-dark);
}

li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--platform-primary);
}

.platform-heading {
  color: var(--platform-secondary);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.platform-description {
  color: var(--text-light);
  font-size: 1.125rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.platform-description p {
  margin-bottom: 1rem;
}

.platform-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.platform-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
  line-height: 1.6;
  font-size: 1.1rem;
}

.platform-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--platform-primary);
  font-weight: bold;
}

.platform-list li:last-child {
  margin-bottom: 0;
}

h2 + p {
  font-size: 2rem;
  line-height: 1.4;
  color: var(--platform-secondary);
  margin: 0 0 2rem;
  font-weight: 400;
}

p {
  font-size: 1.25rem;
  line-height: 1.6;
  margin: 0 0 1rem;
  color: var(--text-dark);
}

ul {
  margin: 2rem 0 6rem;
  padding: 0;
  list-style: none;
}

li {
  font-size: 1.25rem;
  line-height: 1.6;
  margin: 0 0 1rem;
  padding-left: 1.5em;
  position: relative;
  color: var(--text-dark);
}

li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--platform-primary);
}

@media (max-width: 768px) {
  main {
    margin: 2rem 1rem;
    padding: 0 1rem;
  }

  h1 {
    font-size: 2.25rem;
  }

  h1 + p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
  }

  h2 {
    font-size: 1.125rem;
    margin: 3rem 0 1rem;
  }

  p, li {
    font-size: 1.0625rem;
  }
}

@media (max-width: 768px) {
  .platform-timeline::before {
    left: 20px;
  }

  .platform-item,
  .platform-item:nth-child(even) {
    flex-direction: row;
  }

  .platform-marker {
    margin-left: 0;
  }

  .platform-content {
    margin-left: 1rem;
  }

  .platform-main-heading {
    font-size: 2.5rem;
  }

  .platform-subtitle {
    font-size: 1.25rem;
  }
}

@media (max-width: 768px) {
  .platform-item {
    padding: 2rem;
  }

  .platform-heading {
    font-size: 1.75rem;
  }

  .platform-description {
    font-size: 1.1rem;
  }

  .platform-list li {
    font-size: 1rem;
  }
}

.platform-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 3rem;
  padding: 1.5rem;
  border-left: 4px solid var(--primary-color);
  background: var(--bg-white);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.platform-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.platform-icon {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.platform-content h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.platform-content p {
  color: var(--text-light);
  line-height: 1.7;
}

/* Contact Form */
.contact-form {
  background-color: var(--bg-white);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border-color);
  max-width: 700px;
  margin: 0 auto;
  box-sizing: border-box;
}

.form-coming-soon {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--border-color);
}

.form-coming-soon h3 {
  color: #666;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
  font-style: italic;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-row .form-group {
  margin-bottom: 0;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 1rem;
}

.form-label .required {
  color: #dc3545;
  margin-left: 2px;
  font-weight: 700;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 1rem;
  background-color: #fff;
  transition: all 0.3s ease;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05), 0 0 0 3px rgba(230, 57, 70, 0.1);
  transform: translateY(-1px);
}

.form-submit {
  text-align: center;
  margin-top: 2rem;
}

.form-submit .btn {
  padding: 1rem 3rem;
  font-size: 1.1rem;
  font-weight: 600;
}

/* Disabled form elements */
.form-input:disabled,
.form-textarea:disabled,
.form-select:disabled {
  background-color: #f5f5f5;
  color: #999;
  cursor: not-allowed;
  opacity: 0.7;
  border-color: #ddd;
}

.form-input:disabled:focus,
.form-textarea:disabled:focus,
.form-select:disabled:focus {
  border-color: #ddd;
  box-shadow: none;
  transform: none;
}

.form-submit .btn:disabled {
  background-color: #ccc;
  border-color: #ccc;
  color: #666;
  cursor: not-allowed;
  opacity: 0.7;
}

.form-submit .btn:disabled:hover {
  background-color: #ccc;
  border-color: #ccc;
  color: #666;
  transform: none;
  box-shadow: none;
}

/* Phone Number Validation */
.form-input.valid {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.form-input.invalid {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.phone-error {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  display: block;
  font-weight: 500;
}

.email-error,
.field-error {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  display: block;
  font-weight: 500;
}

/* Phone input specific styling */
#phone {
  font-family: 'Courier New', monospace;
  letter-spacing: 0.5px;
}

#phone::placeholder {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  letter-spacing: normal;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
  position: relative;
  z-index: 10;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e63946 0%, #d4a017 100%);
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.2);
  font-size: 1.5rem;
}

.social-link:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  background: linear-gradient(135deg, #d4a017 0%, #e63946 100%);
  border-color: rgba(255, 255, 255, 0.4);
}

.social-link:active {
  transform: translateY(-1px) scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--bg-dark) 100%);
  color: white;
  padding: 3rem 0;
  text-align: center;
  border-top: 2px solid var(--primary-color);
}

.footer p {
  margin: 0;
  opacity: 0.9;
  font-weight: 500;
}

/* Vote section */
.vote-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 3rem 0;
  text-align: center;
  margin: 2rem 0;
}

.vote-date {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
  color: white;
}

.vote-hours {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #0d47a1;
  letter-spacing: 0.1em;
}

.vote-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.vote-buttons .btn {
  padding: 1rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: all 0.3s ease;
  background-color: #475569;
  border-color: #475569;
  color: white;
}

.vote-buttons .btn:hover {
  background-color: #334155;
  border-color: #334155;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(71, 85, 105, 0.3);
}



/* Carousel Styles */
.carousel {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 2rem auto;
  overflow: hidden;
}

.carousel-container {
  position: relative;
  width: 100%;
  height: 450px;
  margin: 0 auto;
  overflow: hidden;
  padding: 1rem 0;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  height: 100%;
  gap: 1rem;
  padding: 0 0.5rem;
}

.carousel-slide {
  flex: 0 0 calc(33.333% - 0.667rem);
  min-width: calc(33.333% - 0.667rem);
  height: 100%;
  position: relative;
}

.carousel-slide {
  flex: 0 0 calc(33.333% - 0.667rem);
  min-width: calc(33.333% - 0.667rem);
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-image {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(44, 85, 48, 0.1);
  transition: transform 0.3s ease;
  background-color: #f8f9fa;
  padding: 0.5rem;
}

.carousel-image:hover {
  transform: scale(1.02);
}

.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(44, 85, 48, 0.8);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 20px;
  cursor: pointer;
  z-index: 2;
  transition: background-color 0.3s ease;
}

.carousel-button:hover {
  background: rgba(44, 85, 48, 1);
}

.carousel-button.prev {
  left: 10px;
}

.carousel-button.next {
  right: 10px;
}

/* Additional martial arts inspired elements */
.strength-bar {
  height: 4px;
  background: #2c5530;
  margin: 2rem 0;
  border-radius: 2px;
}

.discipline-section {
  background: var(--bg-light);
  border-left: 6px solid var(--primary-color);
  padding: 2rem;
  margin: 2rem 0;
  border-radius: 0 8px 8px 0;
}

.leadership-accent {
  color: var(--secondary-color);
  font-weight: 600;
}

/* Alerts */
.alert {
  padding: 1rem;
  margin: 1rem 0;
  border-radius: 6px;
  position: relative;
}

.alert-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.alert-danger {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.alert-info {
  background-color: #cce7ff;
  color: #004085;
  border: 1px solid #b8daff;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-header {
  padding: 2rem 2rem 1rem 2rem;
  border-bottom: 1px solid #eee;
}

.modal-header h3 {
  margin: 0;
  color: var(--text-dark);
  font-size: 1.5rem;
  font-weight: 600;
}

.modal-body {
  padding: 2rem;
}

.modal-body p {
  margin-bottom: 1.5rem;
  color: var(--text-color);
  font-size: 1.1rem;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-color);
  position: relative;
}

.checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkmark {
  width: 20px;
  height: 20px;
  background-color: white;
  border: 2px solid #ddd;
  border-radius: 4px;
  position: relative;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all 0.3s ease;
}

.checkbox-label:hover .checkmark {
  border-color: var(--primary-color);
}

.checkbox-label input[type="checkbox"]:checked ~ .checkmark {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.checkbox-label input[type="checkbox"]:checked ~ .checkmark::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.modal-footer {
  padding: 1rem 2rem 2rem 2rem;
  display: flex;
  justify-content: center;
}

.modal-footer .btn {
  min-width: 120px;
}

/* Responsive Design */
@media (max-width: 768px) {
  /* Global mobile adjustments */
  .container {
    padding: 0 1rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  /* Navigation */
  .mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
  }
  
  .hamburger-line {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px 0;
    transition: 0.3s;
    border-radius: 2px;
  }
  
  .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }
  
  .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: left 0.3s ease;
    z-index: 1000;
    padding: 0;
    margin: 0;
  }
  
  .nav-links.active {
    left: 0;
  }
  
  .nav-links li {
    margin: 1rem 0;
    list-style: none;
  }
  
  .nav-links .nav-link {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
  }
  
  .nav-links .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
  }
  
  /* Hero Section */
  .hero {
    padding: 4rem 0;
    text-align: center;
  }
  
  .hero .vote-text {
    font-size: 2.5rem;
  }
  
  .hero .display-1 {
    font-size: 3rem;
    margin: 0.5rem 0;
  }
  
  .hero .council-text {
    font-size: 1.5rem;
    margin: 0.5rem 0;
  }
  
  .hero .fight-text {
    font-size: 2.5rem;
    margin: 1rem 0;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
  }
  
  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
  }
  
  .social-links {
    margin-top: 2rem;
    gap: 1.5rem;
  }
  
  .social-link {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  
  /* Platform Section */
  .content-box {
    margin: 1rem 0;
    padding: 1.5rem;
  }
  
  .content-box h2 {
    font-size: 1.5rem;
  }
  
  .content-box p {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .content-box ul {
    font-size: 0.95rem;
  }
  
  /* Vote Section */
  .vote-section {
    padding: 3rem 0;
  }
  
  .vote-date {
    font-size: 2rem;
  }
  
  .vote-hours {
    font-size: 1.2rem;
  }
  
  .vote-buttons {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    max-width: 320px;
  }
  
  .vote-buttons .btn {
    width: 100%;
    padding: 1rem 1.5rem;
    min-height: 56px;
    font-size: 0.85rem;
  }
  
  /* Donate Section */
  .donate-options {
    flex-direction: column;
    gap: 2rem;
  }
  
  .donate-card {
    padding: 2rem 1.5rem;
  }
  
  .donate-card h3 {
    font-size: 1.5rem;
  }
  
  .donate-button {
    width: 100%;
    max-width: 280px;
    padding: 1rem 2rem;
  }
  
  .info-card {
    padding: 1.5rem;
    margin: 1rem 0;
  }
  
  .info-card p {
    font-size: 0.95rem;
  }
  
  /* Contact Form */
  .contact-form {
    padding: 2rem 1.5rem;
    margin: 1rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .form-group {
    margin-bottom: 1.5rem;
  }
  
  .form-label {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  
  .form-input,
  .form-select,
  .form-textarea {
    font-size: 1rem;
    padding: 0.75rem;
  }
  
  .form-submit .btn {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
  }
  
  /* About Section */
  .about-content .content-box {
    padding: 2rem 1.5rem;
    margin: 1rem 0;
  }
  
  .about-content p {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .about-content .section-header h2 {
    font-size: 2rem;
  }
  
  .about-content .highlight {
    font-size: 1.1rem;
  }
  
  /* Footer */
  .footer {
    padding: 2rem 0;
  }
  
  .footer p {
    font-size: 0.9rem;
    text-align: center;
  }
  
  /* Modal mobile styles */
  .modal-content {
    width: 95%;
    margin: 1rem;
  }
  
  .modal-header {
    padding: 1.5rem 1.5rem 1rem 1.5rem;
  }
  
  .modal-header h3 {
    font-size: 1.3rem;
  }
  
  .modal-body {
    padding: 1.5rem;
  }
  
  .checkbox-label {
    font-size: 0.95rem;
    gap: 0.75rem;
  }
  
  .modal-footer {
    padding: 1rem 1.5rem 1.5rem 1.5rem;
  }
}

/* Extra small devices (phones in portrait) */
@media (max-width: 480px) {
  .hero .display-1 {
    font-size: 2.5rem;
  }
  
  .hero .vote-text {
    font-size: 2rem;
  }
  
  .hero .fight-text {
    font-size: 2rem;
  }
  
  .hero .council-text {
    font-size: 1.2rem;
  }
  
  .contact-form {
    padding: 1.5rem 1rem;
  }
  
  .content-box {
    padding: 1rem;
  }
  
  .vote-date {
    font-size: 1.5rem;
  }
  
  .section-header h2 {
    font-size: 1.75rem;
  }
}

/*# sourceMappingURL=styles.css.map*/