
.footer {
    background-color: #2e2d2d;
    color: white;
}


.footer-links li {
    margin-bottom: 10px;
}

.hover-link {
    transition: opacity 0.3s ease;
}

.hover-link:hover {
    opacity: 0.8;
    color: #fff !important;
}


.social-icons a {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #007bff;
    transform: translateY(-3px);
}


.newsletter-form .form-control {
    background-color: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.1);
    color: white !important;
    height: 45px;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255,255,255,0.5);
}

.newsletter-form .form-control:focus {
    background-color: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.2);
    box-shadow: 0 0 0 0.2rem rgba(255,255,255,0.1);
}

.newsletter-form .btn-primary {
    padding: 10px 20px;
    background-color: #007bff;
    border: none;
    transition: all 0.3s ease;
}

.newsletter-form .btn-primary:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}


#newsletterMessage {
    min-height: 24px;
    transition: opacity 0.3s ease;
    margin-top: 8px;
}

#newsletterMessage span {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 14px;
    animation: fadeIn 0.3s ease;
}


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


#newsletterMessage .text-success {
    background-color: rgba(40, 167, 69, 0.1);
    color: #28a745 !important;
}

#newsletterMessage .text-danger {
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545 !important;
}

#newsletterMessage .text-info {
    background-color: rgba(23, 162, 184, 0.1);
    color: #17a2b8 !important;
}

#newsletterMessage .text-warning {
    background-color: rgba(255, 193, 7, 0.1);
    color: #ffc107 !important;
}


.newsletter-form.submitting {
    opacity: 0.7;
    pointer-events: none;
}

.newsletter-form.submitting button[type="submit"] {
    cursor: not-allowed;
}


@media (max-width: 767px) {
    .newsletter-form .form-control {
        color: white !important;
        -webkit-text-fill-color: white !important;
    }
    
    .newsletter-form .form-control::placeholder {
        color: rgba(255,255,255,0.7) !important;
        -webkit-text-fill-color: rgba(255,255,255,0.7) !important;
    }
    
    #newsletterMessage {
        text-align: center;
    }
}