:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #FFFAF2;
  color: #102c17;
  line-height: 1.6;
}
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
}










/* Font Styling */


.cormorant-garamond-regular {
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.nunito-regular {
  font-family: "Nunito", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.cinzel-decorative-regular {
  font-family: "Cinzel Decorative", serif;
  font-weight: 400;
  font-style: normal;
}

.cinzel-decorative-bold {
  font-family: "Cinzel Decorative", serif;
  font-weight: 700;
  font-style: normal;
}

.cinzel-decorative-black {
  font-family: "Cinzel Decorative", serif;
  font-weight: 900;
  font-style: normal;
}
.protest-strike-regular {
  font-family: "Protest Strike", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* Typography adjustments */
h1 {
    font-family: "Protest Strike";
    font-size: 3rem;
}
h2 {
    font-family: "Cormorant Garamond";
    margin: 0 0 1rem;
    font-size: 2rem;
    line-height: 1.05;
    color: #408758;
}
h3 {
  color: #720000;
}
p {
    font-family: "Nunito";
    margin: 0;
    color: #0D490C;
}








/* Colors */
/* 
#D8FFCF-mint green
#0D490C-dark green
#8B0000-red
#408758-green
#FFFAF2-cream
 */
.gallery, .heritage {
  background-color: #FFFAF2;
}
#contact {
  background-color: #0D490C;
}
.events, .updates, .partners {
  background-color: #D8FFCF;
}







.section {
  margin-top: 20px auto;
  padding: 20px;
  display: block;
  text-align: center;
  text-align: center;
  min-height: 300 px;
}
.section-intro {
width: 100%;
  max-width: 920px;
  margin: 0 auto 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}









/* Banner Video */
#home {
  padding: 0;
  min-height: 80vh;
}
.video-container {
  margin: 0;
  padding: 0;
  width: 100%;
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
}
#bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  padding: 5rem 0 3rem;
  color: #f8fafc;
  display: flex;
  align-items: center;
}
.hero-content {
  max-width: 760px;
  text-align: right;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-end;
  padding: 2rem;
}
.hero h1 {
  font-size: clamp(2.75rem, 5vw, 4rem);
  margin: 0 0 1rem;
  line-height: 1.05;
  color: #8B0000;
  text-shadow:
    -2px -2px 3px rgba(255, 250, 242, 0.5),
    2px -2px 3px rgba(255, 250, 242, 0.5),
    -2px 2px 3px rgba(255, 250, 242, 0.5),
    2px 2px 3px rgba(255, 250, 242, 0.5),
    -3px 0 4px rgba(255, 250, 242, 0.3),
    3px 0 4px rgba(255, 250, 242, 0.3),
    0 -3px 4px rgba(255, 250, 242, 0.3),
    0 3px 4px rgba(255, 250, 242, 0.3);
}
.hero h2 {
  color: #0D490C;
  text-shadow:
    -2px -2px 3px rgba(255, 250, 242, 0.5),
    2px -2px 3px rgba(255, 250, 242, 0.5),
    -2px 2px 3px rgba(255, 250, 242, 0.5),
    2px 2px 3px rgba(255, 250, 242, 0.5),
    -3px 0 4px rgba(255, 250, 242, 0.3),
    3px 0 4px rgba(255, 250, 242, 0.3),
    0 -3px 4px rgba(255, 250, 242, 0.3),
    0 3px 4px rgba(255, 250, 242, 0.3);
}
.hero p {
  max-width: 42rem;
  margin: 0 0 2rem;
  font-size: 1.05rem;
  color: #D8FFCF;
  text-shadow:
    -2px -2px 3px rgba(117, 109, 95, 0.5),
    2px -2px 3px rgba(117, 109, 95, 0.5),
    -2px 2px 3px rgba(117, 109, 95, 0.5),
    2px 2px 3px rgba(117, 109, 95, 0.5),
    -3px 0 4px rgba(117, 109, 95, 0.3),
    3px 0 4px rgba(117, 109, 95, 0.3),
    0 -3px 4px rgba(117, 109, 95, 0.3),
    0 3px 4px rgba(117, 109, 95, 0.3);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}









/* Formatting for Blog and Events */

.event-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: none;
  justify-content: center;
  gap: 20px;
 
}
.event-card {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 400px;
  height: 500px;
  overflow: hidden;
}
.event-image {
  width: 100%;
  height: 250px;
  flex-shrink: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, #d1fae5, #bbf7d0);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #065f46;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.event-copy {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  text-align: left;
}




.blog-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.blog-card {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  width: 100%;
  max-width: 920px;
  min-height: 340px;
  display: flex;
  gap: 0;
}
.blog-card > div:first-child {
  flex: 1 1 42%;
  overflow: hidden;
}
.blog-card > div:last-child {
  flex: 1 1 58%;
  padding: 24px 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.85rem;
}
.blog-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.blog-copy {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: left;
}
.blog-meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.blog-author {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b705c;
}
.blog-date {
  margin: 0;
  font-size: 0.9rem;
  color: #8b0000;
}
.blog-card h3 {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 2vw, 2.1rem);
  line-height: 1.05;
}
.blog-card p {
  margin: 0;
  color: #475a43;
  font-size: 1rem;
  line-height: 1.7;
}
@media (max-width: 900px) {
  .blog-card {
    flex-direction: column;
  }
  .blog-card > div:first-child,
  .blog-card > div:last-child {
    width: 100%;
    flex: none;
  }
  .blog-card > div:last-child {
    padding: 24px;
  }
}






/* Photo Gallery Styling and Formatting */


.gallery-grid {
  columns: 3 280px;
  column-gap: 1rem;
}

.gallery-item {
  display: inline-block;
  width: 100%;
  margin: 0 0 1rem;
  break-inside: avoid;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

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





/* Memorial Formatting */
.memorial {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 40px;
}
.heritage-card {
  margin: 20px;
  max-width: 900px;
  padding-bottom: 40px;
}
.team-back {
  width: 100%;
  max-width: 1600px;
  min-height: 500px;
  background-image: url(/images/bellbucklebanner.webp);
  background-size: cover;
  background-position: center;
  mask-image: radial-gradient(black 60%, transparent 100%);
  z-index: 0;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 0;
  position: relative;
}
.team-card {
  background-color: #bbf7d0;
  width: 280px;
  height: 350px;
  z-index: 2;
  position: relative;
  scroll-snap-align: center;
  flex: 0 0 auto;
}
.team {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.team img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  
}
.team-name {
  position: absolute;
  padding: 10px 16px;
  top: 320px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(16, 44, 23, 0.92);
  color: #FFFAF2;
  font-size: 18px;
  font-family: "Cinzel Decorative";
  border-radius: 20px;
  text-align: center;
  width: auto;
  width: 240px;
  z-index: 2;
}
.obitdate {
  display: block;
  margin-top: 0.25rem;
  font-size: 15px;
  font-family: "Nunito";
  color: #FFFAF2;
}






/* Carousel */
.carousel {
  display: flex;
  gap: 1.5rem;
  /* width: min(100%, 1280px); */
  width: 1600px;
  height: 500px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  margin: 0 20px;
}
.carousel::-webkit-scrollbar {
  display: none;
}
.carousel {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(16, 44, 23, 0.55);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}
.carousel-prev {
  left: 100px;
}
.carousel-next {
  right: 100px;
}

.carousel-nav:disabled {
  opacity: 0.35;
  cursor: default;
}

@media (max-width: 768px) {
  .carousel-prev {
    left: 6px;
  }

  .carousel-next {
    right: 6px;
  }
}







/* URL Link Styling throughout site */

.heritage a:link {
  background-color: transparent;
  text-decoration: none;
  color: #FFFAF2;
}
.heritage a:hover {
  background-color: transparent;
  text-decoration: underline;
}
.heritage a:visited {
  color: #FFFAF2;
  background-color: transparent;
  text-decoration: none;
}
.zeffy a:link {
  background-color: transparent;
  text-decoration: none;
  color: #FFFAF2;
}
.footer-column a {
  color: #408758;
  text-decoration: none;
  font-weight: 600;
}
.footer-column a:hover {
  text-decoration: underline;
}



/* Community Partners */

.friends {
  display: flex;
}






/* Get In Touch */

#contact {
  padding: 0px;
  margin: 0px;
}
.contact-grid {
  display: flex;
}
.contact {
  background-color: #D8FFCF;
  padding: 50px 40px;
  flex: 1;
}
.contact p {
  font-size: 1.25em;
}
.email {
  background-color: #0D490C;
}
#support {
  font-size: 4rem;
}


/* Donation Button */
.zeffy-button {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-radius: 20px;
  background-color: #0D490C;
  padding: 20px 30px;
  font-size: 2rem;
  color: #FFFAF2;
  text-decoration: none;
  transition: all 0.3s ease;
  width: fit-content;
  margin: 0 auto;
}

.zeffy-button img {
  height: 40px;
  width: auto;
}

.zeffy-button:hover {
  background-color: #0a3608;
  transform: scale(1.05);
}






.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 3rem;
  position: relative;
}
#title {
  text-align: center;
}

.site-nav {
  position: absolute;
  left: 0;
  top: 0.9rem;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 25;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.dropdown {
  position: relative;
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: rgba(13, 73, 12, 0.75);
  backdrop-filter: blur(8px);
  min-width: 200px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  top: 100%;
  left: 0;
  z-index: 30;
  border: 3px solid #0D490C;
  border-radius: 8px;
  animation: slideDown 0.3s ease-out;
}
.dropdown:hover .dropdown-content {
  display: block;
  animation: slideDown 0.3s ease-out;
}
.dropdown-content a {
  color: #D8FFCF;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  transition: all 0.2s ease;
}
.dropdown-content a:hover {
  background-color: #408758;
  padding-left: 20px;
}

.dropdown-content .site-nav {
  position: static !important;
  transform: none !important;
  left: auto !important;
  top: auto !important;
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}

.dropdown-content .nav-list {
  flex-direction: column;
  gap: 0;
}

.dropbtn {
  align-items: center;
  background-image: linear-gradient(144deg,#D8FFCF, #0D490C 50%,#408758);
  border: 0;
  border-radius: 8px;
  box-shadow: rgba(151, 65, 252, 0.2) 0 15px 30px -5px;
  box-sizing: border-box;
  color: #FFFFFF;
  display: flex;
  font-family: Phantomsans, sans-serif;
  font-size: 20px;
  justify-content: center;
  line-height: 1em;
  max-width: 100%;
  min-width: 140px;
  padding: 10px;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  white-space: nowrap;
  cursor: pointer;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}









/* Form Styling */
.contact-card.email {
  padding: 40px;
  color: #FFFAF2;
}

.contact-card.email h2 {
  color: #FFFAF2;
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.form-row {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
  flex: 1;
}

.form-row .form-group {
  margin-bottom: 0;
}

label {
  color: #FFFAF2;
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.required {
  color: #ff6b6b;
  font-weight: bold;
}

input[type="text"],
input[type="email"],
textarea {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #FFFAF2;
  color: #FFFAF2;
  padding: 0.75rem 0;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
textarea::placeholder {
  color: rgba(255, 250, 242, 0.5);
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-bottom-color: #D8FFCF;
}

textarea {
  resize: vertical;
  min-height: 150px;
  font-family: "Nunito", sans-serif;
}

input[type="submit"] {
  background-color: transparent;
  color: #FFFAF2;
  border: 2px solid #FFFAF2;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  border-radius: 4px;
  align-self: flex-start;
}

input[type="submit"]:hover {
  background-color: #FFFAF2;
  color: #0D490C;
}

.success-message {
  text-align: center;
  padding: 2rem;
  background-color: #D8FFCF;
  border-radius: 8px;
  border: 2px solid #408758;
}

.success-message h3 {
  color: #0D490C;
  margin: 0 0 1rem;
  font-size: 1.5rem;
}

.success-message p {
  color: #0D490C;
  margin: 0;
  font-size: 1.1rem;
}

.contact-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #0D490C;
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact-form-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  background-color: #0D490C;
  padding-right: 30px;
  padding-bottom: 20px;
}

.form-title {
  color: #FFFAF2;
  font-size: clamp(1.75rem, 2vw, 2.5rem);
  margin: 0 0 2rem;
  padding: 40px 40px 0;
  line-height: 1.2;
  width: 100%;
}

.form-content {
  display: flex;
  flex: 1;
}

.contact-card.email {
  flex: 1;
  background-color: #0D490C;
}

@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  
  .contact-card.email {
    padding: 20px;
  }

  .contact-grid {
    flex-direction: column;
  }

  .contact-image {
    min-height: 300px;
  }

  .form-content {
    flex-direction: column;
  }

  .form-title {
    padding: 20px 20px 0;
  }
}




/* Footer */
.site-footer {
  background-color: #FFFAF2;
  border-top: 3px solid #408758;
  padding: 3rem 2rem 1rem;
}

.footer-content {
  display: flex;
  gap: 3rem;
  margin: 10px;
  border-bottom: 2px solid #D8FFCF;
  justify-content: space-between;
}

.footer-column {
  padding: 30px;
}

.footer-column h2 {
  margin: 0 0 1rem;
  font-size: 2.5rem;
  color: #408758;
}

.footer-column p {
  margin: 0.5rem 0;
  color: #0D490C;
  font-size: 1.25rem;
}

.footer-spacer {
  flex: 0.25;
}

.footer-bottom {
  text-align: center;
  padding-top: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-bottom p {
  margin: 0;
  color: #0D490C;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .footer-spacer {
    display: none;
  }
  
  .site-footer {
    padding: 2rem 1rem 1rem;
  }
}




