/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-image: url(img/prod.jpg);
    background-size: cover;
    background-attachment: fixed;
    overflow-y: scroll;

}



header h1 {
    margin: 0;
    font-size: 2rem;
}

nav {
    display: flex;
    align-items: center;
}

nav a {
    color: white;
    margin: 0 1rem;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease, border-bottom 0.3s ease;
    position: relative;
}

nav a:hover {
    color: #1abc9c;
}

nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    background: #1abc9c;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

nav a:hover::after {
    transform: scaleX(1);
}

main {
    padding: 2rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.donate-form {
    margin-top: 100px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.donate-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 150px;
    height: 150px;
    background: #1abc9c;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.donate-form h2 {
    margin-bottom: 1rem;
    color: #333;
    font-size: 2rem;
    font-weight: 700;
}

.donate-form p {
    margin-bottom: 1.5rem;
    color: #555;
    font-size: 1.1rem;
}

.donate-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #333;
}

.donate-form input,
.donate-form textarea,
.donate-form select {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    box-sizing: border-box;
}

.donate-form textarea {
    resize: vertical;
}

.donate-form button {
    background-color: #1abc9c;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.donate-form button:hover {
    background-color: #16a085;
    transform: translateY(-2px);
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
    padding-top: 60px;
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Progress bar styles */
.progress-bar {
    width: 100%;
    background-color: #f3f3f3;
    border-radius: 13px;
    padding: 3px;
    margin-top: 10px;
}

.progress {
    background: linear-gradient(to right, #4caf50, #8bc34a);
    height: 20px;
    border-radius: 10px;
}