/* Footer Styles */
footer {
    background-color: #111E0A;
    color: #ffd700;
    margin-top: 50px;
    border-top: 3px solid #ffd700;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Newsletter Section */
.newsletter-section {
    background-color: #ffd700;
    color: #312E0A;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 8px;
}

.newsletter-content h3 {
    color: #e31818;
    margin-bottom: 10px;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
}

.newsletter-content h3 i {
    margin-right: 10px;
}

.newsletter-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.newsletter-form {
    margin-bottom: 15px;
}

.newsletter-form .form-group {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.newsletter-form .form-group input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid #312E0A;
    border-radius: 25px;
    font-size: 1rem;
    background-color: white;
    color: #312E0A;
}

.newsletter-form .form-group input:focus {
    outline: none;
    border-color: #e31818;
    box-shadow: 0 0 5px rgba(227, 24, 24, 0.3);
}

.newsletter-btn {
    background-color: #e31818;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.newsletter-btn:hover {
    background-color: #c01414;
    transform: translateY(-2px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.newsletter-btn i {
    margin-right: 5px;
}

.newsletter-info {
    text-align: center;
}

.newsletter-info small {
    color: #312E0A;
    font-size: 0.9rem;
}

.newsletter-info i {
    margin-right: 5px;
    color: #e31818;
}

/* Newsletter Alerts */
.newsletter-alert {
    padding: 12px 15px;
    border-radius: 5px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.newsletter-alert i {
    margin-right: 8px;
    font-size: 1.1rem;
}

.newsletter-alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.newsletter-alert-success i {
    color: #28a745;
}

.newsletter-alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.newsletter-alert-error i {
    color: #dc3545;
}

.newsletter-alert-info {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

.newsletter-alert-info i {
    color: #17a2b8;
}

/* Footer Links */
.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
    padding: 20px 0;
}

.footer-section h4 {
    color: #ffd700;
    margin-bottom: 15px;
    font-size: 1.2rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
    padding-bottom: 5px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #ffd700;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: #e31818;
    text-decoration: underline;
}

/* Contact Info */
.footer-contact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 215, 0, 0.3);
    flex-wrap: wrap;
    gap: 20px;
}

.contact-info {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    color: #ffd700;
    font-size: 0.95rem;
}

.contact-item i {
    margin-right: 8px;
    color: #e31818;
    width: 16px;
    text-align: center;
}

.contact-item a {
    color: #ffd700;
    text-decoration: none;
}

.contact-item a:hover {
    color: #e31818;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #4252F5;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #e31818;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

/* Instagram-specific styling */
.social-link .fa-instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.social-link:has(.fa-instagram) {
    background-color: #fff;
}

.social-link:has(.fa-instagram):hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-link:has(.fa-instagram):hover .fa-instagram {
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    color: white;
}

/* YouTube-specific styling */
.social-link:has(.fa-youtube) {
    background-color: #FF0000;
}

.social-link:has(.fa-youtube):hover {
    background-color: #CC0000;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 215, 0, 0.3);
    color: #ffd700;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .newsletter-section {
        padding: 20px;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .newsletter-btn {
        justify-content: center;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .footer-contact {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-info {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 15px;
    }
    
    .newsletter-content h3 {
        font-size: 1.3rem;
    }
}
