@font-face {

    font-family: 'Univers';

    src: url(../webfonts/Univers/univers-condensed-57-regular.otf);

  }

  

  @font-face {

    font-family: 'Univers Condensed';

    src: url(../webfonts/Univers/univers-57-condensed.otf);

  }

  

  @font-face {

    font-family: 'Univers Light';

    src: url(../webfonts/Univers/Univers-Light.otf);

  }

  

  body,

  h1,

  h2,

  h3 {

      font-family: Roboto, sans-serif;

  }

  

  html {

      position:relative;

      min-height:100%;

      width:100%;

      margin:0;

      padding:0;

  }

  

  body {

      background:url('../images/bg.jpg') no-repeat, #F0D530;

      background-position:center top;

      background-size:100%;
  margin: 0;
  padding: 0;
  min-height: 100vh; /* Ensure full height */
  display: flex;
  flex-direction: column; /* Stack elements vertically */
  align-items: center;     /* Horizontal center */
  justify-content: center; /* Vertical center */

  }

  

.main-wrapper {
  display: flex;
  flex-wrap: nowrap; /* Prevent wrapping */
  justify-content: center; /* Center the row */
  gap: 20px;
  padding: 20px;
  overflow-x: auto; /* Optional: allows horizontal scroll on smaller screens */
}

.card {
  flex: 0 0 220px; /* Fixed width per card */
  background: #1f1f1f;
  color: white;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: scale(1.03);
}

.card img {
  width: 100%;
  height: auto;
  display: block;
}

.card-content {
  padding: 15px;
}

.card-footer {
  margin-top: 10px;
  font-weight: bold;
  color: orange;
  cursor: pointer;
}



  

#footer {
  position: absolute;
  bottom: 0;
  margin: 0 auto;
  height: 60px;
  width: 99.8%;
  background: #1e1e1e; /* Black background */
}

#footer .copyright {
  text-align: center;
  font-size: 12px;
  z-index: 1002;
  color: #fff; /* Ensure text is white */
}

#footer .copyright p {
  padding: 0;
  margin: 0;
  font-family: 'Roboto';
  text-transform: uppercase;
  color: #fff; /* White text */
}

#footer .copyright img {
  width: 150px;
  margin-top: 10px;
}

#footer .copyright a {
  color: #fff; /* White links */
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

#footer .copyright a:hover {
  color: #ccc; /* Light gray on hover */
}

  

  .invisible {

      visibility:hidden;

  }

  

  .mt-5 {

      margin-top:5px !important;

  }

  

  @keyframes linkZoomIn {

      0% {

          transform: scale(1,1);

      }

      50% {

          transform: scale(1.4,1.4);

      }

      100% {

          transform: scale(1.1,1.1);

      }

  }
  
 .center-wrapper {
  display: flex;
  justify-content: center; /* centers horizontally */
  align-items: center;    /* centers vertically if height is set */
  height: 100vh;          /* example full viewport height */
}

.logo-container {
  justify-content: center;
}

.glow-logo {
  width: 200px;
  max-width: 100%;
  animation: rgb-glow 3s infinite ease-in-out;
}

@keyframes rgb-glow {
  0% {
    filter: drop-shadow(0 0 5px red);
  }
  33% {
    filter: drop-shadow(0 0 15px green);
  }
  66% {
    filter: drop-shadow(0 0 15px blue);
  }
  100% {
    filter: drop-shadow(0 0 5px red);
  }
}

.download-section {
  width: 90%;
  max-width: 900px;
  margin: 30px auto;
  padding: 25px;
  background: #2a2a2a;
  border-radius: 12px;
  color: white;
  box-sizing: border-box;
}

.download-section h2 {
  font-size: 26px;
  margin-bottom: 10px;
  color: #fff;
  border-bottom: 2px solid #444;
  padding-bottom: 8px;
}

.download-description {
  font-size: 25px;
  color: #ccc;
  margin-bottom: 20px;
}

.download-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #1f1f1f;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 15px;
}

.file-info {
  display: flex;
  flex-direction: column;
}

.file-name {
  font-weight: bold;
  font-size: 18px;
  color: #f0f0f0;
}

.file-size {
  font-size: 13px;
  color: #aaa;
}

.download-button {
  background: orange;
  color: black;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: bold;
  font-size: 15px;
  transition: background 0.3s ease;
}

.download-button:hover {
  background: #ffbf00;
}

.card-link {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}

.card-link:hover .card {
  transform: scale(1.03);
  cursor: pointer;
}

.main-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

.card-link {
  text-decoration: none;
  color: inherit;
  flex: 0 0 220px;
}

.card {
  background: #1f1f1f;
  color: white;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 340px; /* Adjust height to fit all cards consistently */
  transition: transform 0.3s ease;
}

.card:hover {
  transform: scale(1.03);
  cursor: pointer;
}

.card img {
  width: 100%;
  height: auto;
  display: block;
}

.card-content {
  padding: 15px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-footer {
  margin-top: 10px;
  font-weight: bold;
  color: orange;
}

.donation-section {
  padding: 30px;
  background: #1e1e1e;
  color: white;
  border-radius: 10px;
  max-width: 900px;
  margin: auto;
  box-shadow: 0 0 10px rgba(255,255,255,0.1);
}

.donation-section h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 20px;
}

.donation-description {
  text-align: center;
  font-size: 16px;
  margin-bottom: 30px;
}

.donation-methods {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px;
}

.donation-card {
  background: #2a2a2a;
  padding: 20px;
  border-radius: 8px;
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
}

.donation-logo {
  width: 120px;
  margin-bottom: 15px;
}

.donation-info p {
  margin: 5px 0;
  font-size: 14px;
}

.donation-footer {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
}

.donation-footer a {
  color: #ffa500;
  text-decoration: underline;
}
.donation-section {
  width: 75%; /* 75% of the page width */
  margin: 0 auto 0px auto;
  background: #1e1e1e;
  color: white;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
}
.donation-section h2,
.donation-section h3 {
  text-align: center;
  margin-bottom: 15px;
  color: #ffa500;
}

.donation-description {
  text-align: center;
  font-size: 16px;
  margin-bottom: 30px;
}

.donation-methods {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px;
  margin-bottom: 30px;
}

.donation-card {
  background: #2a2a2a;
  padding: 20px;
  border-radius: 8px;
  width: 300px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
}

.donation-logo {
  width: 120px;
  margin-bottom: 15px;
}

.donation-info p {
  margin: 5px 0;
  font-size: 14px;
}

.donation-rates, .donation-promos {
  background: #292929;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.donation-rates ul,
.donation-promos ul {
  list-style: none;
  padding: 0;
  font-size: 14px;
  line-height: 1.8;
}

.donation-footer {
  text-align: center;
  font-size: 14px;
  margin-top: 20px;
}

.donation-footer a {
  color: #ffa500;
  text-decoration: underline;
}


