/* Global Styles */
:root {
  --primary-color: #663399; /* Purple - Dr. Anita's favorite color */
  --secondary-color: #f8f8f8;
  --text-color: #333;
  --accent-color: #9370DB; /* Medium Purple */
  --font-primary: 'Georgia', serif;
  --font-secondary: 'Helvetica', 'Arial', sans-serif;
}

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

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--secondary-color);
  padding: 0;
  margin: 0;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
  background-color: white;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

header {
  text-align: center;
  padding: 40px 20px;
  background-color: white;
  border-bottom: 2px solid var(--primary-color);
}

h1 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-weight: normal;
}

h2 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin: 30px 0 15px;
  font-weight: normal;
  border-bottom: 1px solid #eee;
  padding-bottom: 5px;
}

.subtitle {
  font-size: 1.2rem;
  color: #666;
  font-family: var(--font-secondary);
  margin-bottom: 20px;
}

.photo-container {
  text-align: center;
  margin: 30px auto;
}

.memorial-photo {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  max-height: 500px;
}

.content {
  padding: 20px;
}

p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.section {
  margin-bottom: 40px;
}

.dates {
  font-style: italic;
  color: #666;
}

footer {
  text-align: center;
  padding: 30px 20px;
  background-color: var(--primary-color);
  color: white;
  font-family: var(--font-secondary);
  margin-top: 40px;
}

.quote {
  font-style: italic;
  border-left: 4px solid var(--accent-color);
  padding-left: 20px;
  margin: 30px 0;
  color: #555;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .container {
    padding: 10px;
  }
  
  .content {
    padding: 15px;
  }
}