/* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #f5f5f5;
    padding: 0;
}*/

.footer {
    background: linear-gradient(135deg, var(--brown-theme) 0%, var(--logo-theme) 50%, var(--brown-theme) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.footer a{
    text-decoration: none;
    color: white;
}

.footer a:hover{
    color: #EEC487;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(238, 196, 135, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footer-dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23footer-dots)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-size: 2.2em;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #EEC487 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: glow 3s ease-in-out infinite alternate;
    font-family: var(--dancing-style);
    font-weight: 700;
    position: relative;
}

@keyframes glow {
    from {
        filter: drop-shadow(0 0 20px rgba(238, 196, 135, 0.3));
    }
    to {
        filter: drop-shadow(0 0 30px rgba(238, 196, 135, 0.6));
    }
}

/* Newsletter Section */
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.form-group {
    position: relative;
}

.form-input {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 2px solid rgba(238, 196, 135, 0.3);
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1.1em;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-input:focus {
    outline: none;
    border-color: #EEC487;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 3px rgba(238, 196, 135, 0.3), 0 15px 35px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.submit-btn {
    background: linear-gradient(135deg, #EEC487 0%, #ffffff 100%);
    color: #734D12;
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1em;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(238, 196, 135, 0.3);
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #ffffff 0%, #EEC487 100%);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(238, 196, 135, 0.4);
}

/* Contact Section */
.footer .contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1rem;
}

.footer .contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    margin-bottom: 0.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .contact-item:hover {
    color: #EEC487;
    transform: translateX(10px) scale(1.02);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.footer .contact-icon {
    font-size: 1.5em;
    color: #EEC487;
    min-width: 30px;
    transition: all 0.3s ease;
}

.footer .contact-item:hover .contact-icon {
    transform: scale(1.2);
    color: #ffffff;
}

.footer .contact-text {
    font-size: 1.1em;
    line-height: 1.6;
    font-weight: 500;
}

.footer .donate-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;    
}

.footer .donate-text {
    font-size: 1.3em;
    margin-bottom: 1.5rem;
    color: #EEC487;
    font-style: italic;
    font-weight: 600;
    text-align: center;
    line-height: 1.5;
}

.footer .donate-btn {
    background: linear-gradient(135deg, #EEC487 0%, #fff 100%);
    color: #734D12;
    padding: 1.2rem 2rem;
    width: 18rem;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1em;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(238, 196, 135, 0.3);
    position: relative;
    overflow: hidden;
}

.footer .donate-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(238, 196, 135, 0.1));
    border-radius: 30px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer .donate-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(238, 196, 135, 0.4);
    background: linear-gradient(135deg, #ffffff 0%, #EEC487 100%);
}

.footer .donate-btn:hover::before {
    opacity: 1;
}

/* Social Media */
.footer .social-section {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(238, 196, 135, 0.3);
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}

.footer .social-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1), rgba(115, 77, 18, 0.1));
    z-index: -1;
}

.footer .social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.footer .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border: 2px solid rgba(238, 196, 135, 0.3);
    border-radius: 50%;
    color: #EEC487;
    font-size: 1.5em;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.footer .social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(238, 196, 135, 0.1));
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer .social-link:hover {
    border-color: #EEC487;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 40px rgba(238, 196, 135, 0.4);
}

.footer .social-link:hover::before {
    opacity: 1;
}

.footer .copyright {
    text-align: center;
    margin-top: 2rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(238, 196, 135, 0.2);
    font-size: 1em;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}

.footer .copyright::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1), rgba(115, 77, 18, 0.1));
    z-index: -1;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-content {
        padding: 0 1rem;
    }

    .footer-section h3 {
        font-size: 1.8em;
        margin-bottom: 1rem;
    }

    .footer .contact-item {
        padding: 0.8rem 0;
    }

    .footer .contact-text {
        font-size: 1em;
    }

    .footer .donate-text {
        font-size: 1.1em;
    }

    .footer .donate-btn {
        width: 100%;
        padding: 1rem 1.5rem;
    }

    .footer .social-links {
        gap: 1.5rem;
    }

    .footer .social-link {
        width: 50px;
        height: 50px;
        font-size: 1.3em;
    }

    .footer .copyright {
        padding: 1.5rem 0;
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2rem 0 0 0;
        margin-top: 2rem;
    }

    .footer-section h3 {
        font-size: 1.5em;
    }

    .footer .contact-text {
        font-size: 0.9em;
    }

    .footer .donate-text {
        font-size: 1em;
    }

    .footer .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.2em;
    }

    .footer .copyright {
        padding: 1rem 0;
        font-size: 0.8em;
    }
}