/* Reset & Base Styles */
:root {
  --primary-color: #1a1a1a;
  --secondary-color: #ffffff;
  --accent-color: #e63946; /* Red for urgency */
  --text-color: #333333;
  --light-bg: #f8f9fa;
  --border-radius: 8px;
  --transition: all 0.3s ease;
  --font-main: "Inter", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--secondary-color);
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

/* Header */
header {
  background-color: var(--secondary-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 15px 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container .main-logo {
  height: 60px;
  width: auto;
}

nav ul {
  display: flex;
  gap: 30px;
}

nav a {
  font-weight: 600;
  color: var(--primary-color);
  transition: var(--transition);
}

nav a:hover {
  color: var(--accent-color);
}

.party-logos {
  display: flex;
  gap: 15px;
  align-items: center;
}

.party-logo {
  height: 40px;
  width: auto;
  opacity: 0.8;
  transition: var(--transition);
}

.party-logo:hover {
  opacity: 1;
}

/* Hero Section */
.hero {
  background:
    linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url("https://source.unsplash.com/random/1920x1080/?student,protest,school")
      no-repeat center center/cover;
  background-color: #333;
  color: white;
  padding: 120px 0;
  text-align: center;
}

.strike-banner {
  background-color: var(--accent-color);
  display: inline-block;
  padding: 10px 20px;
  border-radius: 50px;
  margin-bottom: 20px;
  animation: pulse 2s infinite;
}

.strike-banner h2 {
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: white;
  margin: 0;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(230, 57, 70, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(230, 57, 70, 0);
  }
}

/* Legal Alert */
.legal-alert {
  background-color: #ffcc00; /* Warning Yellow */
  padding: 30px 0;
  border-bottom: 5px solid #000;
}

.legal-content {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.legal-icon {
  font-size: 4rem;
  line-height: 1;
}

.legal-text h2 {
  color: #000;
  font-size: 2rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: 800;
}

.legal-subtitle {
  font-size: 1.2rem;
  color: #000;
  margin-bottom: 20px;
}

.legal-quote {
  background-color: rgba(255, 255, 255, 0.6);
  padding: 15px;
  border-left: 5px solid #000;
  border-radius: 4px;
}

.legal-quote p {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #000;
}

.legal-quote cite {
  font-weight: 700;
  display: block;
  text-align: right;
  font-size: 0.9rem;
  color: #333;
}

@media (max-width: 768px) {
  .legal-content {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .legal-quote {
    text-align: left;
  }
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero .subtitle {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 40px;
  opacity: 0.9;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
}

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

.primary-btn:hover {
  background-color: #d62839;
  transform: translateY(-2px);
}

/* Section Common */
.section-padding {
  padding: 80px 0;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.section-desc {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
  color: #666;
  font-size: 1.1rem;
}

/* Cards Grid */
.grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.card {
  background: white;
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  border-top: 4px solid var(--accent-color);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.card h3 {
  margin-bottom: 15px;
  color: var(--primary-color);
}

.card p {
  color: #555;
  font-size: 0.95rem;
}

/* Comitato Section */
.bg-light {
  background-color: var(--light-bg);
}

.content-block {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.action-list {
  margin-top: 30px;
}

.action-list li {
  margin-bottom: 20px;
  padding-left: 20px;
  border-left: 3px solid #2a9d8f; /* Greenish for action */
}

/* Action Cards */
.action-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.strike-card {
  border: 3px solid var(--accent-color);
  background-color: #fff0f0;
  transform: scale(1.05);
}

.strike-card h3 {
  color: var(--accent-color) !important;
  font-weight: 800;
  font-size: 2rem !important;
}

.action-card {
  flex: 1;
  min-width: 250px;
  max-width: 350px;
  text-align: center;
  padding: 30px;
  border: 1px solid #eee;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.action-card:hover {
  background-color: var(--primary-color);
  color: white;
}

.action-card:hover h3 {
  color: white;
}

.action-card h3 {
  margin-bottom: 15px;
  color: var(--primary-color);
  font-size: 1.5rem;
}

/* Footer */
footer {
  background-color: var(--primary-color);
  color: white;
  padding: 40px 0;
  text-align: center;
}

.footer-logo {
  height: 50px;
  margin-bottom: 20px;
}

.footer-content p {
  opacity: 0.7;
  margin-bottom: 20px;
}

.social-links a {
  margin: 0 10px;
  color: white;
  opacity: 0.8;
  transition: var(--transition);
}

.social-links a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    gap: 20px;
  }

  nav ul {
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero h1 {
    font-size: 2.5rem;
  }
}
