/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Accessibility Features */
:focus {
    outline: 3px solid #ff8c00; /* Orange outline for focused elements */
}

/* UI Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Apply the animation to all sections */
section {
    animation: fadeIn 1s ease-in-out;
}

/* Navigation Bar Styles */
nav {
    background-color: #ff8c00;
    color: #fff;
    padding: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

nav a:hover {
    background-color: #e67e00;
}

/* Donation Section Styles */
.donation-section {
    min-height: 100vh; /* Full viewport height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #fff; /* White background */
    color: #ff8c00; /* Orange text */
    font-size: xxx-large;
    border-style: solid;
    border-width: 3px;
    border-radius: 21px;
}

/* Input Styles */
input[type='number'], input[type='text'], textarea, button {
    font-size: 1.5rem; /* Larger text size */
    padding: 15px;
    border: 2px solid #ff8c00; /* Orange border */
    border-radius: 15px; /* Larger border-radius */
    margin: 10px 0;
    transition: all 0.3s ease;
}

input[type='number']:hover, input[type='text']:hover, textarea:hover {
    border-color: #e67e00; /* Darker orange on hover */
}

input[type='number']:focus, input[type='text']:focus, textarea:focus {
    border-color: #ffa500; /* Brighter orange when active */
    box-shadow: 0 0 8px #ffa500; /* Adding a glow effect */
}

/* Button Styles */
button {
    background-color: #ff8c00; /* Orange background */
    color: #fff;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

button:hover {
    background-color: #e67e00; /* Darker orange on hover */
}

/* Info Section Styles */
.info-section {
    margin: 50px 0;
    padding: 50px 0;
    transition: transform 0.3s ease;
}

.info-section:hover {
    transform: scale(1.02); /* Slight increase in size on hover */
}

/* Footer Styles */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    width: 100%;
}

footer a {
    color: #ff8c00; /* Orange text links */
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:visited {
    color: #ffd700; /* Gold color for visited links */
}

/* Responsive Design */
@media (max-width: 768px) {
    input[type='number'], input[type='text'], textarea, button {
        font-size: 1.2rem; /* Adjusting text size for smaller screens */
    }
}

/* Large Text for Accessibility */
.large-text {
    font-size: 22px;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav a {
        padding: 10px 15px;
    }

    button {
        padding: 10px 20px;
        font-size: 16px;
    }
}

/* About and Contact Section Styles */
#about, #contact {
    background-color: #fff3e0; /* Light orange background */
    color: #333;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
}

#about h2, #contact h2 {
    color: #ff8c00; /* Orange text for headings */
}

/* List Styles for Contact Section */
#contact ul {
    list-style-type: none;
    padding: 0;
}

#contact li {
    padding: 5px 0;
}

#contact li:before {
    content: '✉️'; /* Emoji icon for list items */
    margin-right: 10px;
}

/* Information Sections Styles */
.info-section {
    padding: 50px 0;
}

/* Adjusting text, border radii, font-size, and font-weight */
.info-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ff8c00; /* Orange text for headings */
    margin-bottom: 20px;
}

.info-section p {
    font-size: 1.2rem;
    line-height: 1.8;
}
