@import url("https://fonts.googleapis.com/css2?family=Trirong:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --orange: #f25a06;
  --orange-hover: #c41824;
  --heading-font: "Trirong", serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  text-align: center;
  list-style-type: none;
}
body {
  height: 100vh;
}

section,
footer {
  overflow-x: hidden;
}

header {
  z-index: 999;
  position: absolute;
  top: 0;
  left: 0;
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  transition: 0.5s ease;
}

header .brand {
  font-family: var(--heading-font);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

header .brand:hover {
  color: var(--orange);
}

header .brand img {
  width: 80px;
  height: 80px;
}

header .navigation {
  position: relative;
}

header .navigation .navigation-items a {
  position: relative;
  color: #fff;
  font-size: 1em;
  text-transform: uppercase;
  font-weight: 350;
  text-decoration: none;
  margin-left: 30px;
  transition: 0.3s ease;
}

header .navigation .navigation-items a:before {
  content: "";
  position: absolute;
  background: #fff;
  width: 0;
  height: 2.6px;
  bottom: 0;
  left: 0;
  transition: 0.3s ease;
}

header .navigation .navigation-items a:hover:before {
  width: 100%;
  background: var(--orange);
}

section {
  padding: 80px 200px;
}

.home {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  flex-direction: column;
  background: var(--orange);
}

.home:before {
  z-index: 777;
  content: "";
  position: absolute;
  background: rgba(251, 3, 3, 0.034);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.home .content {
  z-index: 888;
  color: #fff;
  width: 60%;
  margin-top: 50px;
  display: none;
}

.home .content.active {
  display: block;
}

.home .content h1 {
  font-size: 1.8em;
  color: var(--orange-hover);
  text-align: left;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 20px;
}

.home .content h1 span {
  font-size: 3.2em;
  text-align: left;
  color: #fff;
  font-weight: 600;
}

.home .content p {
  font-size: 1.2em;
  text-align: left;
  margin-bottom: 65px;
}

.line {
  margin: 30px 0;
  width: 95%;
  background-color: #aea9a9;
  height: 0.15rem;
}

.home img {
  z-index: 000;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-navigation {
  z-index: 888;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(80px);
  margin-bottom: 12px;
}

.slider-navigation .nav-btn {
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 2px rgba(255, 255, 255, 0.5);
  transition: 0.3s ease;
}

.slider-navigation .nav-btn.active {
  background: var(--orange);
}

.slider-navigation .nav-btn:not(:last-child) {
  margin-right: 20px;
}

.slider-navigation .nav-btn:hover {
  transform: scale(1.2);
}

.img-slide {
  position: absolute;
  width: 100%;
  clip-path: circle(0% at 0 50%);
}

.img-slide.active {
  clip-path: circle(150% at 0 50%);
  transition: 2s ease;
  transition-property: clip-path;
}

@media (max-width: 1040px) {
  header {
    padding: 12px 20px;
  }
  section {
    padding: 100px 20px;
  }
  .home .media-icons {
    right: 15px;
  }
  header .navigation {
    display: none;
  }
  header .navigation.active {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(1, 1, 1, 0.5);
  }

  header .navigation .navigation-items a {
    color: #fff;
    font-size: 1.2em;
    margin: 20px;
  }
  header .navigation .navigation-items a:before {
    background: #222;
    height: 5px;
  }
  header .navigation .navigation-items {
    background: var(--orange);
    width: 600px;
    max-width: 600px;
    margin: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 5px;
    box-shadow: 0 5px 25px rgb(1 1 1 / 20%);
  }
  .menu-btn {
    background: url("../assets/icon/menu.svg") no-repeat;
    background-size: 30px;
    background-position: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: 0.3s ease;
  }
  .menu-btn.active {
    z-index: 999;
    background: url("../assets/icon/close.svg") no-repeat;
    background-size: 30px;
    width: 40px;
    height: 40px;
    background-position: center;
    transition: 0.3s ease;
  }
}

@media (max-width: 560px) {
  .home .content h1 {
    font-size: 1.5em;
  }
  .home .content h1 span {
    font-size: 2.7em;
  }

  .home .content p {
    font-size: 1em;
  }
}

/*-----------------------expectation section----------------------------*/

.what-to-expect {
  padding: 80px 60px;
  text-align: center;
}

.what-to-expect h2 {
  font-family: var(--heading-font);
  font-size: 2.5rem;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-style: normal;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.what-to-expect p {
  font-size: 1.2rem;
  color: #a29e9e;
  margin-bottom: 50px;
}

.expect-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  justify-content: center;
}

.expect-item {
  background-image: url("assets/bg.jpeg");
  padding: 30px;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(255, 102, 0, 0.1);
}

.expect-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 20px var(--orange-hover);
}

.expect-item i {
  font-size: 2.5rem;
  color: var(--orange);
  margin-bottom: 15px;
}

.expect-item h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: white;
}

.expect-item p {
  font-size: 1rem;
  color: #ccc;
}

@media (max-width: 768px) {
  .what-to-expect {
    padding: 60px 20px;
  }

  .what-to-expect h2 {
    font-size: 2rem;
  }

  .what-to-expect p {
    font-size: 1rem;
  }

  .expect-item {
    padding: 25px 15px;
  }

  .expect-item i {
    font-size: 2rem;
  }

  .expect-item h3 {
    font-size: 1.1rem;
  }

  .expect-item p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .what-to-expect h2 {
    font-size: 1.6rem;
  }

  .what-to-expect p {
    font-size: 0.9rem;
  }
}

/*----------------------------info section----------------------------*/
.info {
  background-image: url("/assets/bg.jpeg");
}

.info-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.container1 {
  display: flex;
  flex-direction: column;
  gap: 55px;
}
.container1 h1 {
  font-size: 3em;
  font-family: var(--heading-font);
  color: #fff;
  line-height: 1.5;
  font-weight: 700;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  justify-content: center;
  align-items: center;
}

.btn {
  text-decoration: none;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 14px;
  width: 255px;
  height: 45px;
  border-radius: 6px;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
}

.register-btn {
  background-color: var(--orange-hover);
  color: #fff;
  border: none;
}

.register-btn:hover {
  background-color: var(--orange);
  color: white;
}

.teaser-btn {
  background-color: transparent;
  color: white;
  border: 1.5px solid white;
}

.teaser-btn:hover {
  background-color: white;
  color: black;
}

.modal {
  display: none;
  position: fixed;
  z-index: 999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 80%;
  max-height: 90vh;
  position: relative;
  aspect-ratio: 9 / 16; 
}

.close {
  color: #fff;
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 30px;
  cursor: pointer;
}

.container2 {
  padding: 60px 30px;
  text-align: center;
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 102, 0, 0.2);
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
}

.container2 .event-title {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 30px;
  font-family: "Bebas Neue", sans-serif;
  color: var(--orange-hover);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.container2 .event-title span {
  font-size: 2.1rem;
  font-weight: 200;
  font-family: "Bebas Neue", sans-serif;
  color: #fff;
}

.timer {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-family: "Bebas Neue", sans-serif;
}

.timer div {
  padding: 20px 25px;
  min-width: 80px;
  transition: transform 0.3s ease;
}

.timer div:hover {
  transform: scale(1.05);
}

.timer span {
  display: block;
  font-size: 4.5rem;
  color: #fff;
}

.timer small {
  display: block;
  font-size: 2rem;
  color: #ccc;
  margin-top: 5px;
}

@media (max-width: 992px) {
  .container1 h1 {
    font-size: 2.2em;
    text-align: center;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .container2 .event-title {
    font-size: 2rem;
  }

  .container2 .event-title span {
    font-size: 1.7rem;
  }

  .timer {
    gap: 10px;
  }

  .timer span {
    font-size: 2.9rem;
  }
  .timer small {
    font-size: 2.5rem;
  }
}

/* --- Small Devices --- */
@media (max-width: 768px) {
  section {
    padding: 60px 20px;
  }

  .container1 h1 {
    font-size: 1.5em;
    line-height: 1.4;
  }

  .timer {
    gap: 0px;
  }

  .timer div {
    padding: 10px 15px;
    min-width: 60px;
  }

  .timer span {
    font-size: 2rem;
  }

  .timer small {
    font-size: 1rem;
  }
}

/*--------------------------photo gallery----------------------------*/

.gallery-heading {
  text-align: center;
  margin-bottom: 40px;
}

.gallery-heading h2 {
  font-family: var(--heading-font);
  font-size: 2.5rem;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-style: normal;
  margin-bottom: 15px;
}

.gallery-heading p {
  font-size: 1.2rem;
  color: #a29e9e;
}

.gallery-wrapper {
  overflow: hidden;
}

.gallery-row {
  display: flex;
  width: max-content;
  animation: scrollGallery 60s linear infinite;
  gap: 20px;
  margin-bottom: 30px;
}

@keyframes scrollGallery {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  } /* scroll half to loop duplicated set */
}

.gallery-item {
  width: 220px;
  height: 150px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.hover-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hover-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 102, 0, 0.5), transparent);
  transform: scale(0);
  transform-origin: top left;
  transition: transform 0.4s ease-in-out;
  z-index: 1;
}

.gallery-item:hover .hover-overlay::before {
  transform: scale(1.8); /* diagonally covers */
}

.hover-overlay i {
  position: absolute;
  z-index: 2;
  font-size: 2rem;
  color: white;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .hover-overlay i {
  opacity: 1;
}

/* Lightbox */
.lightbox {
  display: none; /* hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 9999;

  justify-content: center;
  align-items: center;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
}

.close-btn {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}

.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.5rem;
  color: white;
  cursor: pointer;
  z-index: 1001;
}

.prev-btn {
  left: 30px;
}
.next-btn {
  right: 30px;
}

.gallery-btn:hover,
.close-btn:hover {
  color: #ff6600;
}

@media (max-width: 768px) {
  .gallery-heading h2 {
    font-size: 2rem;
  }

  .gallery-heading p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .gallery-heading h2 {
    font-size: 1.6rem;
  }

  .gallery-heading p {
    font-size: 0.9rem;
  }
}

/*----------------------------sponsors----------------------------*/

.sponsor-section {
  background-image: url("assets/bg.jpeg");
  padding: 60px 30px;
  text-align: center;
  color: white;
}

.sponsor-section h2 {
  font-family: var(--heading-font);
  font-size: 2.5rem;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 15px;
  letter-spacing: 2px;
  font-style: normal;
}

.sponsor-section p {
  color: #ccc;
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.sponsor-logo-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}

.sponsor-logo {
  max-width: 220px;
  width: 80%;
  height: auto;
  filter: drop-shadow(0 0 10px rgba(255, 102, 0, 0.3));
  transition: transform 0.3s ease;
}

.sponsor-logo:hover {
  transform: scale(1.05);
}

.sponsor-invite h3 {
  font-family: var(--heading-font);
  font-size: 2rem;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 15px;
  letter-spacing: 2px;
  font-style: normal;
}

.sponsor-invite p {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 20px;
}

.sponsor-btn {
  background: var(--orange-hover);
  color: white;
  transition: background 0.3s ease;
  text-decoration: none;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 14px;
  width: 255px;
  height: 45px;
  border-radius: 6px;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
}

.sponsor-btn:hover {
  background: var(--orange);
}

@media (max-width: 480px) {
  .sponsor-section h2 {
    font-size: 1.6rem;
  }

  .sponsor-invite h3 {
    font-size: 1.2rem;
  }

  .sponsor-btn {
    font-size: 0.95rem;
    padding: 8px 16px;
  }
}

/*----------------------------organizers----------------------------*/

.organizers-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.organizers-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 15px;
  font-weight: 500;
}

.section-title h2 {
  font-family: var(--heading-font);
  color: var(--orange);
  font-size: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-style: normal;
}

.section-title p {
  font-size: 1.2rem;
  color: #a29e9e;
}

.organizers-container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: center;
  gap: 30px;
  align-items: center;
}

@media (max-width: 1040px) {
  .organizers-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .section-title h2,
  .organizers-content h2 {
    font-size: 2rem;
  }
}

@media (max-width: 450px) {
  .organizers-container {
    grid-template-columns: repeat(1, 1fr);
  }
  .section-title h2,
  .organizers-content h2 {
    font-size: 1.5rem;
  }
}

.our-team {
  border: none;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  text-align: center;
  overflow: hidden;
  position: relative;
  padding: 20px 0 20px;
}

.our-team .pic {
  display: inline-block;
  width: 130px;
  height: 130px;
  margin-bottom: 0px;
  z-index: 1;
  position: relative;
}

.our-team .pic::before {
  content: "";
  width: 100%;
  height: 0;
  border-radius: 50%;
  background: var(--orange);
  position: absolute;
  bottom: 135%;
  right: 0;
  left: 0;
  opacity: 0.2;
  transform: scale(3);
  transition: all 0.3s linear 0s;
}

.our_team:hover .pic::before {
  height: 100%;
}

.our-team .pic:after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--orange);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.our-team .pic img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  transform: scale(1);
  transition: all 0.9s ease 0s;
}

.our-team:hover .pic img {
  box-shadow: 0 0 0 14px #ffffff;
  transform: scale(0.7);
}

.our-team .team-content {
  margin: 10px 0 30px 0;
}

.our-team .title {
  font-size: 22px;
  font-weight: 700;
  color: #666;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.our-team .post {
  display: block;
  font-size: 15px;
  color: #666;
}

.our-team .social {
  width: 100%;
  padding: 0;
  margin: 0;
  background: var(--orange);
  position: absolute;
  bottom: -100px;
  left: 0;
  transition: all 0.5s ease 0s;
}

.our-team:hover .social {
  bottom: 0;
}

.our-team .social li {
  display: inline-block;
}

.our-team .social li a {
  text-decoration: none;
  display: block;
  padding: 10px;
  font-size: 17px;
  color: #fff;
  transition: all 0.3s ease 0s;
}

.our-team .social li a:hover {
  color: var(--orange);
  background: #f7f5ec;
}

/*----------------------------footer----------------------------*/
.footer {
  background-image: url("/assets/bg.jpeg");
  object-fit: cover;
  border: 2px solid var(--orange-hover);
  padding: 40px 20px 10px;
}

.footer-content {
  display: grid;
  padding: 20px 80px;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.logo-title {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.logo {
  width: 120px;
  height: 120px;
}

.footer-left h2 {
  font-size: 2.5em;
  color: #fff;
  font-weight: 700;
  text-align: left;
  line-height: 1.3;
}

.tagline {
  color: var(--orange-hover);
  margin-top: 10px;
  text-align: left;
  font-size: 1.5em;
}

.footer-links h3,
.footer-contact h3 {
  color: var(--orange-hover);
  text-align: left;
  font-size: 1.5em;
  margin-bottom: 10px;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li {
  text-align: left;
  margin: 6px 0;
}

.footer-links a,
.footer-contact a {
  color: #fff;
  text-decoration: none;
  font-size: 1.2em;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--orange);
}

.footer-contact p {
  margin: 6px 0;
  text-align: left;
  color: #fff;
  font-size: 1.2em;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 2px solid #fff;
  border-radius: 5px;
  color: var(--orange-hover) !important;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 18px;
  text-decoration: none;
}

.social-icon:hover {
  background-color: var(--orange-hover);
  color: #fff !important;
}

.footer-bottom {
  border-top: 2px solid var(--orange-hover);
  margin-top: 30px;
  padding-top: 10px;
  text-align: center;
  font-size: 1.2em;
  color: #fff;
}

@media (max-width: 992px) {
  .footer-left h2 {
    font-size: 1.5em;
  }
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
    padding: 20px;
  }

  .logo {
    width: 80px;
    height: 80px;
  }
  .logo-title {
    justify-content: center;
    text-align: center;
  }

  .tagline {
    text-align: center;
  }

  .footer-left h2,
  .footer-links h3,
  .footer-contact h3 {
    text-align: center;
  }

  .footer-left h2 {
    font-size: 1.5em;
  }

  .footer-links li,
  .footer-contact li,
  .footer-contact p {
    text-align: center;
    font-size: 0.9em;
  }

  .social-icons {
    justify-content: center;
  }
}


/* Sticky Donate Button */
.sticky-donate {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--orange-hover);
  color: white;
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 1.3rem;
  font-weight: bold;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease;
}

.sticky-donate:hover {
  background-color: var(--orange);
}

/* Donate Modal */
.donate-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
}

.donate-modal-content {
  background-color: var(--orange);
  padding: 30px;
  max-width: 400px;
  border-radius: 40px;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.donate-modal-content h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #f5f5f5;
}

.donate-modal-content p {
  margin-bottom: 15px;
  font-size: 1rem;
  color: #f5f5f5;
}

.donate-modal-content .donate-qr {
  width: 150px;
  margin: 10px 0;
  border-radius: 15px;
}

.donate-modal-content a{
  color: #2c2553;
  font-weight: 500;
}

.donate-modal-content a:hover{
  color: var(--orange-hover);
} 

.close-donate {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 1.5rem;
  font-weight: 600;
  color: #f5f5f5;
  cursor: pointer;
  transition: color 0.3s;
}

.close-donate:hover {
  color: var(--orange-hover);
}
