body {
  margin: 0;
  font-family: Verdana, sans-serif;
  background-color: #f4f1ea;
  padding: 20px;
  /*background-image: url("images/watercolor-texture-background.jpg");*/
  /*background-repeat: repeat;*/
  /*background-size: 400px;*/
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #f4f1ea;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 2px solid #c9c1b7;
}
.logo-area {
  display: flex;
  align-items: center;
  gap: 15px;
}

.nav-wrapper {
  position: relative;
  display: inline-block;
}

.menu-button {
  padding: 8px 14px;
  font-size: 16px;
  cursor: pointer;
  border: 1px solid #888;
  border-radius: 6px;
  background-color: white;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 180px;
  background-color: #e8e3dc;
  border: 1px solid #b8aea3;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 999;
  padding: 8px 0;
}

.dropdown-menu a {
  display: block;
  padding: 10px 14px;
  text-decoration: none;
  color: #333;
}

.dropdown-menu a:hover {
  background-color: #d8d1c8;
}

/* Desktop hover */
@media (hover: hover) {
  .nav-wrapper:hover .dropdown-menu {
    display: block;
  }
}

/* Mobile / tapped state */
.nav-wrapper.active .dropdown-menu {
  display: block;
}

.title {
  margin: 0;
}

.title a:link{
  color: #6b2fa1;
  text-decoration: none;
}

.title a:hover,
.title a:focus {
  color: #ff5ca8;
  text-decoration: none;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo {
  width: 80px;
}

.banner {
  width: 98%;
  margin: 5px auto 20px auto;
  height: 120px;
  overflow: hidden;
  border-radius: 25px;
}

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

.about,
.announcements {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  width: 90%;
  margin: 20px auto;
  padding: 30px;
  border: 2px solid #bfb6aa;
  border-radius: 30px;
  background-color: #e8e2d8;
}

.about-text {
  flex: 2;
}

.about-text h2 {
  margin-top: 0;
  margin-bottom: 20px;
}

.about-text p {
  line-height: 1.6;
  margin: 0;
}

.about-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image img {
  width: 220px;
  max-width: 100%;
  border-radius: 20px;
  display: block;
}

.announcement-row {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 30px;
  width: 100%;
}

.announcement-main {
  width: 560px;
  flex: 0 0 560px;
  display: flex;
  flex-direction: column;
}

#announcement-header {
  margin: 0 0 20px 0;
}

.announcement-container {
  width: 100%;
  border: 2px solid #bfb6aa;
  border-radius: 30px;
  padding: 10px;
  background-color: #f4efe6;
  box-sizing: border-box;
}

.announcement-text {
  width: 100%;
  max-width: 520px;
  padding: 10px 10px 20px 10px;
  box-sizing: border-box;
}

.announcement-text h2 {
  margin-top: 0;
  margin-bottom: 15px;
  text-align: center;
}

.announcement-text p {
  margin-top: 0;
  margin-bottom: 20px;
  line-height: 1.6;
}

.button-wrapper {
  text-align: center;
  margin-top: 10px;
}

.announcement-button {
  display: inline-block;
  padding: 10px 18px;
  border: 2px solid #bfb6aa;
  border-radius: 999px;
  background-color: #f4efe6;
  color: #6b2fa1;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
}

.announcement-button:hover {
  background-color: #f0e6f7;
  color: #ff5ca8;
}

.announcement-scroll {
  width: 100%;
  max-width: 520px;
  height: 420px;
  overflow-y: auto;
  overflow-x: hidden;
  border: 2px solid #bfb6aa;
  border-radius: 20px;
  background-color: #f0e6f7;
  padding: 15px;
  box-sizing: border-box;
}

.announcement-posts {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.announcement-posts .tumblr-post {
  width: 100%;
  max-width: 100%;
}

.announcement-scroll::-webkit-scrollbar {
  width: 10px;
}

.announcement-scroll::-webkit-scrollbar-track {
  background: #ddd6ca;
  border-radius: 999px;
}

.announcement-scroll::-webkit-scrollbar-thumb {
  background: #bfb6aa;
  border-radius: 999px;
}

.announcement-scroll::-webkit-scrollbar-thumb:hover {
  background: #a99f92;
}

/* SUPPORT COLUMN */
.otherinfo-container {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  margin-top: 48px;
}

.other-info {
  flex: 1;
  width: 100%;
  border: 2px solid #bfb6aa;
  border-radius: 30px;
  padding: 10px 18px 18px 18px;
  background-color: #f4efe6;
  box-sizing: border-box;

  display: flex;
  flex-direction: column;
  gap: 18px;
}

#support-header {
  margin: 10px 0 18px 0;
  text-align: center;
}

.support-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
}

.gfm-text,
.kofi-text {
  margin: 14px 0 0 0;
  padding: 0 16px 0 16px;
  line-height: 1.6;
  text-align: left;
  box-sizing: border-box;
}

.gfm-card,
.kofi-card {
  width: 100%;
  max-width: 360px;
  border: 2px solid #bfb6aa;
  border-radius: 20px;
  overflow: hidden;
  background-color: #f4efe6;
  box-sizing: border-box;
}

.gfm-embed,
.kofi-embed {
  width: 100%;
  max-width: 360px;
  box-sizing: border-box;
}

.gfm-embed iframe,
.gfm-embed > div,
.kofi-embed iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0;
  border: none;
  border-radius: 0;
}

.kofi-embed iframe {
  height: 780px;
  background: #f9f9f9;
}

.kofi-card {
  overflow: hidden;
}

.kofi-embed {
  height: 610px;
  overflow: hidden;
}

.kofi-embed iframe {
  height: 720px;
  transform: translateY(-18px);
}

.kofi-button {
  margin-top: auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}


/*PHONE CRAP*/
@media (max-width: 900px) {
  .about,
  .announcements {
    width: 95%;
    padding: 20px;
    box-sizing: border-box;
  }

  .announcement-row {
    flex-direction: column;
    gap: 20px;
  }

  .announcement-main,
  .otherinfo-container {
    width: 100%;
    flex: 1 1 auto;
  }

  .announcement-text,
  .announcement-scroll {
    max-width: 100%;
  }

  .announcement-scroll {
    height: 380px;
  }

  .other-info {
    width: 100%;
   padding: 16px;
  }

  .gfm-embed {
    max-width: 100%;
  }

  .gfm-embed iframe,
  .gfm-embed > div {
    max-width: 100%;
  }

  .kofi-button {
    justify-content: center;
  }
}

/*FOOTER*/
.site-footer {
  margin-top: 60px;
  padding: 30px 0 40px;
  text-align: center;
}

/* the line above footer */
.footer-line {
  width: 90%;
  margin: 0 auto 25px;
  border: none;
  border-top: 2px solid #bfb6aa;
}

/* center everything */
.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

/* your name */
.footer-title {
  margin: 0;
  font-size: 24px;
}

/* socials row */
.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials img {
  width: 32px;
  height: 32px;
}

/* circle icons */
.footer-socials a {
  width: 32px;
  height: 32px;
  border: 2px solid #bfb6aa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #6b2fa1;
  font-size: 14px;
}

.footer-socials a:hover {
  background-color: #f0e6f7;
  color: #ff5ca8;
}

/* email */
.footer-email {
  margin: 5px 0;
}

/* copyright + update */
.footer-meta {
  font-size: 14px;
  color: #777;
  margin-top: 10px;
}