@charset "UTF-8";
.header {
  min-height: 600px;
  background: linear-gradient(rgb(22, 56, 29), rgba(22, 56, 29, 0.4));
  background-size: cover;
}

.header .list-group-item {
  background: #e2bfb6;
  color: #16381d;
}

.AboutUs {
  scroll-margin-top: 9rem;
}

.contact {
  scroll-margin-top: 9rem;
}

.donations {
  scroll-margin-top: 9rem;
}

.mission {
  scroll-margin-top: 9rem;
}

#sign .form-control {
  border-radius: 9px;
}

.gallery {
  scroll-margin-top: 6rem;
  min-height: 600px;
  background-image: linear-gradient(to bottom, rgba(22, 56, 29, 0.4), rgba(36, 51, 19, 0.4), rgba(45, 46, 14, 0.4), rgba(51, 40, 12, 0.4), rgba(55, 35, 15, 0.4), rgba(58, 30, 18, 0.4), rgba(58, 26, 23, 0.4), rgba(57, 22, 28, 0.4), rgba(55, 19, 35, 0.4), rgba(49, 18, 42, 0.4), rgba(38, 19, 50, 0.4), rgba(19, 22, 56, 0.4));
  background-size: cover;
}

.footer {
  background: linear-gradient(rgba(19, 22, 56, 0.4), rgb(19, 22, 56));
}

.trails {
  color: rgba(249, 2, 2, 0.8) !important;
}

.directions button {
  color: #023020 !important;
}

.sponsors a {
  color: #023020 !important;
}

.sponsors a:hover {
  color: #bbe9d9 !important;
}

.sponsors a:focus {
  color: #023020 !important;
}

.header .responsive-iframe {
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  min-height: 300px;
}

.header .slide {
  width: 70%;
  margin: 0 auto;
}

.navbar {
  transition: all 0.5s ease-in-out;
}

.navbar-sticky {
  opacity: 0.9;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.modal-dialog {
  max-width: 1040px;
}

.paypal-button {
  width: 100% !important;
  align-content: center;
}

.download {
  background: url("../images/download-background.jpg") center center no-repeat;
  background-size: cover;
}

.map iframe {
  left: 0;
  top: 0;
  height: 400px;
  width: 100%;
  border: none;
}

.form-list {
  width: 50%;
}

.contact-form {
  width: 50% !important;
}

.donations {
  width: 100% !important;
  display: flex !important;
  justify-content: center !important;
}

@media (max-width: 1000px) {
  .hero .image-container {
    display: flex;
    justify-content: center;
  }
  .hero .text-container {
    text-align: center;
  }
  .summary {
    margin-top: 0 !important;
    width: 90% !important;
  }
}
.invitation-bg {
  background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url("../images/invitation-background.jpg") center center no-repeat;
  background-size: cover;
}

@media (max-width: 992px) {
  .navbar {
    background: var(--bs-dark);
  }
  .form-list {
    width: 75% !important;
  }
  .contact-form {
    width: 75% !important;
  }
  .my-archive {
    width: 75% !important;
    height: 1000px;
    overflow-y: scroll;
  }
  .header {
    min-height: 800px !important;
  }
  .header .text-container p {
    width: 100% !important;
    font-size: 16px;
  }
  .summary {
    margin-top: 0 !important;
    width: 90% !important;
  }
}
:root {
  --ink: var(--bs-dark);
  --rust: #e2bfb6;
  --muted: #16381d;
  --rule: var(--rust);
  --card-bg: var(--bs-light);
}

* {
  box-sizing: border-box;
}

body {
  color: var(--ink);
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: 300;
  line-height: 1.7;
  min-width: 320px !important;
}

/* ── Archive header ── */
.archive-header {
  padding: 3rem 0 1.5rem;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 2rem;
}

.archive-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--bs-light);
  margin: 0;
}

/* ── Year dividers ── */
.year-divider {
  font-family: "Playfair Display", serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bs-light);
  padding: 0.5rem 0;
  border-top: 1px solid var(--rule);
  margin: 2.5rem 0 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.year-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--rule);
}

/* ── Issue card with thumbnail ── */
.issue-card {
  background: var(--card-bg);
  border: 1px solid var(--rule);
  margin-bottom: 2rem;
  display: grid;
  grid-template-columns: 130px 1fr;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
  animation-delay: 0.05s;
}

.issue-card:hover {
  border-color: var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
}

.issue-thumb {
  display: flex;
  align-items: stretch;
  min-height: 150px;
  position: relative;
  overflow: hidden;
}

/* thumbnail column */
.issue-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Content column */
.issue-content {
  padding: 1.2rem 1.4rem;
}

.issue-meta {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink);
}

.issue-title {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink);
}

.issue-excerpt {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.55;
}

.btn-read {
  font-family: "Source Serif 4", serif;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--bs-light);
  border: none;
  padding: 0.38rem 0.85rem;
  transition: background 0.2s;
}

.btn-read:hover {
  background: var(--rust);
  color: white;
}

.btn-download {
  font-family: "Source Serif 4", serif;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--rust);
  color: var(--muted);
  border: 1px solid var(--rule);
  padding: 0.38rem 0.85rem;
  transition: border-color 0.2s, color 0.2s;
}

.btn-download:hover {
  border-color: var(--muted);
  color: var(--rust);
  background: var(--ink);
}

/* ── Featured latest issue ── */
.featured-card {
  background: var(--ink);
  color: var(--cream);
  margin-bottom: 2rem;
  display: grid;
  grid-template-columns: 130px 1fr;
  overflow: hidden;
  transition: transform 0.2s;
}

.featured-card:hover {
  transform: translateY(-2px);
  border-color: var(--rust);
  box-shadow: 3px 3px 0 var(--rust);
}

.featured-thumb {
  display: flex;
  align-items: stretch;
  min-height: 170px;
  position: relative;
  overflow: hidden;
}

.featured-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.featured-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.featured-content::before {
  content: "Latest Issue";
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bs-light);
  display: block;
  margin-bottom: 0.75rem;
}

.featured-content .issue-title {
  font-size: 1.5rem;
  color: var(--bs-light);
  margin-bottom: 0.5rem;
}

.featured-content .issue-excerpt {
  color: var(--bs-light);
  margin-bottom: 1.2rem;
}

.featured-content .issue-meta {
  color: var(--bs-light);
}

.featured-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.btn-read-featured {
  font-family: "Source Serif 4", serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--rust);
  color: var(--ink);
  border: none;
  padding: 0.5rem 1.1rem;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}

.btn-read-featured:hover {
  background: #9a3e1e;
  color: #fbf9f5;
}

.btn-download-featured {
  font-family: "Source Serif 4", serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: #9a3e1e;
  color: #fbf9f5;
  border: 1px solid var(--bs-light);
  padding: 0.5rem 1.1rem;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s, color 0.2s;
}

.btn-download-featured:hover {
  border-color: var(--primary);
  color: #9a3e1e;
  background: var(--bs-light);
}

.member-form {
  background: #aec6cf;
}

.sponsor-text {
  text-indent: 30px;
}

@media (max-width: 1000px) {
  .issue-card {
    grid-template-columns: 110px 1fr !important;
  }
  .issue-thumb {
    min-height: 150px !important;
  }
  .featured-card {
    grid-template-columns: 110px 1fr !important;
  }
  .featured-thumb {
    min-height: 170px !important;
  }
}
@media (max-width: 992px) {
  .issue-card {
    grid-template-columns: 90px 1fr !important;
  }
  .issue-thumb {
    min-height: 170px !important;
  }
  .featured-card {
    grid-template-columns: 90px 1fr !important;
  }
  .featured-thumb {
    min-height: 190px !important;
  }
}
@media (max-width: 768px) {
  .my-archive {
    width: 75%;
    height: 100%;
    overflow-y: scroll !important;
  }
  .custom-scrollbar {
    scrollbar-width: thin;
    scrollbar-color: var(--bs-light) var(--bs-secondary);
  }
  .issue-card {
    display: inline-block;
    min-height: 160px !important;
    margin-right: 3px;
  }
  .issue-thumb {
    display: none;
  }
  .featured-card {
    display: inline-block;
    min-height: 240px !important;
    margin-right: 3px;
  }
  .featured-thumb {
    display: none;
  }
}
.weather-data {
  width: 100%;
  height: 450px;
  border: 0;
}

.calendar-border {
  border: solid 1px #777;
}

.map-border {
  border: 0;
}

.newsletter-style {
  border: solid 1px #777;
  overflow-y: scroll;
  overflow-x: scroll;
}

.ratio-2 {
  --bs-aspect-ratio: 200%;
}

btn.btn-form {
  border-radius: 15px;
  margin: 6px;
  background-color: #e2bfb6;
}
btn.btn-form:hover, btn.btn-form:active {
  border: 1px solid blue;
  background-color: var(--bs-dark);
  color: var(--bs-light);
}
btn.btn-form:active {
  transform: translateY(4px);
}

section.header {
  min-height: 100vh;
  position: relative;
  padding-bottom: 1rem;
}
section.header .container.member-form {
  height: auto;
}
section.header .container.paypal-checkout {
  height: auto;
  min-width: 320px;
}

.input-group .form-control,
.input-group .form-select {
  border-radius: 0.375rem;
}

.paypal-checkout {
  min-width: 320px;
  max-width: 100%;
  overflow: hidden;
}
.paypal-checkout h3 {
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.paypal-checkout #paypal-container-9BJZUM6G2WB6W,
.paypal-checkout #paypal-container-6V2RQUDTULRU6,
.paypal-checkout #paypal-container-Q29KUYC4TXTNG {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}
.paypal-checkout #paypal-container-9BJZUM6G2WB6W > div,
.paypal-checkout #paypal-container-6V2RQUDTULRU6 > div,
.paypal-checkout #paypal-container-Q29KUYC4TXTNG > div {
  display: flex;
  justify-content: center;
  width: 100%;
}

.sign-paypal {
  width: 300px;
  max-width: 100%;
}
