*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
    overflow-x: hidden;
}
@font-face {
    font-family: 'NavbarFont';
    src: url(/fonts/navbar.ttf) format('truetype');
    font-weight: normal;
    font-style: normal;
}

.bg1 {
  
  position: relative;
  font-family: 'NavbarFont', 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    background-color:#6F43FE ;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    width: 100%;
   padding: -30px;
    font-family: 'NavbarFont', 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    z-index: 1;
}

.fp-container {
    position: relative;
 
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-width: 260px;
    height: 320px;
 margin-top: 0px;
   
}

.fp1-image, .fp2-image, .fp3-image {
  top: 150px;
    width: 18vw;
    min-width: 100px;
    max-width: 220px;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    position: absolute;
    transition: all 0.3s;
}

.fp1-image {
    left: 55%;
    transform: translateX(-200%) rotate(-18deg);
    z-index: 2;
  
}
.fp2-image {

    left: 50%;
    transform: translateX(-50%) rotate(0deg);
    z-index: 3;
}
.fp3-image {
    left: 40%;
    transform: translateX(150%) rotate(18deg);
    z-index: 1;
}

.fp-container:hover .fp2-image {
    z-index: 4;
}
.fp-container:hover .fp2-image:hover ~ .fp1-image,
.fp-container:hover .fp2-image:hover ~ .fp3-image {
    filter: blur(3px) brightness(0.5);
    transition: filter 0.2s;
}
/* New: Blur and darken both fp1 and fp3 when fp2 is hovered, regardless of DOM order */
.fp-container:hover .fp2-image:hover ~ .fp1-image,
.fp-container:hover .fp2-image:hover ~ .fp3-image,
.fp-container:hover .fp1-image:not(:hover):not(.fp2-image:hover),
.fp-container:hover .fp3-image:not(:hover):not(.fp2-image:hover) {
    filter: blur(3px) brightness(0.5);
    transition: filter 0.2s;
}

.fp2-image:hover {
    box-shadow: 0 0 24px 8px #fff, 0 8px 32px rgba(0,0,0,0.25);
    z-index: 10;
    transition: box-shadow 0.2s;
}

@media (max-width: 1200px) {
    .fp-container { height: 320px; top: 150px; margin-top: -200px; }
    .fp1-image, .fp2-image, .fp3-image { width: 22vw; max-width: 180px; }
    .fp1-image { transform: translateX(-200%) rotate(-16deg); }
    .fp3-image { transform: translateX(130%) rotate(16deg); }
}
@media (max-width: 900px) {
    .fp-container { height: 320px; top: 150px; margin-top: -200px; }
    .fp1-image, .fp2-image, .fp3-image { width: 22vw; max-width: 500px; }
    .fp1-image { transform: translateX(-150%) rotate(-16deg); }
    .fp3-image { transform: translateX(70%) rotate(16deg); }
}
@media (max-width: 600px) {
    .fp-container { height: 200px; margin-top: -200px; }
    .fp1-image, .fp2-image, .fp3-image { width: 150px; min-width: 70px; }
    .fp1-image { transform: translateX(-150%) rotate(-12deg); }
    .fp3-image { transform: translateX(75%) rotate(12deg); }
}


.info-container {
  font-family: 'NavbarFont', 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    margin: 10px auto 0 auto;
    padding: 32px 24px;
    max-width: 1200px;
    margin-top: 120px;
    text-align: center;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
.info-container .header {
    font-family: 'NavbarFont', 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    margin-bottom: 12px;
    font-size: 3rem;
    color: white;
    font-weight: bold;
}
.info-container p {
    font-family: 'NavbarFont', 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 2rem;
    color: #ffffff;
}
@media (max-width: 600px) {
    .info-container {
      padding-top: 100px;
        padding: 18px 8px;
        max-width: 95vw;
    }
    .info-container h2 {
      margin-top: 100px;
        font-size: 1.2rem;
    }
    .info-container p {
        font-size: 0.95rem;
    }
}
@media (max-width: 1200px) {
    .info-container {
        margin-top: 200px;
        padding: 18px 8px;
        max-width: 95vw;
    }
    .info-container h2 {
      
        font-size: 1.2rem;
    }
    .info-container p {
        font-size: 0.95rem;
    }
}
.info-container h2, .info-container p {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    max-width: 400px;
    margin: 40px auto 0 auto;
    padding: 32px 24px;
    background: rgba(255,255,255,0.95);
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.contact-input, .contact-textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    resize: none;
    transition: border 0.2s;
}
.contact-input:focus, .contact-textarea:focus {
    border: 1.5px solid #6F43FE;
    outline: none;
}
.contact-textarea {
    min-height: 100px;
    max-height: 220px;
}
.contact-button {
    background: #6F43FE;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 32px;
    font-size: 1.1rem;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    cursor: pointer;
    transition: background 0.2s;
    font-weight: bold;
    margin-top: -8px;
}
.contact-button:hover {
    background: #4b2bb7;
}
@media (max-width: 600px) {
    .contact-form {
        padding: 18px 8px;
        max-width: 98vw;
    }
    .contact-input, .contact-textarea {
        font-size: 0.95rem;
    }
    .contact-button {
        font-size: 1rem;
        padding: 10px 18px;
    }
}
.contact-text {
    font-size: 1.5rem;
    color: #ffffff;
    text-align: center;
    margin-top: 20px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    padding-bottom: 20PX;
}

/* From Uiverse.io by marcelodolza */
.button {
  --primary: #ff5569;
  --neutral-1: #f7f8f7;
  --neutral-2: #e7e7e7;
  --radius: 14px;
  cursor: pointer;
  border-radius: var(--radius);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  border: none;
  box-shadow: 0 0.5px 0.5px 1px rgba(255, 255, 255, 0.2),
    0 10px 20px rgba(0, 0, 0, 0.2), 0 4px 5px 0px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s ease;
  min-width: 200px;
  padding: 20px;
  height: 68px;
  font-family: "Galano Grotesque", Poppins, Montserrat, sans-serif;
  font-style: normal;
  font-size: 18px;
  font-weight: 600;
}
.button:hover {
  transform: scale(1.02);
  box-shadow: 0 0 1px 2px rgba(255, 255, 255, 0.3),
    0 15px 30px rgba(0, 0, 0, 0.3), 0 10px 3px -3px rgba(0, 0, 0, 0.04);
}
.button:active {
  transform: scale(1);
  box-shadow: 0 0 1px 2px rgba(255, 255, 255, 0.3),
    0 10px 3px -3px rgba(0, 0, 0, 0.2);
}
.button:after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  border: 2.5px solid transparent;
  background: linear-gradient(var(--neutral-1), var(--neutral-2)) padding-box,
    linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.45))
      border-box;
  z-index: 0;
  transition: all 0.4s ease;
}
.button:hover::after {
  transform: scale(1.05, 1.1);
  box-shadow: inset 0 -1px 3px 0 rgba(255, 255, 255, 1);
}
.button::before {
  content: "";
  inset: 7px 6px 6px 6px;
  position: absolute;
  background: linear-gradient(to top, var(--neutral-1), var(--neutral-2));
  border-radius: 30px;
  filter: blur(0.5px);
  z-index: 2;
}
.state p {
  display: flex;
  align-items: center;
  justify-content: center;
}
.state .icon {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: scale(1.25);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.state .icon svg {
  overflow: visible;
}
/* Outline */
.outline {
  position: absolute;
  border-radius: inherit;
  overflow: hidden;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s ease;
  inset: -2px -3.5px;
}
.outline::before {
  content: "";
  position: absolute;
  inset: -100%;
  background: conic-gradient(
    from 180deg,
    transparent 60%,
    white 80%,
    transparent 100%
  );
  animation: spin 2s linear infinite;
  animation-play-state: paused;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.button:hover .outline {
  opacity: 1;
}
.button:hover .outline::before {
  animation-play-state: running;
}
/* Letters */
.state p span {
  display: block;
  opacity: 1;
  animation: slideDown 0.8s ease forwards calc(var(--i) * 0.03s);
}
.button:hover p span {
  opacity: 1;
  animation: wave 0.5s ease forwards calc(var(--i) * 0.02s);
}
.button:focus p span {
  opacity: 1;
  animation: disapear 0.6s ease forwards calc(var(--i) * 0.03s);
}
@keyframes wave {
  30% {
    opacity: 1;
    transform: translateY(4px) translateX(0) rotate(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-3px) translateX(0) rotate(0);
    color: var(--primary);
  }
  100% {
    opacity: 1;
    transform: translateY(0) translateX(0) rotate(0);
  }
}
@keyframes slideDown {
  0% {
    opacity: 0;
    transform: translateY(-20px) translateX(5px) rotate(-90deg);
    color: var(--primary);
    filter: blur(5px);
  }
  30% {
    opacity: 1;
    transform: translateY(4px) translateX(0) rotate(0);
    filter: blur(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-3px) translateX(0) rotate(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0) translateX(0) rotate(0);
  }
}
@keyframes disapear {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translateX(5px) translateY(20px);
    color: var(--primary);
    filter: blur(5px);
  }
}
/* Plane */
.state--default .icon svg {
  animation: land 0.6s ease forwards;
}
.button:hover .state--default .icon {
  transform: rotate(45deg) scale(1.25);
}
.button:focus .state--default svg {
  animation: takeOff 0.8s linear forwards;
}
.button:focus .state--default .icon {
  transform: rotate(0) scale(1.25);
}
@keyframes takeOff {
  0% {
    opacity: 1;
  }
  60% {
    opacity: 1;
    transform: translateX(70px) rotate(45deg) scale(2);
  }
  100% {
    opacity: 0;
    transform: translateX(160px) rotate(45deg) scale(0);
  }
}
@keyframes land {
  0% {
    transform: translateX(-60px) translateY(30px) rotate(-50deg) scale(2);
    opacity: 0;
    filter: blur(3px);
  }
  100% {
    transform: translateX(0) translateY(0) rotate(0);
    opacity: 1;
    filter: blur(0);
  }
}
/* Contrail */
.state--default .icon:before {
  content: "";
  position: absolute;
  top: 50%;
  height: 2px;
  width: 0;
  left: -5px;
  background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.5));
}
.button:focus .state--default .icon:before {
  animation: contrail 0.8s linear forwards;
}
@keyframes contrail {
  0% {
    width: 0;
    opacity: 1;
  }
  8% {
    width: 15px;
  }
  60% {
    opacity: 0.7;
    width: 80px;
  }
  100% {
    opacity: 0;
    width: 160px;
  }
}
/* States */
.state {
  padding-left: 29px;
  z-index: 2;
  display: flex;
  position: relative;
}
.state--default span:nth-child(4) {
  margin-right: 5px;
}
.state--sent {
  display: none;
}
.state--sent svg {
  transform: scale(1.25);
  margin-right: 8px;
}
.button:focus .state--default {
  position: absolute;
}
.button:focus .state--sent {
  display: flex;
}
.button:focus .state--sent span {
  opacity: 0;
  animation: slideDown 0.8s ease forwards calc(var(--i) * 0.2s);
}
.button:focus .state--sent .icon svg {
  opacity: 0;
  animation: appear 1.2s ease forwards 0.8s;
}
@keyframes appear {
  0% {
    opacity: 0;
    transform: scale(4) rotate(-40deg);
    color: var(--primary);
    filter: blur(4px);
  }
  30% {
    opacity: 1;
    transform: scale(0.6);
    filter: blur(1px);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.button.contact-toggle-button {
    display: block;
    margin-left: auto;
    margin-right: auto;

}
.navbar-toggle, .navbar-toggle-icon, .navbar-toggle-close {
  background: transparent !important;
}

/* Donation Modal Styles */
.donate-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.donate-modal.show {
    opacity: 1;
}

.donate-modal-content {
    background-color: transparent;
    border-radius: 20px;
    padding: 0;
    max-width: 500px;
    width: 90%;
    max-height: 70vh;
    overflow: hidden;
    transform: scale(0.7) translateY(-50px);
    transition: transform 0.3s ease;
}

.donate-modal.show .donate-modal-content {
    transform: scale(1) translateY(0);
    animation: popUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popUp {
    0% {
        transform: scale(0.3) translateY(-100px);
        opacity: 0;
    }
    50% {
        transform: scale(1.1) translateY(-10px);
        opacity: 0.8;
    }
    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.donate-header {
    background: transparent;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.donate-header h2 {
    margin: 0;
    font-family: 'NavbarFont', 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 28px;
    font-weight: bold;
}



.donate-body {
    padding: 20px;
    color: #333;
}



.donate-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: -20px;
    position: relative;
}

/* Cool Donate Cards */
.donate-card {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-height: 150px;
}

.donate-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.card-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}



.card-content {
    position: relative;
    z-index: 2;
    padding: 20px;
    color: white;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.card-header h3 {
    font-family: 'NavbarFont', 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 20px;
    font-weight: bold;
    margin: 0;
    color: white;
}

.card-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.card-info {
    flex-grow: 1;
}

.phone-number, .card-number {
    font-size: 16px;
    font-weight: 600;
    margin: 8px 0;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.donate-message {
    display: none;
}

.card-actions {
    margin-top: 15px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.copy-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 6px;
}

.copy-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.copy-btn i {
    font-size: 12px;
}

/* Specific card themes */
.fastpay-card {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E8E 100%);
    position: relative;
}

.card-close-btn {
    position: absolute;
    top: -15px;
    right: -15px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    color: #FF6B6B;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.card-close-btn:hover {
    background: white;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.fib-card {
    background: linear-gradient(135deg, #4ECDC4 0%, #44A08D 100%);
}

.qi-card {
    background: linear-gradient(135deg, #FFA726 0%, #FFB74D 100%);
}

.donate-option {
    background-color: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.donate-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #000000;
}

.donate-option h3 {
    margin: 0 0 10px 0;
    font-family: 'NavbarFont', 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 22px;
    color: #333;
}

.donate-option p {
    margin: 0 0 20px 0;
    color: #666;
    font-size: 16px;
}

.donate-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    min-width: 180px;
    justify-content: center;
}

.paypal-btn {
    background: linear-gradient(45deg, #0070BA, #1546A0);
    color: white;
}

.paypal-btn:hover {
    background: linear-gradient(45deg, #1546A0, #0070BA);
    transform: scale(1.05);
}

.coffee-btn {
    background: linear-gradient(45deg, #FFDD00, #FF6B35);
    color: #333;
}

.coffee-btn:hover {
    background: linear-gradient(45deg, #FF6B35, #FFDD00);
    transform: scale(1.05);
}

.kofi-btn {
    background: linear-gradient(45deg, #29ABE0, #FF5E84);
    color: white;
}

.kofi-btn:hover {
    background: linear-gradient(45deg, #FF5E84, #29ABE0);
    transform: scale(1.05);
}

/* Responsive design for donation modal */
@media (max-width: 768px) {
    .donate-modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .donate-header {
        padding: 20px;
    }
    
    .donate-header h2 {
        font-size: 24px;
    }
    
    .donate-body {
        padding: 25px;
    }
    
    .donate-options {
        gap: 20px;
    }
    
    .donate-option {
        padding: 20px;
    }
    
    .donate-button {
        padding: 10px 20px;
        font-size: 14px;
        min-width: 150px;
    }
}

@media (max-width: 480px) {
    .donate-header h2 {
        font-size: 20px;
    }
    
    .donate-body > p {
        font-size: 16px;
    }
    
    .donate-option h3 {
        font-size: 18px;
    }
    
    .donate-option p {
        font-size: 14px;
    }
}

@media (max-width: 400px) {
    .donate-modal-content {
        width: 98%;
        margin: 10px;
        padding: 15px;
    }
    
    .donate-header {
        padding: 15px;
    }
    
    .donate-header h2 {
        font-size: 18px;
    }
    
    .donate-body {
        padding: 15px;
    }
    
    .donate-body > p {
        font-size: 14px;
        line-height: 1.4;
    }
    
    .donate-options {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 20px;
    }
    
    .donate-card {
        min-height: 180px;
        border-radius: 15px;
    }
    
    .card-content {
        padding: 20px;
    }
    
    .card-header h3 {
        font-size: 20px;
    }
    
    .phone-number, .card-number {
        font-size: 16px;
        margin: 8px 0;
    }
    
    .card-actions {
        margin-top: 15px;
        gap: 8px;
    }
    
    .copy-btn {
        padding: 8px 12px;
        font-size: 12px;
        border-radius: 20px;
    }
    
    .copy-btn i {
        font-size: 10px;
    }
}


