/* Reset and base styling */

body {
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #4CAF50;
    padding: 10px 20px;
}

.brand {
    position: relative; /* Enables positioning of the h6 element */
}

.brand a {
    text-decoration: none;
    color: white !important;
    font-size: 22px;
    font-weight: bold;
    display: flex;
    align-items: center; /* Aligns icon and text horizontally */
    gap: 8px; /* Adds space between the icon and the text */
    transition: color 0.3s ease;
}

.brand a:hover {
    color: rgb(255, 255, 255);
}


.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
  
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #f4a261;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #f4a261;
}

.nav-links a:hover::after {
    width: 100%;
}


/* General styles */

header {
    background-color: #4CAF50;
    padding: 1rem;
    text-align: left;
}

header h1 {
    color: white;
}

header .team-name {
    color: #fff;
    font-size: 1.2rem;
    margin-top: 0.5rem;
}

nav ul {
    list-style: none;
    padding: 0;
    margin-top: 10px;
    text-align: right !important;
}

nav ul li {
    display: inline;
    margin-right: 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

main {
    padding: 2rem;
}

h2 {
    color: #4CAF50;
    text-align: center;
}

form {
    max-width: 500px;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

form input, form select, form button {
    width: 100%;
    margin-bottom: 15px;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
}

form button:hover {
    background-color: #45a049;
}

footer {
    text-align: center;
    background-color: #4CAF50;
    padding: 1rem;
    color: white;
    margin-top: 20px;
}

/* Donation Options Section */
.donation-options {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.donation-option {
    flex: 1;
    text-align: center;
    padding: 20px;
    background: white;
    border: 1px solid #ccc;
    border-radius: 8px;
    transition: transform 0.3s;
}

.donation-option:hover {
    transform: scale(1.05);
}

.cta-button {
    display: inline-block;
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    margin-top: 10px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #45a049;
}

/* Donation Forms */
.donation-form {
    padding: 20px;
    margin: 20px auto;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.donation-form h3 {
    margin-bottom: 10px;
    color: #333;
}

.donation-form label {
    display: block;
    margin-top: 10px;
}

.donation-form input,
.donation-form textarea,
.donation-form button {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.donation-form button {
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
}

.donation-form button:hover {
    background-color: #45a049;
}
