@import url('https://fonts.googleapis.com/css2?family=Montserrat: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');

.donate-section {
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
  min-height: 400px;
  padding: 60px 20px;
  flex-wrap: wrap;
}

.donate-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:url('/themes/urni-website/assets/images/resources/volunteer-hero.png') center center / cover no-repeat;
  z-index: 0;
}

.news-bg-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.content-wrapper {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}

.content-column {
  flex: 0 0 58.33%;
  position: relative;
  z-index: 2;
}

.page-title {
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  font-weight: bold;
  margin-bottom: 20px;
  color: white;
}
.container {
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    padding: 60px 5% 40px 5%;
    max-width: 1500px;
}

.content-section {
    padding-right: 20px;
}

.form-section {
    background: white;
    padding: 0 40px;
    margin-bottom: 10px;
}

h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #025836;
    margin-bottom: 20px;
}

.description {
    color: #000;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify;
}
.form-row {
    display: flex;
    gap: 15px;
}

.form-row .form-group {
    flex: 1;
}
.form-row .dropdown .btn {
    height: 48px;
    padding: 12px 16px;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    font-size: 16px;
    text-align: left;
}

.form-row .dropdown .btn:focus {
    border-color: #1a5f3f;
    box-shadow: none;
}

.form-row input[type="text"] {
    height: 48px;
    padding: 12px 10px;
}
.dropdown-item:hover,
.dropdown-item:focus,
.dropdown-item.active,
.dropdown-item:active {
    background-color: #f8f9fa;
    color: #025836;
}

.dropdown-item {
    color: #212529;
}


.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    color: #1a5f3f;
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 8px;
}

.required {
    color: #e74c3c;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
textarea {
    width: 100%;
    padding: 12px 10px;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
textarea:focus {
    outline: none;
    border-color: #1a5f3f;
}

input::placeholder,
textarea::placeholder {
    color: #9ca3af;
}

.currency {
    width: 200px;
    padding: 12px 16px;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
    cursor: pointer;
}

select option:first-child {
    color: #a0a6ac;
}

textarea {
    height: 120px;
    resize: vertical;
}

.submit-btn {
    background-color: #025836;
    color: white;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #F1FFEF;
    color: #025836;
    scale: 105%;
}

@media (max-width: 768px) {
    .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .content-section {
        padding-right: 0;
    }

    h1 {
        font-size: 36px;
    }

    .form-section {
        padding: 30px 20px;
    }
}
@keyframes fadeInHero {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-visible {
    animation: fadeInHero 1.2s ease-out forwards;
}

@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.page-slide-in-left {
    animation: slideInFromLeft 0.8s ease-out forwards;
}

.page-slide-in-right {
    animation: slideInFromRight 0.8s ease-out forwards;
}