@charset "UTF-8";
/*
Theme Name: My Theme BASE
Author: Kenichi Shinagawa
Description: Original theme for my site.
Version: 1.0
*/

/* ================================================================ 
  GLOBAL STYLES
=================================================================== */
* {
  word-break: unset;
  word-wrap: unset;
  -webkit-font-smoothing: unset;
}

html {
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.02em;
}

ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

ol li {
  list-style: decimal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 10px 0;
  letter-spacing: 0.02em;
}

p {
  margin: 0 0 20px;
}

section {
  padding: unset;
}

a {
  color: unset;
  &:hover {
    color: #fcba03;
  }
}

button {
  color: unset;
  padding: unset;
  border: unset;
  background: unset;
  text-transform: unset;
  cursor: pointer;
}

body {
  position: relative;
  overflow-x: hidden;
  overflow-y: scroll;
  margin: 0;
  padding: 0;
  width: 100vw;
}

hr {
  border: unset;
  border-top: 1px solid #ddd;
  width: 100%;
  margin: 40px 0;
}

/* ================================================================ 
  Header
=================================================================== */

#site-header {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100px;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
  z-index: 10;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#site-header.scrolled {
  height: 60px;
  transition: all 0.3s ease-in-out;
}

.header-titles-wrapper {
  padding-left: 40px;
}

.header-titles {
  margin: 0;
}

.header-inner {
  display: flex;
  height: 100%;
}

.primary-logo {
  display: inline-block;
  height: 100px;
  transition: all 0.3s ease-in-out;
}

#site-header.scrolled .primary-logo {
  height: 60px;
  transition: all 0.3s ease-in-out;
}

.header-navigation-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}

@media screen and (max-width: 1040px) {
  .header-navigation-wrapper {
    align-items: flex-start;
    justify-content: flex-end;
  }
}

.primary-menu-wrapper {
  height: 100%;
  padding: 0 20px;
}

@media screen and (max-width: 1040px) {
  .primary-menu-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    height: 100%;
    padding: 0;
  }
}

.primary-menu {
  display: flex;
  column-gap: 40px;
  align-items: center;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 1040px) {
  .primary-menu {
    display: none;
    flex-direction: column;
    background-color: #eee;
    height: auto;
  }
  .primary-menu.show-menu {
    display: flex;
    position: absolute;
    top: 100px;
    transition: all 0.3s ease-in-out;
  }
  .primary-menu.scrolled {
    top: 60px;
    transition: all 0.3s ease-in-out;
  }
}

.primary-menu li {
  font-weight: 600;
  text-transform: uppercase;
}

@media screen and (max-width: 1040px) {
  .primary-menu li {
    padding: 20px 0;
    text-align: center;
  }
}

.primary-menu a {
  text-decoration: none;
  color: #666;
  &:hover {
    color: #fcba03;
    cursor: pointer;
  }
}

.primary-menu .current-menu-item a {
  color: #fcba03;
}

#hamburger-button {
  display: none;
  width: 60px;
  height: 60px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  fill: #333;
  padding: 15px;
  margin-right: 20px;
}

#close-menu-button {
  display: none;
  width: 60px;
  height: 60px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  fill: #333;
  padding: 15px;
  margin-right: 20px;
}

@media screen and (max-width: 1040px) {
  #hamburger-button {
    display: block;
  }
  #hamburger-button.show-menu {
    display: none;
  }
  #close-menu-button.show-menu {
    display: block;
  }
}

.content-page-toggle-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 10px;
}

@media screen and (min-width: 1040px) {
.content-page-toggle-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 10px;
  padding-right: 40px;
}
  
}

@media screen and (max-width: 1040px) {
  .content-page-toggle-container {
    display: none;
  }
}

.mobile-menu-container {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}

.mobile-menu-container .primary-menu {
  display: flex;
  column-gap: 40px;
  align-items: center;
  width: 100%;
  height: 100%;
}

.mobile-menu-container .mobile-toggle-wrapper {
  display: none;
}

@media screen and (max-width: 1040px) {
  .mobile-menu-container {
    display: none;
    position: absolute;
    top: 100px;
    left: 0;
    right: 0;
    height: unset;
    background-color: #fff;
    box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease-in-out;
    flex-direction: column;
    align-items: stretch;
  }
  .mobile-menu-container.show-menu {
    display: flex;
  }
  .mobile-menu-container.scrolled {
    top: 60px;
    transition: all 0.3s ease-in-out;
  }
  .mobile-menu-container .primary-menu {
    display: flex;
    width: 100%;
    padding: 20px 0 0 0;
    margin: 0;
  }
  .mobile-menu-container .mobile-toggle-wrapper {
    display: flex;
    padding: 20px;
    border-top: 1px solid #ddd;
    justify-content: center;
  }
  .mobile-toggle-wrapper .content-page-toggle-container {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .mobile-toggle-wrapper .page-toggle-switch {
    max-width: 300px;
  }
}

.page-toggle-switch {
  display: flex;
  align-items: center;
  background-color: #f0f0f0;
  border-radius: 20px;
  padding: 2px;
  height: 36px;
  position: relative;
}

.toggle-option {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  height: 100%;
  border-radius: 18px;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  color: #666;
  text-decoration: none;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  z-index: 1;
}

.toggle-option:hover {
  color: #333;
}

.toggle-option-active {
  background-color: #fff;
  color: #333;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  cursor: default;
  pointer-events: none;
}

/* ================================================================ 
  Footer
=================================================================== */

#site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 60px;
  min-height: 360px;
  background-color: rgb(17, 48, 86);
  padding: 60px 80px;
  color: rgb(142, 169, 220);
  & a {
    color: rgb(142, 169, 220);
    &:hover {
      color: #fcba03;
    }
  }
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 200px;
  column-gap: 100px;
}

@media screen and (max-width: 1040px) {
  #site-footer {
    padding: 60px 40px;
  }
  .footer-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    row-gap: 40px;
  }
}

.footer-column {
  display: flex;
  flex-direction: column;
  & h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
  }
}

.footer-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.contact-container {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}

.contact-line {
  display: flex;
  align-items: center;
  column-gap: 12px;
  font-size: 16px;
  font-weight: 400;
}

.contact-icon {
  width: 16px;
  height: 16px;
  color: rgb(142, 169, 220);
}

.footer-credits {
  display: flex;
  align-items: center;
  justify-content: center;
}

.to-the-top {
  opacity: 0;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background-color 0.3s ease-in-out;
  &:hover svg {
    fill: #fcba03;
  }
}

/* ================================================================ 
  General Page styles
=================================================================== */
.page-hero-area {
  position: relative;
  width: 100vw;
  height: 200px;
}

.page-hero-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: circle(9200px at right 40% top -9000px);
}

.page-hero-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 200px;
  background: url('images/hero-image-short.jpg') top no-repeat;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* WebP support for page hero */
.webp .page-hero-container {
  background-image: url('images/hero-image-short.webp');
}

.page-hero-message h1 {
  position: relative;
  font-size: 48px;
  font-family: 'Bebas Neue', sans-serif;
  color: #fcba03;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  margin-bottom: 10px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.page-content {
  width: 80%;
}

.page-content h2 {
  text-align: center;
  color: #fff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.2;
  margin-top: 60px;
}

.page-content h3 {
  text-align: center;
  color: #fff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.2;
  margin-top: 60px;
}

.page-content h4 {
  text-align: center;
  color: #fff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2;
  margin-top: 20px;
}

.page-content ol {
  width: 60%;
  margin: 0 auto;
  list-style: decimal;
  text-align: left;
}

@media screen and (max-width: 800px) {
  .page-content {
    width: 90%;
  }
  .page-content ol {
    width: 100%;
  }
}

/* ================================================================ 
  About Page
=================================================================== */
.about-text {
  font-size: 20px;
  line-height: 1.6;
  text-align: justify;
  color: #ddd;
  width: 50%;
  & p {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
  }
}

@media screen and (max-width: 800px) {
  .about-text {
    font-size: 16px;
    width: 90%;
  }
}

/* ================================================================ 
  Programs Page
=================================================================== */

.programs-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  margin-top: 60px;
  & li img {
    width: 100%;
    border-radius: 24px;
    aspect-ratio: 3/2;
    object-fit: cover;
  }
  & li h3 {
    margin-top: 10px;
  }
}

@media screen and (max-width: 800px) {
  .programs-list {
    display: flex;
    flex-direction: column;
  }
}

/* ================================================================ 
  Posts Page
=================================================================== */

.post-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.post-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 40px;
  width: 100%;
  margin-top: 40px;
  margin-bottom: 40px;
}

.post-frame {
  display: flex;
  align-items: center;
  column-gap: 30px;
}

.post-thumbnail {
  width: 240px;
  height: 240px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.post-thumbnail img {
  width: 100% !important;
  height: 100% !important;
  border-radius: 50%;
  object-fit: cover;
  max-width: none !important;
  max-height: none !important;
}

.post-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
}

.post-title {
  text-align: center;
  color: #fff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2;
}

.post-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  text-align: justify;
  color: #333;
}

.post-link-container {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.post-link {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-align: right;
  text-decoration: underline;
  color: #333;
  &:hover {
    color: #fcba03;
  }
}

.story-modal img.attachment-post-thumbnail {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 800px) {
  .post-wrapper {
    width: unset;
    row-gap: 0;
    padding: 0 20px;
  }

  .post-frame {
    flex-direction: column;
    align-items: center;
    row-gap: 20px;
    padding: 40px 0;
    border-bottom: 1px solid #666;
  }

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

  .post-link-container {
    justify-content: center;
  }

  .post-thumbnail {
    width: 180px;
    height: 180px;
    order: 1; /* Always show thumbnail first on mobile */
  }

  .post-content {
    order: 2; /* Always show content second on mobile */
  }
}

/* ================================================================ 
  Single Page
=================================================================== */

.single-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.single-article {
  width: 80%;
  margin: 100px 0 0;
}

.single-thumbnail {
  width: fit-content;
  float: left;
  margin-right: 20px;
  & img {
    width: 400px;
    height: auto;
  }
}

.single-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  text-align: left;
  color: #ddd;
}

.back-to-stories {
  margin: 40px 0 80px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}

/* ================================================================ 
  Supporter Page
=================================================================== */

.supporter-bg {
  background: #fff;
  color: #666;
  position: relative;
}

.message-text-supporter {
  font-family: 'Montserrat';
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
  color: #333;
  & a {
    font-weight: 600;
    color: rgb(58, 90, 222);
  }
}

.stats-label-supporter {
  font-size: 20px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  line-height: 1.2;
  color: #333;
}

.stats-number-supporter {
  font-size: 64px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  color: #fcba03;
}

.page-content-supporter {
  width: 80%;
}

.page-content-supporter h2 {
  text-align: center;
  color: #333;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.2;
  margin-top: 60px;
}

.page-content-supporter h3 {
  text-align: center;
  color: #333;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.2;
  margin-top: 60px;
}

@media screen and (max-width: 800px) {
  .page-content-supporter {
    width: 90%;
    & p {
      padding: 0 20px;
    }
  }
}

.page-content-supporter h4 {
  text-align: center;
  color: #333;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2;
  margin-top: 20px;
}

.student-story-row {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 30px;
}

.student-story-item {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.3s ease-in-out;
  &:hover {
    transform: scale(1.1);
  }
  & img {
    width: 100%;
    height: 100%;
  }
}

.student-story-overlay {
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 0.6);
  border-radius: 50%;
}

.student-story-image-01 {
  background-image: url('./images/Charlie.jpg');
}

.student-story-image-02 {
  background-image: url('./images/Alex.jpg');
}

.student-story-image-03 {
  background-image: url('./images/Naya.jpg');
}

@media screen and (max-width: 1200px) {
  .student-story-row {
    flex-direction: column;
    align-items: center;
    row-gap: 60px;
  }
}

.action-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  margin-top: 30px;
  gap: 30px;
}

.action-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 20px;
  padding: 30px;
  background: #1a437d;
  color: #fff;
  & h4 {
    color: #fff;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.2;
  }
  & a {
    color: #ffd45c;
    font-weight: 500;
    &:hover {
      color: #fcba03;
    }
  }
}

@media screen and (max-width: 1200px) {
  .action-list {
    grid-template-columns: 1fr;
    row-gap: 60px;
  }
}

.get-involved-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  margin-top: 60px;
}

@media screen and (max-width: 1200px) {
  .get-involved-list {
    grid-template-columns: 1fr;
  }
}

.get-involved-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 20px;
  padding: 30px;
  background: #1a437d;
  color: #fff;
  & h4 {
    color: #fff;
  }
  & a {
    text-transform: uppercase;
    font-weight: 600;
    color: #ffd45c;
  }
}

/* ================================================================ 
  Donate Page
=================================================================== */

.donate-container {
  display: grid;
  grid-template-columns: 35% 65%;
  width: 100%;
  padding: 20px 0;
  gap: 30px;
  & a {
    color: #fcba03;
    font-weight: 500;
    &:hover {
      color: rgb(195, 144, 2);
    }
  }
}

@media screen and (max-width: 1200px) {
  .donate-container {
    grid-template-columns: 1fr;
  }
}

.donate-column {
  padding-top: 20px;
  background: #1a437d;
}

.donate-text {
  text-align: left;
  & li {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 60px;
  }
}

.donate-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  margin-top: 40px;
  max-width: 500px;
  margin: 0 auto;
  & a {
    color: #ffd45c;
    font-weight: 500;
    &:hover {
      color: #fcba03;
    }
  }

}

.donate-text {
  & li {
    margin: 30px 20px;
    list-style: none;
  }
}

@media screen and (max-width: 1200px) {
  .donate-text {
    & li {
      margin: 30px 20px;
      list-style: none;
    }
  }
}

.donate-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px;
  background: #1a437d;
  text-align: left;
  color: #fff;
  & h4 {
    color: #fff;
  }
  & li {
    list-style: disc;
    margin-left: 20px;
  }
  & a {
    color: #ffd45c;
    font-weight: 500;
    &:hover {
      color: #fcba03;
    }
  }
}

/* ================================================================ 
  Pray Page
=================================================================== */
.prayer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 60%;
  box-sizing: border-box;
}

.prayer-content img {
  max-width: 360px;
  height: auto;
  margin-top: 20px;
  margin-bottom: 20px;
}

.sub-title {
  font-weight: 600;
}

.prayer-list {
  margin: 0;
}

.prayer-list img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  margin-top: 20px;
  margin-bottom: 20px;
}

.right {
  float: right;
  margin-left: 20px;
}

.left {
  float: left;
  margin-right: 20px;
  padding-right: 20px;
}

.prayer-content li {
  text-align: left;
  margin-bottom: 20px;
  & strong {
    color: #fcba03;
    font-weight: 600;
  }
}

.prayer-guide-frame {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  width: 100%;
  background: #eee;
  margin-top: 40px;
  & a {
    color: rgb(58, 129, 243);
    font-weight: 600;
    &:hover {
      color: rgb(42, 93, 176);
    }
  }
}

.prayer-guide-list {
  margin: 0;
  width: 100%;
}

.prayer-guide-list li {
  margin: 8px 0;
  font-weight: 600;
}

.go-back-link {
  margin-top: 80px;
  color: #ccc;
  font-size: 18px;
  font-weight: 600;
}

.go-back-link-supporter {
  margin-top: 80px;
  color: #666;
  font-size: 18px;
  font-weight: 600;
}

@media screen and (max-width: 800px) {
  .prayer-content {
    width: 100%;
    padding: 0 20px;
  }
  .prayer-guide-frame {
    padding: 15px;
    margin: 20px 0;
  }
  .prayer-guide-list {
    padding-left: 20px;
    margin: 10px 0;
  }
  .prayer-guide-list li {
    margin: 8px 0;
    padding-right: 10px;
    word-wrap: break-word;
    line-height: 1.4;
  }
  .prayer-guide-frame img {
    max-width: 100%;
    height: auto;
  }
}

/* ================================================================ 
  Front Page
=================================================================== */
.front-bg {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: #1c57a1;
}

.overlay {
  background: rgb(0 0 0 / 0.6);
  display: none;
  z-index: 10;
}

.sp40th-container {
  position: relative;
  margin: 0 auto;
  height: 720px;
}

.inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  clip-path: circle(5720px at right 20% top -5000px);
}

.hero-area {
  background: url('images/hero-image.jpg') top no-repeat;
  background-position: top !important;
  background-size: cover;
  width: 100vw;
  height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.webp .hero-area {
  background-image: url('images/hero-image.webp');
}

.hero-overlay {
  position: absolute;
  top: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
}

.hero-message-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 40%;
}

.hero-message {
  text-align: center;
  z-index: 1;
}

.hero-message img {
  width: 50vw;
  max-width: 400px;
}

.hero-message h1 {
  font-size: 48px;
  font-family: 'Bebas Neue', sans-serif;
  color: #fcba03;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 10px;
}

.hero-message h2 {
  font-size: 20px;
  font-family: 'Montserrat', sans-serif;
  color: #fff;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 20px;
}

.att-button {
  padding: 0 20px;
  height: 40px;
  border-radius: 18px;
  border: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  background-color: #fcba03;
  font-size: 18px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  color: #222;
  z-index: 1;
  transition: background-color 0.3s ease-in-out;
}

.att-button:hover {
  background-color: #f7da79;
}

.cta-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  margin-top: 60px;
  bottom: 40px;
  height: 60px;
  border-radius: 30px;
}

.header-donate-button {
  padding: 0 16px;
  height: 100%;
  border-radius: 20px;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  margin-top: 2px;
  margin-left: 20px;
  height: 36px;
  width: 121px;

  background-color: #fcba03;
  border-radius: 18px;
  
}

.header-donate-button:hover {
  background-color: #f7da79;
}

.content-area {
  max-width: 1440px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 100px;
  margin: 0 auto;
}

@media screen and (max-width: 800px) {
  .content-area-front-page {
    padding-bottom: 200px;
  }
}

.section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-stats {
  margin-bottom: 60px;
}

.section-title {
  width: 75%;
  margin-top: 80px;
  display: flex;
  justify-content: center;
}

.section-title h3 {
  text-align: center;
  color: #fff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.2;
  max-width: 1060px;
}

.stats-row {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
}

@media screen and (max-width: 800px) {
  .stats-row {
    flex-direction: column;
    gap: 60px;
  }
}

.stats-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 200px;
}

.stats-number {
  font-size: 64px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  color: #ffd45c;
}

.stats-label {
  font-size: 20px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  line-height: 1.2;
  color: #ddd;
}

.section-stories {
  padding-bottom: 150px;
}

.quote-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 80px;
  width: 80%;
  margin: 0 auto;
}

.quote-item-container {
  display: flex;
  justify-content: space-between;
  row-gap: 40px;
}

.quote-marker {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 50%;
  color: #ffe45c;
  flex-shrink: 0;
}

.quote-item-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: flex-start;
  width: 60%;
}

.quote-item-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: flex-end;
  width: 60%;
}

.quote-line {
  display: flex;
  align-items: flex-start;
  column-gap: 10px;
}

.quote-text {
  font-size: 22px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  line-height: 1.6;
  color: #ffe45c;
  font-style: italic;
}

.quote-author {
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  line-height: 1.6;
  color: #ddd;
  text-transform: uppercase;
  flex-shrink: 0;
}

@media screen and (max-width: 800px) {
  .quote-container {
    row-gap: 40px;
  }
  .quote-item-container {
    flex-direction: column;
  }
  .quote-item-left {
    width: 100%;
  }
  .quote-item-right {
    width: 100%;
  }
  .quote-text {
    font-size: 18px;
  }
  .circle-image {
    align-self: center;
  }
}

.circle-image {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.image-01 {
  background-image: url(./images/conversation.jpg);
}

.image-02 {
  background-image: url(./images/picnic.jpg);
}

.image-03 {
  background-image: url(./images/sports.jpg);
}

.image-04 {
  background-image: url(./images/hike.jpg);
}

.image-05 {
  background-image: url(./images/sunset.jpg);
}

.message-text {
  font-family: 'Montserrat';
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
  color: #ddd;
}

.circle {
  position: absolute;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.story-circle-button {
  height: 100%;
  width: 100%;
  border: none;
  background: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-circle-button img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  border-radius: 50%;
  max-width: none !important;
  max-height: none !important;
}

.story-circle {
  position: absolute;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: transform 0.3s ease-in-out;
}

.story-circle:hover {
  transform: scale(1.2);
  cursor: pointer;
}

.story-item {
  display: flex;
  flex-direction: column;
}

.story-label {
  position: absolute;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 600;
}

.story-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 0.6);
  border-radius: 50%;
}

dialog {
  width: 60%;
  max-width: 80%;
  max-height: 90%;
  background-color: #e0d7d3;
  padding: 32px;
  border: none;
  border-radius: 8px;
  z-index: 1;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

::backdrop {
  background-color: rgba(0, 0, 0, 0.6);
}

.show-modal {
  display: block;
  opacity: 1;
}

.dialog-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  column-gap: 20px;
  font-weight: bold;
}

#story-title {
  font-size: 24px;
  font-weight: bold;
}

#story-content {
  font-size: 15px;
  line-height: 26px;
}

.story-body {
  margin-bottom: 20px;
  & p {
    text-align: left;
  }
  & p:has(img.aligncenter) {
    text-align: center;
  }
  & p:has(img.alignright) {
    text-align: right;
  }
}

.story-image-container {
  width: 50%;
  float: left;
  margin-right: 20px;
}

.story-image-container img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

#story-content {
  flex: 1;
}

@media screen and (max-width: 768px) {
  .story-body {
    display: flex;
    flex-direction: column;
  }

  .story-image-container {
    float: none;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
}

.close-button,
.close-button-bottom {
  font-size: 15px;
  border: none;
  border-radius: 8px;
  background-color: #eee;
  min-width: fit-content;
  padding: 2px 8px;
}

.close-button:hover,
.close-button-bottom:hover {
  background-color: #fff;
}

#story-image {
  width: 100%;
}

@media screen and (max-width: 1200px) {
  div.story-circle {
    width: 240px;
    height: 240px;
  }
}

@media screen and (max-width: 1024px) {
  .stats-label {
    max-width: 120px;
  }
}

@media screen and (max-width: 800px) {
  .sp40th-container {
    height: 600px;
  }
  .hero-area {
    height: 600px;
  }
  .section-title {
    margin-top: unset;
    width: 100%;
  }

  .section-stories {
    height: unset;
    padding-bottom: 40px;
  }
  .message-text {
    font-size: 16px;
  }
  div.story-circle {
    position: relative;
    top: unset;
    left: unset;
  }
  dialog {
    width: unset;
    padding: 20px;
    max-width: 95%;
  }
}

/* ================================================================
  Fade In
=================================================================== */

.fade {
  opacity: 0;
  transform: translateY(0);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fadeIn {
  animation-name: fadeIn;
  animation-duration: 4s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0.6;
    transform: translateY(0);
  }
  100% {
    opacity: 1;
    transform: translateY(50px);
  }
}

/* ================================================================ 
  Find Your City Page
=================================================================== */

.find-your-city-container {
  display: flex;
  gap: 2rem;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: auto;
  color: #fff;
}

.map-container {
  flex: 2;
  min-height: 600px;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

#canada-map {
  height: 100%;
  width: 100%;
  z-index: 1;
}

.city-info {
  flex: 1;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.city-info-volunteer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #1c57a1;
}

.city-info h2 {
  margin-top: 0;
  color: #fcba03;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.2;
}

.city-info h3 {
  margin-top: 0;
  color: #fcba03;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2;
}

.city-info p {
  text-align: left;
  color: #ddd;
}

.city-details {
  display: none;
}

.city-details.active {
  display: block;
}

.city-details h3 {
  margin-top: 0;
  color: #fcba03;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2;
  text-align: left;
}

.city-details .contact-info {
  margin: 1rem 0;
  color: #ddd;
  word-break: break-word;
  & a {
    color: #ddd;
    &:hover {
      color: #fcba03;
    }
  }
}

.city-details .social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.city-details .social-links a {
  text-decoration: underline;
  color: #ddd;
  &:hover {
    color: #fcba03;
  }
}

/* Ensure Leaflet map tiles are visible */
.leaflet-container {
  height: 100%;
  width: 100%;
}

.leaflet-tile-pane {
  opacity: 1;
}

.cities-list-container {
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

.cities-list-container h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  color: #fcba03;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  font-weight: 500;
}

.cities-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.cities-list li {
  margin: 0;
}

.cities-list a {
  display: block;
  padding: 0.5rem 1rem;
  color: #ddd;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cities-list a:hover {
  background: rgba(252, 186, 3, 0.2);
  color: #fcba03;
  transform: translateY(-2px);
}

@media screen and (max-width: 800px) {
  .find-your-city-container {
    flex-direction: column;
    gap: 0.5rem;
  }

  .map-container {
    max-height: 300px;
    min-height: unset;
  }

  .city-info {
    margin-top: 0.5rem;
  }

  .cities-list-container {
    margin-top: 1.5rem;
    padding: 1rem;
  }

  .cities-list {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 0.5rem;
  }

  .cities-list a {
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem;
  }
}

/* ================================================================ 
  Life in Canada Page
=================================================================== */

.life-in-canada-container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  margin-top: 100px;
}

.life-in-canada-section {
  width: 90%;
  padding: 30px;
  background: #1a437d;
  border-radius: 24px;
  text-align: left;
  & h2 {
    margin-top: 0;
  }
  & a {
    color: #ffd45c;
    font-weight: 500;
    &:hover {
      color: #fcba03;
    }
  }
}

@media screen and (max-width: 800px) {
  .life-in-canada-container {
    grid-template-columns: 1fr;
    margin-top: 40px;
    gap: 30px;
  }
  .life-in-canada-section {
    width: unset;
    padding: 30px;
  }
}

/* ================================================================ 
  Life in Canada - Children Page
=================================================================== */

.life-in-canada-children-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.life-in-canada-children-content {
  margin-top: 60px;
  width: 80%;
  text-align: left;
  & ul {
    margin-top: 40px;
    margin-left: 20px;
  }
  & li {
    margin-bottom: 20px;
  }
  & a {
    color: #ffd45c;
    font-weight: 500;
    font-size: 20px;
    &:hover {
      color: #fcba03;
    }
  }
}

@media screen and (max-width: 800px) {
  .life-in-canada-children-content {
    width: 90%;
    & a {
      font-size: 16px;
    }
  }
}
