/* The Compassionate Friends of South Central Minnesota - Classic style inspired by original Twenty Ten theme */

:root {
  --header-bg: #1a5276;
  --header-text: #ffffff;
  --link: #21759b;
  --link-hover: #d54e21;
  --text: #333333;
  --text-light: #666666;
  --border: #e1e1e1;
  --sidebar-bg: #f9f9f9;
  --content-bg: #ffffff;
  --footer-bg: #1a5276;
}

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

body {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: #f0f0f0;
}

a {
  color: var(--link);
  text-decoration: none;
}

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

/* Layout */
#wrapper {
  max-width: 960px;
  margin: 0 auto;
  background: var(--content-bg);
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* Header */
#header {
  background: #1a5276 url('header-banner.png') no-repeat center center;
  background-size: cover;
  color: var(--header-text);
  padding: 0;
  min-height: 120px;
  border-bottom: 4px solid #154360;
  position: relative;
}

#header .header-inner {
  padding: 25px 30px;
  background: linear-gradient(to right, rgba(26,82,118,0.75) 0%, rgba(26,82,118,0.35) 55%, rgba(26,82,118,0.15) 100%);
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#header h1 {
  font-size: 1.55rem;
  font-weight: normal;
  margin-bottom: 4px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

#header h1 a {
  color: var(--header-text);
  text-decoration: none;
}

#header .description {
  font-size: 0.95rem;
  opacity: 0.95;
  font-style: italic;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* Navigation */
#access {
  background: #154360;
  padding: 0 20px;
}

#access ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}

#access li {
  margin: 0;
}

#access a {
  display: block;
  color: #fff;
  padding: 12px 16px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.95rem;
  text-decoration: none;
}

#access a:hover,
#access .current a {
  background: #1a5276;
  color: #fff;
}

/* Main content area */
#main {
  display: flex;
  flex-wrap: wrap;
  padding: 25px 30px 40px;
  gap: 30px;
}

#content {
  flex: 1 1 600px;
  min-width: 0;
}

#primary {
  flex: 0 0 240px;
}

/* Typography in content */
#content h1,
#content h2 {
  font-size: 1.6rem;
  font-weight: normal;
  color: #1a5276;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.4rem;
}

#content h3 {
  font-size: 1.2rem;
  color: #1a5276;
  margin: 1.4rem 0 0.5rem;
}

#content p {
  margin-bottom: 1rem;
}

#content ul {
  margin: 0 0 1rem 1.5rem;
}

#content li {
  margin-bottom: 0.4rem;
}

/* Sidebar */
.widget {
  background: var(--sidebar-bg);
  border: 1px solid var(--border);
  padding: 15px 18px;
  margin-bottom: 20px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.92rem;
}

.widget h3 {
  font-size: 1rem;
  color: #1a5276;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 6px;
  font-family: Georgia, serif;
}

.widget p {
  margin-bottom: 0.6rem;
}

.widget a {
  color: var(--link);
}

/* Meeting box highlight */
.meeting-box {
  background: #eaf4f9;
  border: 1px solid #b8d4e3;
  padding: 14px 16px;
  margin: 1.2rem 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.95rem;
}

.meeting-box strong {
  color: #1a5276;
}

/* Credo styling */
.credo {
  background: #f7f7f7;
  border-left: 4px solid #1a5276;
  padding: 16px 20px;
  margin: 1.5rem 0;
  font-style: italic;
  color: #555;
  line-height: 1.7;
}

.credo p {
  margin-bottom: 0.9rem;
}

.credo p:last-child {
  margin-bottom: 0;
}

/* Contact list */
.contact-list {
  list-style: none;
  margin: 0 0 1rem 0;
}

.contact-list li {
  padding: 6px 0;
  border-bottom: 1px solid #eee;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.95rem;
}

.contact-list li:last-child {
  border-bottom: none;
}

.contact-list .role {
  font-weight: bold;
  color: #1a5276;
  display: inline-block;
  min-width: 170px;
}

/* Footer */
#footer {
  background: var(--footer-bg);
  color: #fff;
  padding: 18px 30px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.9rem;
  text-align: center;
}

#footer a {
  color: #a8d0e6;
}

#footer a:hover {
  color: #fff;
}

/* Responsive */
@media (max-width: 780px) {
  #main {
    flex-direction: column;
  }
  #primary {
    flex: 1 1 auto;
    order: 2;
  }
  #content {
    order: 1;
  }
  #access ul {
    flex-direction: column;
  }
  #access a {
    padding: 10px 16px;
  }
}
