/* Variables */
:root {
    --primary-turquoise: #009B8F;
    --primary-purple: #7C338C;
    --primary-lime: #8DC63F;
    --gradient-primary: linear-gradient(135deg, var(--primary-turquoise) 0%, var(--primary-purple) 100%);
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Support Page Styles */

/* Hero Section */
.title-section {
    background: var(--gradient-primary);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.title-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
    animation: slide 20s linear infinite;
}

@keyframes slide {
    from { background-position: 0 0; }
    to { background-position: 60px 60px; }
}

.title-section h1 {
    color: white;
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin: 0;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Info Section */
.info-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 4rem 0;
    position: relative;
}

.info-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: white;
    transform: skewY(-2deg);
}

.info-section .lead {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #555;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Support Form Section */
.support-form-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(0, 155, 143, 0.05) 0%, rgba(124, 51, 140, 0.05) 100%);
    position: relative;
}

.support-form-container {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.support-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
}

.support-form-container h2 {
    color: var(--primary-turquoise);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.amount-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.amount-preset {
    border: 2px solid var(--primary-turquoise) !important;
    color: var(--primary-turquoise);
    padding: 0.8rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-weight: 600;
    background: white;
}

.amount-preset:focus,
.amount-preset:active {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

.amount-preset:hover,
.amount-preset.active {
    background: var(--primary-turquoise);
    color: white;
    transform: translateY(-2px);
    border-color: var(--primary-turquoise) !important;
}

.form-control {
    padding: 0.8rem;
    border-radius: 10px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-turquoise);
    box-shadow: 0 0 0 0.2rem rgba(0, 155, 143, 0.1);
}

.form-label {
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.5rem;
}

.btn-primary {
    background: var(--primary-turquoise);
    border: none !important;
    padding: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-radius: 50px;
    color: white;
    font-size: 1.1rem;
}

.btn-primary:focus,
.btn-primary:active {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

.btn-primary:hover {
    background: #00b3a3;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 155, 143, 0.2);
    color: white;
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 5px 10px rgba(0, 155, 143, 0.2);
    background: var(--primary-turquoise);
}

/* Report Section */
.report-section {
    padding: 5rem 0;
    background: white;
    position: relative;
}

.report-section h2 {
    color: var(--primary-turquoise);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.report-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gradient-primary);
}

.achievement-list {
    list-style: none;
    padding: 0;
    margin: 0 0 3rem;
}

.achievement-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #555;
}

.achievement-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-turquoise);
    font-weight: bold;
}

.major-achievement {
    background: linear-gradient(135deg, rgba(0, 155, 143, 0.1) 0%, rgba(124, 51, 140, 0.1) 100%);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 3rem;
}

.major-achievement p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
    margin: 0;
}

.project-gallery {
    margin-top: 4rem;
}

.gallery-item {
    position: relative;
    margin-bottom: 2rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    font-size: 1.1rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .title-section {
        padding: 4rem 0;
    }

    .title-section h1 {
        font-size: 2.5rem;
    }

    .support-form-container {
        padding: 2rem;
    }

    .amount-buttons {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item img {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .title-section h1 {
        font-size: 2rem;
    }

    .info-section .lead {
        font-size: 1.1rem;
    }

    .support-form-container h2 {
        font-size: 1.5rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.support-form-container,
.achievement-list li,
.major-achievement,
.gallery-item {
    animation: fadeIn 0.6s ease-out forwards;
}

/* Footer Links */
.footer a,
.footer-link {
    color: white !important;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.footer a:hover,
.footer-link:hover {
    opacity: 1;
    transform: translateX(5px);
}

/* Useful Links Section */
.useful-links a {
    color: white !important;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.useful-links a:hover {
    opacity: 1;
    transform: translateX(5px);
}

/* Button Styles Override */
.btn:focus,
.btn:active,
.btn:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:hover,
.amount-preset:focus,
.amount-preset:active,
.amount-preset:hover {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
} 