/* This is the required project styling. Will contain essential CSS styles like:
   * Flex property
   * Grid layout
   * Cards and sections
*/

@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css");

/* variables */
:root {
  /* Colors */
  --primary-color: #ffcd42;
  --secondary-color: #ffd35c;
  --accent-color: #1c6b42;
  --bg-primary: #ffffff;
  --text-color: #222222;
  --text-color-two: #ffffff;
  --bg-secondary: #000000;
  --card-background: #f4f4f4;
  --bg-secondary-two: #111111;
  --footer-text-color: #ffffff;

  --shadow: 0 10px 40px rgba(0, 0, 0, 0.2);

  /* Font Weight */
  --weight-small: 400;
  --weight-semibold: 600;
  --weight-bold: 800;

  /* Max width */
  --width-small: 600px;
  --width-medium: 1100px;
  --width-large: 1300px;
}

[data-theme="dark"] {
  --primary-color: #69b384;
  --secondary-color: #82c79a;
  --accent-color: #69b384;
  --bg-primary: #0c0f0d;
  --text-color: #edf4ef;
  --text-color-two: #0c0f0d;
  --bg-secondary: #69b384;
  --card-background: #111714;
  --bg-secondary-two: #101513;
  --footer-text-color: #edf4ef;
  --shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

/* Reset default styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul {
  list-style: none;
}

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

/* Main styling */
body {
  background: var(--bg-primary);
  color: var(--text-color);
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: var(--bg-primary);
  border-bottom: 1px solid transparent;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 20;
  height: 80px;
  width: 100%;
}

.navbar .nav-menu {
  display: flex;
  align-items: center;
  background: var(--bg-primary);
}

.navbar .nav-link {
  margin: 0 1rem;
  font-size: 0.9rem;
  font-weight: var(--weight-semibold);
}

.nav-language-item {
  display: flex;
  align-items: center;
  margin-left: 0.05rem;
  flex: 0 0 6.1rem;
}

.site-language-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.08rem;
  width: 6.1rem;
  padding: 0.12rem;
  border: 1px solid rgba(34, 34, 34, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
}

.site-language-button {
  flex: 1 1 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #666666;
  font: inherit;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
  padding: 0.38rem 0.62rem;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.site-language-button:hover,
.site-language-button:focus-visible {
  color: var(--accent-color);
}

.site-language-button.is-active {
  background: var(--accent-color);
  color: var(--bg-primary);
}

.navbar .nav-link.is-active,
.navbar .nav-link.is-active:visited,
.navbar .nav-link.is-active:hover,
.navbar .nav-link.is-active:focus {
  color: var(--accent-color) !important;
}

[data-theme="dark"] .site-language-toggle {
  border-color: rgba(115, 184, 146, 0.18);
  background: rgba(13, 17, 15, 0.96);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.26);
}

[data-theme="dark"] .site-language-button {
  color: #c3cec7;
}

[data-theme="dark"] .site-language-button:hover,
[data-theme="dark"] .site-language-button:focus-visible {
  color: #edf4ef;
}

[data-theme="dark"] .site-language-button.is-active {
  background: #4b9a6a;
  color: #08100b;
}

.theme-switch {
  display: flex;
  align-items: center;
  margin-left: 1rem;
}

.navbar #logo img {
  display: block;
  width: 40px;
}

.navbar .btn {
  margin-right: 1.5rem;
}

.fas.fa-arrow-right {
  margin-left: 0.5rem;
  font-size: 0.9rem;
}

/* hamburger */
.hamburger {
  margin-bottom: 0.1rem;
  display: none;
}

.bar {
  display: block;
  width: 23px;
  height: 3px;
  margin: 4px auto;
  transition: all 0.3s ease-in-out;
  border-radius: 30px;
  background-color: var(--bg-secondary);
}

/* Hero section */
#hero {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.profile-image {
  width: 150px;
  border-radius: 50%;
  animation: bounce 1s infinite alternate;
}

@keyframes bounce {
  from {
    transform: translateY(0px);
  }

  to {
    transform: translateY(-10px);
  }
}

.division {
  width: 100%;
  height: 2px;
  background-color: var(--card-background);
  margin: 5.5rem 0;
}
/* Projects */
#projects {
  display: flex;
  flex-direction: column;
  margin: 2rem auto 5rem;
}

#projects .btn {
  align-self: center;
  margin: 2rem 0;
}

#seminars {
  display: flex;
  flex-direction: column;
  margin: 2rem auto 5rem;
}

#seminars .archive-link {
  display: block;
  width: max-content;
  margin: 3.25rem auto 0;
}

#conferences {
  display: flex;
  flex-direction: column;
  margin: 2rem auto 5rem;
}

#conferences .archive-link {
  display: block;
  width: max-content;
  margin: 3.25rem auto 0;
}

#news {
  display: flex;
  flex-direction: column;
  margin: 2rem auto 5rem;
  scroll-margin-top: 98px;
}

#donations {
  display: flex;
  flex-direction: column;
  margin: 2rem auto 5rem;
  scroll-margin-top: 98px;
}

#news .content-text p {
  max-width: 780px;
  font-size: 1.02rem;
  line-height: 1.75;
}

#news .archive-link {
  display: block;
  width: max-content;
  margin: 3.25rem auto 0;
}

.news-card {
  display: block;
  color: #ffffff;
}

.news-card:hover,
.news-card:focus-visible {
  color: #ffffff;
}

.news-card .project-bio h3 {
  font-size: 1.03rem;
  line-height: 1.35;
}

.news-card .project-bio p {
  font-size: 0.93rem;
  letter-spacing: 0.02em;
  opacity: 0.92;
}

#contact {
  display: flex;
  flex-direction: column;
  margin: 2rem auto 5rem;
}

#contact .content-text p {
  max-width: 820px;
  font-size: 1.03rem;
  line-height: 1.75;
}

#donations .content-text p {
  max-width: 820px;
  font-size: 1.03rem;
  line-height: 1.75;
}

.donations-layout {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: minmax(320px, 420px) minmax(0, 1fr);
  gap: 1rem;
  align-items: stretch;
}

.donations-card {
  border-radius: 18px;
  border: 1px solid #dce5de;
  background: #f8faf8;
  padding: 1.6rem;
}

.donations-card h3 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.18;
}

.donations-card p {
  margin-top: 0.8rem;
  font-size: 1.05rem;
  line-height: 1.72;
  color: #59625e;
}

.donations-card .donations-label {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-color);
}

.donations-card-account {
  background:
    linear-gradient(160deg, rgba(28, 107, 66, 0.13), rgba(28, 107, 66, 0) 55%),
    #f8faf8;
  border-color: rgba(28, 107, 66, 0.35);
  border-width: 1.5px;
}

.donations-account-list {
  margin-top: 1rem;
  display: grid;
  gap: 0.7rem;
}

.donations-account-row {
  display: grid;
  gap: 0.22rem;
  padding: 0.9rem 1.1rem;
  border-radius: 14px;
  border: 1px solid #d5dfd8;
  background: #ffffff;
}

.donations-account-row--highlight {
  border-color: rgba(28, 107, 66, 0.45);
  background: rgba(28, 107, 66, 0.04);
}

.donations-account-row--highlight dd {
  font-size: 1.25rem !important;
  letter-spacing: 0.04em;
  color: var(--accent-color) !important;
}

.donations-account-row dt {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-color);
}

.donations-account-row dd {
  margin: 0;
  font-size: 1rem;
  line-height: 1.45;
  color: #1f2924;
  font-weight: 700;
}

.donations-muted {
  margin: 1rem 0 0 !important;
  font-size: 1rem !important;
  line-height: 1.65 !important;
  color: #59625e !important;
}

.donations-card-roll {
  background:
    linear-gradient(160deg, rgba(255, 205, 66, 0.08), rgba(255, 205, 66, 0) 34%),
    linear-gradient(180deg, #ffffff 0%, #f8faf8 100%);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
}

.donations-roll-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.donations-roll-header h3 {
  font-size: 1.45rem;
  line-height: 1.15;
}

.donations-card .donations-roll-note {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.45;
  color: #64706b;
  white-space: nowrap;
}

.donations-slider {
  margin-top: 1rem;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid #d5dfd8;
  background: #ffffff;
}

.donations-slider-track {
  display: flex;
  width: 100%;
  will-change: transform;
}

.donor-slide {
  min-width: 100%;
  min-height: 132px;
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.donations-slider-empty .donor-slide {
  min-height: 108px;
}

.donor-slide-name {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  line-height: 1.1;
  font-weight: 300;
  letter-spacing: 0.01em;
  color: #1f2924;
  text-align: center;
}

.contact-panel {
  margin-top: 1rem;
  padding: 1.4rem;
  border: 1px solid #dce5de;
  border-radius: 18px;
  background:
    linear-gradient(165deg, rgba(28, 107, 66, 0.05), rgba(28, 107, 66, 0) 56%),
    #f8faf8;
  display: grid;
  gap: 1.2rem;
  min-width: 820px;
}

.contact-meta {
  display: grid;
  gap: 0.5rem;
}

.contact-meta p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: #4d5250;
}

.contact-social-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.contact-social-card {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  border: 1px solid #d5dfd8;
  background: #ffffff;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-social-card:hover,
.contact-social-card:focus-visible {
  transform: translateY(-1px);
  border-color: var(--accent-color);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.contact-social-icon {
  width: 34px;
  height: 34px;
  object-fit: contain;
  flex-shrink: 0;
}

.contact-social-text h3 {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.25;
}

.contact-social-text p {
  margin: 0.22rem 0 0;
  font-size: 0.95rem;
  color: #4d5250;
}

#club-overview {
  display: flex;
  flex-direction: column;
  margin: 0.5rem auto 5rem;
}

#club-overview .division {
  height: 1px;
  width: min(100%, 780px);
  margin: 1rem auto 2.4rem;
  background: linear-gradient(
    90deg,
    rgba(28, 107, 66, 0) 0%,
    rgba(28, 107, 66, 0.2) 28%,
    rgba(28, 107, 66, 0.34) 50%,
    rgba(28, 107, 66, 0.2) 72%,
    rgba(28, 107, 66, 0) 100%
  );
}

#club-overview .content-text {
  margin-top: 0.2rem;
  margin-bottom: 2rem;
}

#club-overview .content-text p {
  max-width: 760px;
  font-size: 1.02rem;
  line-height: 1.75;
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.overview-card {
  background: #f8faf8;
  border: 1px solid #dce5de;
  border-radius: 18px;
  padding: 1.5rem 1.4rem;
  min-height: 280px;
}

.overview-label {
  display: inline-flex;
  align-items: center;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  font-weight: 800;
  color: var(--accent-color);
  margin-bottom: 0.85rem;
}

.overview-card h3 {
  font-size: 1.45rem;
  line-height: 1.2;
  margin-bottom: 0.85rem;
}

.overview-card p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #4d5250;
}

.overview-list {
  margin: 0.15rem 0 0;
  padding-left: 0;
  list-style: none;
  text-align: left;
}

.overview-list li {
  font-size: 1.02rem;
  line-height: 1.65;
  color: #4d5250;
  padding-left: 1.1em;
  position: relative;
}

.overview-list li::before {
  content: "·";
  position: absolute;
  left: 0;
  font-weight: 800;
  color: var(--accent-color);
}

.overview-list li + li {
  margin-top: 0.5rem;
}

.overview-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.overview-tags li {
  padding: 0.34rem 0.72rem;
  border-radius: 999px;
  border: 1px solid #d1ddd3;
  background: #eef5ef;
  font-size: 0.84rem;
  font-weight: 700;
  color: #305740;
}

[data-theme="dark"] .overview-card {
  background: #101513;
  border-color: #223028;
}

[data-theme="dark"] .overview-card p,
[data-theme="dark"] .overview-list li {
  color: #c5d0c9;
}

[data-theme="dark"] .overview-tags li {
  border-color: #2c4738;
  background: #162019;
  color: #a5d3b8;
}

[data-theme="dark"] #club-overview .division {
  background: linear-gradient(
    90deg,
    rgba(130, 199, 154, 0) 0%,
    rgba(130, 199, 154, 0.24) 28%,
    rgba(130, 199, 154, 0.4) 50%,
    rgba(130, 199, 154, 0.24) 72%,
    rgba(130, 199, 154, 0) 100%
  );
}

[data-theme="dark"] .contact-panel {
  border-color: #223028;
  background:
    linear-gradient(165deg, rgba(130, 199, 154, 0.08), rgba(130, 199, 154, 0) 56%),
    #101513;
}

[data-theme="dark"] .donations-card {
  border-color: #223028;
  background: #101513;
}

[data-theme="dark"] .donations-card p,
[data-theme="dark"] .donations-roll-note,
[data-theme="dark"] .donations-muted {
  color: #c5d0c9;
}

[data-theme="dark"] .donations-label {
  color: #82c79a;
}

[data-theme="dark"] .donations-account-row {
  background: #0f1512;
  border-color: #2a3a32;
}

[data-theme="dark"] .donations-account-row--highlight {
  border-color: rgba(105, 179, 132, 0.45);
  background: rgba(105, 179, 132, 0.06);
}

[data-theme="dark"] .donations-account-row--highlight dd {
  color: #82c79a !important;
}

[data-theme="dark"] .donations-account-row dd {
  color: #edf4ef;
}

[data-theme="dark"] .donations-card-roll {
  border-color: #223028;
  background:
    linear-gradient(160deg, rgba(255, 205, 66, 0.06), rgba(255, 205, 66, 0) 34%),
    linear-gradient(180deg, #101513 0%, #0f1512 100%);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
}

[data-theme="dark"] .donations-slider {
  background: #0f1512;
  border-color: #2a3a32;
}

[data-theme="dark"] .donor-slide-name {
  color: #c5d0c9;
}

[data-theme="dark"] .contact-meta p,
[data-theme="dark"] .contact-social-text p {
  color: #c5d0c9;
}

[data-theme="dark"] .contact-social-card {
  background: #0f1512;
  border-color: #2a3a32;
}

[data-theme="dark"] .contact-social-card img {
  filter: invert(1);
}

.project {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(250px, auto);
  grid-gap: 0.9rem;
}

#seminars .project > .card,
#conferences .project > .card,
#news .project > .card {
  display: block;
  width: 100%;
  height: 100%;
}
.card .project-bio p {
  font-size: 0.92rem;
}

.card .project-bio h3 {
  font-size: 1rem;
}

.project-info {
  display: flex;
  justify-content: space-between;
  opacity: 0;
  position: relative;
  transition: 0.5s ease-in-out;
}

.project-bio {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  top: auto;
  left: 10px;
}

/* Footer */
#footer {
  background: var(--bg-secondary-two);
  margin-top: auto;
}

#footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--footer-text-color);
  min-height: 160px;
  text-align: center;
}

#footer a {
  font-size: 0.8rem;
  color: var(--footer-text-color);
}

#footer a:hover {
  opacity: 0.6;
}

#footer .social {
  margin: 0.9rem 0;
}

#footer .social img {
  width: 20px;
  height: 20px;
}

#footer .social a {
  margin: 0 0.5rem;
}

#footer p {
  font-size: 0.8rem;
}

/* Responsiveness */

@media (max-width: 1000px) {
  #news .project {
    grid-template-columns: repeat(2, 1fr);
  }

  .overview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .donations-layout {
    grid-template-columns: 1fr;
  }

  .contact-social-grid {
    grid-template-columns: 1fr;
  }

  .project {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}


@media (max-width: 768px) {
}

@media (max-width: 670px) {
  .navbar .nav-menu {
    position: fixed;
    right: -100vw;
    top: 4.5rem;
    flex-direction: column;
    width: calc(80% - 10px);
    transition: 0.3s;
    box-shadow: var(--shadow);
    padding: 2rem;
    border-radius: 5px;
    align-items: flex-start;
  }

  .navbar .btn {
    margin: 0;
    margin-top: 1rem;
  }

  .nav-menu.active {
    right: 20px;
  }

  .nav-menu .nav-link {
    font-size: 0.9rem;
    margin: 0 0.2rem;
  }

  .nav-menu li {
    margin-bottom: 0.5rem;
    width: 100%;
  }

  .nav-language-item {
    margin: 0.35rem 0 0.15rem;
    width: auto !important;
  }

  .site-language-toggle {
    background: var(--bg-primary);
  }

  .theme-switch {
    margin-left: 0;
  }

  .nav-menu .btn {
    width: 100%;
    text-align: center;
    margin-top: 0.5rem;
  }

  .hamburger {
    display: block;
    cursor: pointer;
    padding: 0.2rem 0.4rem;
  }

  .hamburger.active {
    border: 1px dotted gray;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

@media (max-width: 600px) {
  .overview-grid {
    grid-template-columns: 1fr;
  }

  .overview-card {
    min-height: auto;
    padding: 1.2rem 1.1rem;
  }

  .overview-card h3 {
    font-size: 1.25rem;
  }

  .contact-panel {
    padding: 1.15rem 1rem;
    min-width: unset;
  }

  .donations-card {
    padding: 1.15rem 1rem;
  }

  .donations-roll-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .project {
    display: grid;
    grid-template-columns: 1fr;
  }

  #conferences .project,
  #news .project {
    grid-template-columns: 1fr !important;
  }

  #conferences .project > .card,
  #news .project > .card {
    min-height: 220px;
  }

  .header-container .btn {
    border-radius: 5px;
    width: 80%;
  }
}

@media (min-width: 1001px) {
  #conferences .project {
    grid-template-columns: repeat(2, minmax(0, 350px));
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
}

#conferences .project > .card {
  aspect-ratio: 4 / 3;
  height: auto !important;
  min-height: 250px;
}

#news .project > .card {
  aspect-ratio: 4 / 3;
  height: auto !important;
  min-height: 250px;
}
/* Donations modal */
.donations-account-desc {
  margin-top: 0.9rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: #59625e;
}

.donations-donate-btn {
  margin-top: 1.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.8rem;
  border-radius: 999px;
  border: none;
  background: var(--accent-color);
  color: #ffffff;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.donations-donate-btn:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.donations-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(10, 20, 14, 0.45);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.donations-modal-overlay.is-open {
  display: flex;
}

.donations-modal {
  position: relative;
  background: var(--bg-primary);
  border-radius: 22px;
  border: 1px solid rgba(28, 107, 66, 0.25);
  padding: 2rem 2rem 1.8rem;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  animation: modalIn 0.22s ease;
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(12px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.donations-modal-close {
  position: absolute;
  top: 1rem;
  right: 1.1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #59625e;
  cursor: pointer;
  line-height: 1;
  padding: 0.2rem 0.4rem;
  border-radius: 6px;
  transition: color 0.15s;
}

.donations-modal-close:hover {
  color: var(--accent-color);
}

.donations-modal-title {
  margin-top: 0.6rem;
  font-size: 1.3rem;
  line-height: 1.25;
}

.donations-modal-rows {
  margin-top: 1.2rem;
  display: grid;
  gap: 0.6rem;
}

.donations-modal-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  border: 1px solid #d5dfd8;
  background: #f8faf8;
}

.donations-modal-row--account {
  border-color: rgba(28, 107, 66, 0.4);
  background: rgba(28, 107, 66, 0.04);
}

.donations-modal-row-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-color);
}

.donations-modal-row-value {
  font-size: 1rem;
  font-weight: 700;
  color: #1f2924;
}

.donations-modal-row--account .donations-modal-row-value {
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  color: var(--accent-color);
}

.donations-copy-btn {
  margin-top: 1.1rem;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  border: 1.5px solid var(--accent-color);
  background: transparent;
  color: var(--accent-color);
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.donations-copy-btn svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.donations-copy-btn:hover {
  background: var(--accent-color);
  color: #ffffff;
}

[data-theme="dark"] .donations-modal {
  background: #101513;
  border-color: rgba(105, 179, 132, 0.25);
}

[data-theme="dark"] .donations-modal-row {
  background: #0f1512;
  border-color: #2a3a32;
}

[data-theme="dark"] .donations-modal-row--account {
  border-color: rgba(105, 179, 132, 0.4);
  background: rgba(105, 179, 132, 0.06);
}

[data-theme="dark"] .donations-modal-row-value {
  color: #edf4ef;
}

[data-theme="dark"] .donations-modal-row--account .donations-modal-row-value {
  color: #82c79a;
}

[data-theme="dark"] .donations-modal-close {
  color: #c5d0c9;
}

[data-theme="dark"] .donations-account-desc {
  color: #c5d0c9;
}

/* ── 섹션 설명 텍스트 / 네비 크기 조정 ── */

/* 히어로: "We welcome anyone..." */
#hero .header-container > p,
.header-container > p {
  font-size: 1.05rem;
  line-height: 1.75;
}

/* About MIMIC 섹션 부제목: "MIMIC's history, core activities..." */
#club-overview > p,
#club-overview .content-text p {
  font-size: 1.05rem;
  line-height: 1.75;
}

/* Seminars 섹션 부제목: "Check out some of our seminars." */
#seminars > p,
#seminars .content-text p {
  font-size: 1.05rem;
  line-height: 1.75;
}

/* Conferences 섹션 설명: "MCUS was established..." */
#conferences > p,
#conferences .content-text p {
  font-size: 1.05rem;
  line-height: 1.75;
}

/* News 섹션 부제목: "Recent events beyond..." */
#news > p,
#news .content-text p {
  font-size: 1.05rem;
  line-height: 1.75;
}

/* Donations 섹션 부제목: "Support helps MIMIC..." */
#donations > p,
#donations .content-text p {
  font-size: 1.05rem;
  line-height: 1.75;
}

