/* Footer Styling */
.site-footer {
    /* background: linear-gradient(135deg, #6f42c1, #2c1a69); */
    /* Purple gradient */
    padding: 40px 20px;
    color: var(--background-color);
    /* White text for contrast */
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    border-top: 5px solid #d4af37;
    /* Golden top border */
    margin-top: 20px;
}

.site-footer strong {
    display: block;
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    /* transition: color 0.3s ease; */
}

.site-footer strong:hover {
    color: var(--secondary-color);
    transform: translateY(-5px);
    /* Turns white on hover */
}

/* Subheadings & Links Hover Effect */
.site-footer ul {
    padding: 0;
    list-style: none;
}

.site-footer ul li {
    margin-bottom: 10px;
    text-align: left !important;
}

.site-footer ul li a {
    text-decoration: none;
    color: black;
    /* Light gray text */
    transition: color 0.3s ease, transform 0.2s ease;
}

/* Address and Contact Styling */
.site-footer p {
    margin-bottom: 10px;
}

/* Social Media Icons */
.site-footer a img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.site-footer a img:hover {
    transform: scale(1.2);
}

/* Newsletter Section */
.newsletter {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.newsletter input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 0.9rem;
}

.newsletter button {
    background-color: #ffd700;
    border: none;
    border-radius: 5px;
    padding: 10px 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter button:hover {
    background-color: #b38e30;
}

.p-footer {
    font-size: 1em;
    line-height: 1.6;
    margin: 10px 0;
    /* color: var(--dark-brown); */
    text-align: left !important;
}

/* Responsive Layout */
@media (max-width: 767px) {
    .site-footer strong {
        font-size: 1rem;
    }

    .newsletter input {
        font-size: 0.8rem;
    }

    .site-footer .row {
        text-align: center;
    }

    .site-footer .row>div {
        margin-bottom: 30px;
    }

    .newsletter {
        flex-direction: column;
    }

    .newsletter button {
        width: 100%;
    }
    .site-footer ul li {
        margin-bottom: 10px;
        text-align: center !important;
    }
    .site-footer strong {
        font-size: 1rem;
        text-align: center;
    }
    .site-footer p {
        text-align: center !important;
    }
}