@import url('https://fonts.googleapis.com/css2?family=Alegreya+Sans+SC:wght@300;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: url('./Images/ug.png');
    font-family: 'Raleway', sans-serif;
    padding-top: 120px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header Styles - Matching your original */
header {
    background-color: white;
    color: white;
    height: 18%;
    width: 100%;
    z-index: 10;
    position: fixed;
    top: 0;
    left: 0;
    font-weight: 100;
}

.header-logo {
    font-size: 10px;
    float: left;
    padding-left: 30px;
    padding-top: 0px;
}

.header-logo > img {
    width: 70%;
}

li a {
    text-decoration: none;
    display: block;
    text-decoration: none;
    text-transform: uppercase;
    color: black;
    font-size: 20px;
    font-family: 'Raleway', sans-serif;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 10px;
    padding: 20px;
    transition: all ease 0.5s;
}

li {
    float: right;
    padding-left: 30px;
    padding-top: 30px;
    list-style: none;
    padding-right: 40px;
    font-size: 24px;
}

header ul li a:hover {
    background-color: rgba(220, 20, 60);
    color: white;
}

/* Donation Form Container */
.donation-container {
    width: 80%;
    max-width: 1000px;
    margin: 30px auto;
    background-color: white;
    border-radius: 10px;
    box-shadow: 10px 10px 68px -6px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    margin-bottom: 50px;
}

.form-header {
    background-color: #F08080;
    color: white;
    padding: 30px;
    text-align: center;
}

.form-header h1 {
    font-family: 'Alegreya Sans SC', sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.form-header p {
    font-size: 18px;
    opacity: 0.9;
}

.donation-form {
    padding: 30px;
}

/* Form Section Styling */
.form-section {
    margin-bottom: 40px;
    border-bottom: 1px solid #eee;
    padding-bottom: 30px;
}

.form-section h2 {
    color: #F08080;
    font-family: 'Alegreya Sans SC', sans-serif;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    font-size: 24px;
}

.form-section h2 i {
    margin-right: 10px;
    font-size: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #555;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="date"],
select {
    width: 100%;
    padding: 12px 15px;
    border-radius: 30px;
    border: 1px solid #ddd;
    font-size: 16px;
    font-family: 'Raleway', sans-serif;
    transition: border 0.3s;
}

input:focus,
select:focus {
    outline: none;
    border-color: #F08080;
}

.checkbox-group p {
    font-weight: 600;
    color: #555;
    margin-bottom: 12px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.checkbox-item input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    accent-color: #F08080;
}

.consent-checkbox {
    margin: 20px 0;
}

.consent-checkbox label {
    font-size: 14px;
    color: #666;
}

/* Button Styles - Matching your original */
.form-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.btn {
    font-family: 'Alegreya Sans SC', sans-serif;
    border: 2px solid #F08080;
    padding: 12px 30px;
    background: transparent;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    color: #F08080;
    transition: all 0.3s ease;
    min-width: 180px;
    text-align: center;
}

.primary {
    background-color: #F08080;
    color: white;
}

.btn:hover {
    background: linear-gradient(45deg, #FFD700 24%, #FFA500 100%);
    border-color: transparent;
    color: black;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 20px 0;
    margin-top: auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    margin: 0 auto;
}

.social-links a {
    color: white;
    margin-left: 15px;
    font-size: 20px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #F08080;
}

/* Responsive Design */
@media (max-width: 768px) {
    .donation-container {
        width: 95%;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .form-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn {
        width: 100%;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}