/* Modern CSS for Loreto Pilgrim House Website - FTP Ready */
/* No build tools required - works directly on any web server */

/* CSS Reset and Base Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #2d3748;
  background-color: #fefdf8;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* CSS Custom Properties for Design System */
:root {
  /* Colors */
  --color-primary: #d4af37;
  --color-primary-dark: #b8860b;
  --color-secondary: #1e3a8a;
  --color-secondary-light: #3b82f6;
  --color-accent: #8b1538;
  --color-background: #fefdf8;
  --color-surface: #ffffff;
  --color-text: #2d3748;
  --color-text-light: #718096;
  --color-border: #e2e8f0;
  
  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  
  /* Border radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  
  /* Container */
  --container-max-width: 1200px;
  --container-padding: var(--space-md);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: var(--space-md);
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.875rem);
}

p {
  margin-bottom: var(--space-sm);
  text-align: justify;
}

a {
  color: var(--color-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--color-accent);
  text-decoration: underline;
}

/* Layout Components */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section {
  padding: var(--space-xl) 0;
}

/* Grid System */
.grid {
  display: grid;
  gap: var(--space-md);
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Flexbox Utilities */
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

/* Button Component */
.btn {
  display: inline-block;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  text-decoration: none;
}

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

.btn-primary:hover {
  background-color: var(--color-primary-dark);
  color: white;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

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

.btn-secondary:hover {
  background-color: var(--color-secondary-light);
  color: white;
  text-decoration: none;
}

/* Card Component */
.card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease;
}

.card:hover {
  box-shadow: var(--shadow-md);
}

/* Image Utilities */
.img-responsive {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
}

/* History Section Styling */
.history {
  background: var(--color-surface);
}

.history__image {
  display: block;
  line-height: 0;
}

.history__image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease;
  display: block;
}

.history__image:hover img {
  transform: scale(1.02);
}

.history__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-lg);
  min-height: 100%;
}

.history__text h2 {
  color: var(--color-secondary);
  margin-bottom: var(--space-lg);
}

.history__text p {
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

.history__text .btn {
  margin-top: var(--space-lg);
  align-self: flex-start;
}

/* Header and Navigation */
.header {
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) 0;
  gap: var(--space-md);
  position: relative;
}

.nav__brand {
  flex-shrink: 0;
}

.nav__logo img {
  height: auto;
  max-height: 60px;
  width: auto;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
  gap: 4px;
}

.nav__toggle-line {
  width: 24px;
  height: 3px;
  background: var(--color-text);
  transition: all 0.3s ease;
}

.nav__menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--space-md);
  align-items: center;
}

.nav__link {
  display: block;
  padding: var(--space-xs) var(--space-sm);
  color: var(--color-text);
  font-weight: 500;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.nav__link:hover {
  background: var(--color-primary);
  color: white;
  text-decoration: none;
}

.nav__item--active .nav__link {
  background: var(--color-primary);
  color: white;
}

.nav__languages {
  display: flex;
  gap: var(--space-xs);
  align-items: center;
}

.lang-link {
  display: block;
  padding: var(--space-xs);
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  opacity: 0.7;
}

.lang-link:hover,
.lang-link--active {
  opacity: 1;
  transform: scale(1.1);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--color-background) 0%, #f7f3e9 100%);
  padding: var(--space-xl) 0;
  text-align: center;
}

/* Page Header (for subpages) */
.page-header {
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-light) 100%);
  color: white;
  padding: var(--space-xl) 0;
  text-align: center;
}

.page-header h1 {
  color: white;
  margin-bottom: var(--space-sm);
  font-size: clamp(2rem, 4vw, 2.5rem);
}

.page-header__subtitle {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 0;
}

.hero__image {
  width: 100%;
  max-width: 653px;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  margin-bottom: var(--space-lg);
}

.hero__text h1 {
  color: var(--color-secondary);
  margin-bottom: var(--space-md);
}

.hero__subtitle {
  font-size: 1.125rem;
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero__actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* Section Styling */
.section:nth-child(even) {
  background: #faf9f6;
}

.section__subtitle {
  font-size: 1.125rem;
  color: var(--color-text-light);
  text-align: center;
  margin-bottom: var(--space-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Accommodation Section */
.accommodation {
  background: var(--color-surface);
}

.accommodation h2 {
  text-align: center;
  color: var(--color-secondary);
  margin-bottom: var(--space-sm);
}

.accommodation__features {
  margin-top: var(--space-xl);
  background: var(--color-background);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
}

.features-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-sm);
}

.features-list li {
  padding: var(--space-xs) 0;
  padding-left: var(--space-md);
  position: relative;
}

.features-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

/* Call to Action */
.cta {
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-light) 100%) !important;
  color: white;
  text-align: center;
  padding: var(--space-xl) 0;
  margin: var(--space-xl) 0;
}

.cta__content {
  max-width: 800px;
  margin: 0 auto;
}

.cta h2 {
  color: white !important;
  margin-bottom: var(--space-md);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta p {
  color: white !important;
  font-size: 1.25rem;
  margin-bottom: var(--space-xl);
  opacity: 0.95;
  line-height: 1.6;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.cta__actions {
  display: flex;
  gap: var(--space-lg);
  justify-content: center;
  flex-wrap: wrap;
}

.cta .btn-primary {
  background: var(--color-primary) !important;
  color: white !important;
  border: 2px solid var(--color-primary) !important;
  font-weight: 600;
  font-size: 1.1rem;
  padding: var(--space-md) var(--space-xl);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  text-decoration: none;
}

.cta .btn-primary:hover {
  background: var(--color-primary-light) !important;
  border-color: var(--color-primary-light) !important;
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.cta .btn-secondary {
  background: rgba(255, 255, 255, 0.25) !important;
  color: white !important;
  border: 2px solid rgba(255, 255, 255, 0.9) !important;
  font-weight: 600;
  font-size: 1.1rem;
  padding: var(--space-md) var(--space-xl);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

.cta .btn-secondary:hover {
  background: white !important;
  color: var(--color-secondary) !important;
  border-color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
  background: var(--color-text);
  color: white;
  padding: var(--space-xl) 0 var(--space-lg);
}

.footer__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.footer__section h3 {
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.footer__section a {
  color: white;
  text-decoration: none;
}

.footer__section a:hover {
  color: var(--color-primary);
}

.footer__bottom {
  border-top: 1px solid #374151;
  padding-top: var(--space-md);
  text-align: center;
  font-size: 0.875rem;
  color: #9ca3af;
}

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

*:focus {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
  :root {
    --container-padding: var(--space-sm);
  }
  
  .section {
    padding: var(--space-lg) 0;
  }
  
  .nav__toggle {
    display: flex;
  }
  
  .nav__menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-surface);
    flex-direction: column;
    padding: var(--space-md);
    box-shadow: var(--shadow-lg);
    z-index: 1000;
  }
  
  .nav__menu.nav__menu--open {
    display: flex;
  }
  
  h1 {
    text-align: center;
  }
  
  .hero__actions,
  .cta__actions {
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
  }
  
  .hero__actions .btn,
  .cta__actions .btn {
    width: 100%;
    max-width: 320px;
    font-size: 1rem;
    padding: var(--space-md) var(--space-lg);
  }
  
  .cta {
    padding: var(--space-lg) 0;
    margin: var(--space-lg) 0;
  }
  
  .cta h2 {
    font-size: 1.75rem;
  }
  
  .cta p {
    font-size: 1.125rem;
    margin-bottom: var(--space-lg);
  }
  
  .footer__content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer__section {
    text-align: center;
    margin-bottom: var(--space-lg);
  }
  
  .footer__section h3 {
    text-align: center;
  }
  
  .footer__section p,
  .footer__section address {
    text-align: center;
  }
  
  .footer__languages {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
  }
  
  .footer__languages a {
    display: inline-block;
    text-align: center;
  }
  
  /* History section mobile adjustments */
  .history__image {
    margin-bottom: var(--space-lg);
  }
  
  .history__text {
    padding: var(--space-md);
  }
}

/* Contact Page Styles */
.contact-info__details {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-item h3 {
  color: var(--color-secondary);
  margin-bottom: var(--space-sm);
}

.contact-item address {
  font-style: normal;
  line-height: 1.6;
}

.contact-item a {
  font-weight: 500;
}

/* Contact Form */
.contact-form {
  background: var(--color-surface);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 500;
  color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: var(--space-sm);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.form-group small {
  display: block;
  margin-top: var(--space-xs);
  color: var(--color-text-light);
  font-size: 0.875rem;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Map Section */
.map-container {
  margin-bottom: var(--space-lg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
}

.map-info h3 {
  color: var(--color-secondary);
  margin-bottom: var(--space-md);
  text-align: center;
}

.map-info h4 {
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

/* Contact page responsive */
@media (max-width: 768px) {
  .contact-form {
    padding: var(--space-md);
  }
  
  .map-container iframe {
    height: 300px;
  }
}

/* Sanctuary Page Styles */
.sanctuary-intro__text h2 {
  color: var(--color-secondary);
  margin-bottom: var(--space-md);
}

.sanctuary-quote,
.cemetery-quote {
  background: var(--color-background);
  border-left: 4px solid var(--color-primary);
  padding: var(--space-lg);
  margin: var(--space-lg) 0;
  font-style: italic;
  border-radius: var(--radius-md);
}

.sanctuary-quote cite,
.cemetery-quote cite {
  display: block;
  margin-top: var(--space-sm);
  font-style: normal;
  font-weight: 500;
  color: var(--color-text-light);
  text-align: right;
}

.work-highlights {
  margin: var(--space-xl) 0;
}

.work-item {
  background: var(--color-surface);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.work-item h3 {
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.papal-highlight {
  font-size: 1.125rem;
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-light) 100%);
  color: white;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  margin: var(--space-lg) 0;
}

.foundress-content,
.work-content,
.cemetery-content,
.papal-content {
  max-width: none;
}

.sacred-house,
.foundress-connection,
.sisters-loreto,
.apostolic-work,
.cemetery-care {
  background: var(--color-background);
}

.sacred-house:nth-child(odd),
.foundress-connection:nth-child(odd),
.sisters-loreto:nth-child(odd),
.apostolic-work:nth-child(odd),
.cemetery-care:nth-child(odd) {
  background: var(--color-surface);
}

/* Sisters Page Styles */
.foundation-highlight {
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-light) 100%) !important;
  color: white !important;
  padding: var(--space-lg) !important;
  border-radius: var(--radius-lg) !important;
  margin: var(--space-lg) 0 !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

.foundation-highlight h3 {
  color: white !important;
  margin-bottom: var(--space-sm) !important;
  font-size: 1.5rem !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
  font-weight: 600 !important;
}

.foundation-highlight p {
  color: white !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2) !important;
  line-height: 1.6 !important;
  margin: 0 !important;
}

.foundation-highlight strong {
  color: white !important;
  font-weight: 700 !important;
}

.timeline {
  margin: var(--space-xl) 0;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-primary);
}

.timeline-item {
  display: flex;
  margin-bottom: var(--space-lg);
  position: relative;
}

.timeline-year {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: var(--color-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.875rem;
  margin-right: var(--space-lg);
  position: relative;
  z-index: 1;
}

.timeline-content {
  flex: 1;
  background: var(--color-surface);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.timeline-content h4 {
  color: var(--color-secondary);
  margin-bottom: var(--space-sm);
}

.love-quote {
  background: var(--color-background);
  border-left: 4px solid var(--color-primary);
  padding: var(--space-lg);
  margin: var(--space-lg) 0;
  font-style: italic;
  border-radius: var(--radius-md);
  font-size: 1.125rem;
}

.motto-highlight {
  text-align: center;
  background: var(--color-surface);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  margin: var(--space-lg) 0;
}

.motto {
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-primary);
  font-family: var(--font-heading);
  margin: var(--space-md) 0;
}

.death-highlight,
.beatification-highlight {
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-light) 100%);
  color: white;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  margin: var(--space-lg) 0;
  text-align: center;
}

.death-highlight h3,
.beatification-highlight h3 {
  color: white;
  margin-bottom: var(--space-sm);
}

.mission-focus {
  background: var(--color-background);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  margin: var(--space-lg) 0;
  border-left: 4px solid var(--color-secondary);
}

.mission-focus h3 {
  color: var(--color-secondary);
  margin-bottom: var(--space-sm);
}

.apostolate-areas {
  margin-top: var(--space-xl);
}

.apostolate-item {
  background: var(--color-surface);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.apostolate-item h4 {
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

/* Sisters page responsive */
@media (max-width: 768px) {
  .timeline::before {
    left: 15px;
  }
  
  .timeline-year {
    width: 30px;
    height: 30px;
    font-size: 0.75rem;
    margin-right: var(--space-md);
  }
  
  .timeline-content {
    padding: var(--space-md);
  }
  
  .motto {
    font-size: 1.5rem;
  }
}

/* Cemetery Page Styles */
.cemetery-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

.stat-item {
  text-align: center;
  background: var(--color-surface);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  font-family: var(--font-heading);
}

.stat-label {
  display: block;
  margin-top: var(--space-sm);
  color: var(--color-text-light);
  font-weight: 500;
}

.tragedy-note {
  background: #fee;
  border-left: 4px solid #dc2626;
  padding: var(--space-lg);
  margin: var(--space-lg) 0;
  border-radius: var(--radius-md);
}

.battle-highlight,
.loreto-liberation,
.final-victory,
.anders-memorial {
  background: var(--color-surface);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  margin: var(--space-lg) 0;
  border-left: 4px solid var(--color-primary);
}

.battle-highlight h3,
.loreto-liberation h3,
.final-victory h3 {
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.casualties-box,
.total-casualties {
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-light) 100%);
  color: white;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  margin: var(--space-lg) 0;
  text-align: center;
}

.casualties-box h3,
.total-casualties h3 {
  color: white;
  margin-bottom: var(--space-lg);
}

.casualties-stats,
.total-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: var(--space-lg);
  margin: var(--space-lg) 0;
}

.casualty-item,
.total-item {
  text-align: center;
}

.casualty-number,
.total-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: white;
  font-family: var(--font-heading);
}

.casualty-label,
.total-label {
  display: block;
  margin-top: var(--space-xs);
  font-size: 0.875rem;
  opacity: 0.9;
}

.cemetery-info {
  background: var(--color-background);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  margin: var(--space-lg) 0;
}

.cemetery-info h3 {
  color: var(--color-secondary);
  margin-bottom: var(--space-md);
}

.cemetery-info ul {
  list-style-type: none;
  padding-left: 0;
}

.cemetery-info li {
  margin-bottom: var(--space-sm);
  position: relative;
  padding-left: var(--space-lg);
}

.cemetery-info li::before {
  content: '•';
  color: var(--color-primary);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.cemetery-info ul ul {
  margin-top: var(--space-sm);
  margin-left: var(--space-lg);
}

.guardians-highlight {
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-light) 100%) !important;
  color: white !important;
  padding: var(--space-xl) !important;
  border-radius: var(--radius-lg) !important;
  text-align: center !important;
  font-size: 1.125rem !important;
  margin: var(--space-lg) 0 !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

.guardians-highlight p {
  color: white !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2) !important;
  line-height: 1.6 !important;
  margin: 0 !important;
}

.guardians-highlight strong {
  color: white !important;
  font-weight: 700 !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3) !important;
}

/* Cemetery page responsive */
@media (max-width: 768px) {
  .cemetery-stats {
    grid-template-columns: 1fr;
  }
  
  .casualties-stats,
  .total-stats {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: var(--space-md);
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .casualty-number,
  .total-number {
    font-size: 1.5rem;
  }
}

/* Print Styles */
@media print {
  .header,
  .footer,
  .hero__actions,
  .cta,
  .map-container {
    display: none;
  }
  
  .contact-form {
    box-shadow: none;
    border: 1px solid #ccc;
  }
  
  * {
    background: transparent !important;
    color: black !important;
    box-shadow: none !important;
  }
}
