:root {
    --text-color: #1A1A1A; 
    --background-color: #F1E9D2;
    --primary-accent: #0022aa; 
    --card-bg: rgba(255, 255, 255, 0.95);
}

body {
  background-color: var(--background-color);
  color: var(--text-color);
  margin: 0;
  padding: 0;
  position: relative;
  min-height: 100vh;
  font-family: system-ui, -apple-system, sans-serif;
  scroll-behavior: smooth;
} 

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/background.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  filter: blur(5px);
  z-index: -1; 
}

/* Navigation Bar */
.navbar { 
  background-color: var(--primary-accent); 
  padding: 15px 40px; 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  border-radius: 0 0 30px 30px; 
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: sticky; /* Keeps navbar at the top when scrolling */
  top: 0;
  z-index: 100;
}

.logo-text {
  color: #FFFFFF; 
  text-decoration: none;
  font-weight: bold;
  font-size: 22px;
}

/* Dropdown Menu */
.dropdown { 
  position: relative; 
  display: inline-block; 
}

.drop-down-button { 
  background-color: rgba(255, 255, 255, 0.1); 
  color: white; 
  padding: 8px 16px; 
  font-size: 16px; 
  border: none; 
  border-radius: 20px;
  cursor: pointer; 
  transition: background 0.2s ease;
}

.drop-down-button:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.dropdown-content { 
  display: none; 
  position: absolute; 
  background-color: #FFFFFF; 
  min-width: 160px;
  box-shadow: 0px 8px 24px rgba(0,0,0,0.15); 
  z-index: 10; 
  top: calc(100% + 5px); 
  right: 0; 
  border-radius: 12px;
  overflow: hidden;
}

.dropdown-content a { 
  color: #141414; 
  padding: 12px 16px; 
  text-decoration: none; 
  display: block; 
  transition: background 0.2s ease;
}

.dropdown-content a:hover { 
  background-color: #F1E9D2; 
  color: var(--primary-accent);
}

.dropdown:hover .dropdown-content { 
  display: block; 
}

/* Main Content Area */
.home-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

.intro-section {
  text-align: center;
  background-color: var(--card-bg);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  margin-bottom: 40px;
}

.intro-section h1 {
  font-size: 42px;
  margin-top: 0;
  margin-bottom: 15px;
  color: var(--primary-accent);
}

.intro-section p {
  font-size: 20px;
  line-height: 1.6;
  margin: 0;
}

.amendment-card {
  text-align: center;
  background-color: var(--card-bg);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  margin-bottom: 25px;
  scroll-margin-top: 90px; 
}

.amendment-card h2 {
  font-size: 28px;
  margin-top: 0;
  margin-bottom: 15px;
  color: var(--primary-accent);
  border-bottom: 2px solid var(--background-color);
  padding-bottom: 10px;
}

.amendment-card p {
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
}

.amendment-image {
    width: 100%;
    max-width: 380px;
    height: auto;
    border-radius: 12px;
    margin-top: 25px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
    display: block;
    margin-left: auto;
    margin-right: auto;
    transition: transform 0.3s ease;
}

