

body {
  font-family: Georgia, serif;
  font-size: 16px;
  line-height: 1.6;
  background-color: #f2f2f2;
  color: #333333;
}



header {
  background-color: #2c3e50;
  color: #ffffff;
  text-align: center;
  padding: 30px 20px;
}

header h1 {
  font-size: 2.5em;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
}


.tagline {
  font-style: italic;
  font-size: 3em;
  color: #cccccc;
  margin-top: 8px;
}



nav {
  background-color: #3498db;
  padding: 0;
  width: 100%;
}


nav ul {
  list-style-type: none;
  display: flex;
  justify-content: center;
  padding: 0;
}


nav ul li a {
  display: block;
  padding: 14px 22px;
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.9em;
}


nav ul li a:hover {
  background-color: #e67e22;
}


nav ul li a.active {
  background-color: #e67e22;
}



main {
  max-width: 960px;
  margin: 30px auto;
  padding: 0 20px;
}



.section-block {
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-left: 5px solid #3498db;
  border-radius: 5px;
  padding: 25px 30px;
  margin-bottom: 20px;
}



h1, h2, h3, h4, h5, h6 {
  font-family: Georgia, serif;
  color: #2c3e50;
  margin-bottom: 12px;
}

h2 {
  font-size: 1.8em;
  border-bottom: 2px solid #3498db;
  padding-bottom: 8px;
  margin-bottom: 16px;
}

h3 { font-size: 1.4em; }
h4 { font-size: 1.2em; }
h5 { font-size: 1.05em; }
h6 {
  font-size: 1em;
  text-transform: uppercase;
  letter-spacing: 1px;
}



p {
  margin-bottom: 12px;
  text-align: left;
}



a {
  color: #3498db;
  text-decoration: none;
}

a:hover {
  color: #e67e22;
  text-decoration: underline;
}

a:visited {
  color: #7f8c8d;
}


.highlight {
  color: #e67e22;
  font-weight: bold;
}



.profile-img {
  display: block;
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #3498db;
  float: right;
  margin-left: 20px;
  margin-bottom: 10px;
}



.photo-gallery {
  display: flex;
  gap: 16px;
  margin: 16px 0;
}

.gallery-item {
  flex: 1;
  border: 2px solid #dddddd;
  border-radius: 5px;
  overflow: hidden;
  text-align: center;
}

.gallery-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.photo-caption {
  font-size: 0.85em;
  color: #666666;
  padding: 8px;
  margin: 0;
}



blockquote {
  border-left: 4px solid #e67e22;
  background-color: #fef9f3;
  padding: 16px 20px;
  margin: 16px 0;
  font-style: italic;
  color: #555555;
  border-radius: 0 5px 5px 0;
}

.quote-author {
  display: block;
  margin-top: 8px;
  font-style: normal;
  font-weight: bold;
  font-size: 0.9em;
  color: #2c3e50;
}


/* ---- Inline quote ---- */
q {
  font-style: italic;
  color: #e67e22;
  font-weight: bold;
}


/* ---- Abbreviation ---- */
abbr {
  text-decoration: underline dotted;
  cursor: help;
  font-weight: bold;
}


/* ---- Lists ---- */
ul.page-list,
ul.social-list,
ul.tradition-list,
ul.hobby-list {
  list-style-type: disc;
  padding-left: 22px;
  margin-bottom: 12px;
}

ul li {
  margin-bottom: 6px;
}

ol {
  list-style-type: decimal;
  padding-left: 22px;
  margin-bottom: 12px;
}

ol li {
  margin-bottom: 6px;
}


/* ---- Data tables ---- */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 0.95em;
}

th {
  background-color: #2c3e50;
  color: #ffffff;
  padding: 10px 14px;
  text-align: left;
  font-weight: bold;
}

td {
  padding: 9px 14px;
  border-bottom: 1px solid #dddddd;
}

/* Pseudo-class: zebra stripe on even rows */
tr:nth-child(even) {
  background-color: #f8f8f8;
}

tr:hover {
  background-color: #eaf4fb;
}


/* ---- Details / Summary accordion ---- */
details {
  border: 1px solid #dddddd;
  border-radius: 5px;
  margin-bottom: 10px;
}

summary {
  background-color: #f0f0f0;
  padding: 12px 16px;
  cursor: pointer;
  font-weight: bold;
  color: #2c3e50;
  border-radius: 5px;
  list-style: none;
}

summary:hover {
  background-color: #ddeeff;
}

/* Attribute selector: styles summary when details is open */
details[open] summary {
  background-color: #3498db;
  color: #ffffff;
  border-radius: 5px 5px 0 0;
}

.details-content {
  padding: 14px 16px;
}


/* ---- Video and map wrappers ---- */
.video-wrapper,
.map-wrapper {
  width: 100%;
  max-width: 580px;
  margin: 16px auto;
  border: 3px solid #3498db;
  border-radius: 5px;
  overflow: hidden;
}

.video-wrapper iframe,
.map-wrapper iframe {
  display: block;
  width: 100%;
  border: none;
}


/* ---- Family member profile blocks ---- */
.family-member {
  border-bottom: 1px dashed #dddddd;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.family-img {
  float: left;
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 5px;
  border: 3px solid #3498db;
  margin: 0 16px 10px 0;
}


/* ---- Footer ---- */
footer {
  background-color: #2c3e50;
  color: #cccccc;
  text-align: center;
  padding: 20px;
  margin-top: 30px;
  font-size: 0.9em;
}

footer a {
  color: #3498db;
  text-decoration: none;
}

footer a:hover {
  color: #e67e22;
}

.footer-note {
  margin-top: 6px;
  font-size: 0.82em;
  color: #999999;
  margin-bottom: 0;
}.uW0KdRZNGQA {
}
