/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #fdfaf4;
  color: #2a1e1e;
  font-family: 'Libre Baskerville', serif;
  font-size: 18px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  color: #6b2e2e;
  letter-spacing: 0.03em;
  margin-bottom: 1rem;
}

p {
  font-size: 1.15rem;
  color: #333;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

strong {
  font-weight: bold;
}

/* Section Backgrounds */
#section-truths {
  background: #fff9f2;
}

#section-purpose {
  background: #f8f1e6;
}

#section-abolish {
  background: #f4eee3;
}

#section-prudence {
  background: #f2ece2;
}

#section-duty {
  background: #efe9de;
}

#section-king {
  background: #ede6d8;
}

#section-final-appeals {
  background: #fdf8f0;
}

#section-british-appeal {
  background: #faf4e7;
}

#section-declaration {
  background: #f8f0e0;
}

#section-pledge {
  background: #f3eadd;
}

#section-grievances {
  background: #f8f4ec;
}

#section-signatures {
  background: #f7f2e8;
}

/* Section Layouts */
.parallax-section {
  min-height: 100vh;
  padding: 6rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.parallax-section .content {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.parallax-section h2,
.parallax-section p {
  opacity: 0;
  transform: translateY(20px);
}

/* Intro Block */
#intro {
  position: relative;
  background: url('https://images.unsplash.com/photo-1562164038-91cfe1d7cbce?q=80&w=2071&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') center center / cover no-repeat;
  color: #2a1e1e;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 3rem;
  z-index: 1;
  overflow: hidden;
}

#intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.88) 20%, rgba(255, 255, 255, 0.95) 85%);
  z-index: 0;
}

.intro-block {
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(40px);
  max-width: 800px;
  margin-bottom: 2rem;
  transition: all 0.3s ease-out;
}


.block-1 {
  font-size: 3rem;
  font-weight: bold;
}

.block-2 {
  font-size: 2rem;
  font-style: italic;
  color: #7a0f0f;
}

.block-3 {
  font-size: 1.2rem;
  line-height: 1.8;
}

/* Highlighted Words */
.highlight.keyword {
  display: inline-block;
  font-weight: bold;
  color: #9c2b2b;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.5s ease-out;
}

/* Dramatic Lead-In Section */
#section-facts.dramatic-lead-in,
.dramatic-lead-in {
  background: #1a1a1a;
  color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  padding: 2rem;
  text-align: center;
  z-index: 10;
  position: relative;
}

.lead-line {
  font-size: 3rem;
  font-weight: 700;
  max-width: 900px;
  line-height: 1.4;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
  letter-spacing: 0.03em;
  color: #f5f5f5;
  z-index: 10;
}

/* Grievances Section */
#section-grievances {
  padding: 4rem 2rem;
}

.grievance-list {
  max-width: 900px;
  margin: 0 auto;
}

.grievance {
  background: #fffdf9;
  border-left: 4px solid #b04c4c;
  padding: 1rem 1.5rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  transition: background 0.3s ease;
}

.grievance:nth-child(even) {
  background: #fefaf5;
}

/* Emphasis Paragraphs */
.emphasis {
  font-style: italic;
  font-weight: 600;
  color: #861d1d;
  background: rgba(255, 235, 235, 0.75);
  padding: 0.4rem 0.8rem;
  border-left: 4px solid #d32f2f;
  display: inline-block;
  margin: 1rem 0;
  line-height: 1.6;
  font-size: 1.1rem;
  box-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.05);
  border-radius: 4px;
}

.emphasis.strong {
  font-size: 1.25rem;
  font-weight: 700;
  color: #a11919;
  background: rgba(255, 220, 220, 0.9);
  border-left: 5px solid #b71c1c;
}

/* Signatures Section */
#section-signers {
  padding: 4rem 2rem;
  text-align: center;
}

#section-signers h2 {
  font-family: 'Merriweather', serif;
  font-size: 2.5rem;
  color: #532e2e;
  margin-bottom: 3rem;
}

.signer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.signer-column {
  text-align: left;
  padding-left: 1rem;
  border-left: 2px solid #ddd;
}

.signer-column h3 {
  font-size: 1.2rem;
  font-family: 'Merriweather', serif;
  color: #3a1f1f;
  margin-bottom: 1rem;
}

.signature {
  font-family: 'Great Vibes', cursive;
  font-size: 1.3rem;
  color: #3b2c24;
  margin-bottom: 0.5rem;
  transition: transform 0.3s ease;
}

.signature:hover {
  transform: scale(1.04);
  color: #5a382a;
}

/* Responsive Enhancements */
@media screen and (max-width: 768px) {
  h2 {
    font-size: 2rem;
  }

  .intro-block {
    font-size: 1.1rem;
  }

  .highlight.keyword {
    font-size: 1.2rem;
  }

  .lead-line {
    font-size: 2.2rem;
  }

  .signature-group {
    flex: 1 1 100%;
  }
}