/* Footer */
.footer {
    background: var(--pink-dark);
    color: var(--color-black);
    padding: 60px 20px 20px 20px;
}

.footer-wrapper {
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

/* Section Headings */
.footer-section h3 {
    font-size: 20px;
    color: var(--pink-light);
    margin-bottom: 16px;
}

/* Contact Info */
.footer-section p {
    font-size: 14px;
    color: var(--color-white);
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.footer-section p img {
    margin-right: 8px;
    height: 20px;
    width: 20px;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.social-icons img {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.social-icons img:hover {
    transform: scale(1.2);
}

/* Links Section */
.footer-section.links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-section.links ul li a {
    color: var(--color-white);
    text-decoration: none;
    font-size: 14px;
}

.footer-section.links ul li a:hover {
    color: var(--pink-secondary);
}

/* Subscribe Section */
.subscribe-form {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.subscribe-form input {
    flex: 1;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(233, 30, 99, 0.3);
    outline: none;
    font-size: 14px;
}

.subscribe-form .btn {
    padding: 10px 16px;
    font-size: 14px;
    border-radius: 12px;
}

/* Make map fully responsive */
.footer-section.map {
    width: 100%;
    max-width: 100%;
}

.footer-section.map iframe {
    width: 100%;
    height: 200px;
    /* you can reduce height for smaller screens if needed */
    min-width: 250px;
    /* optional: prevents it from shrinking too much */
    max-width: 100%;
    border-radius: 12px;
    display: block;
}


/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0 10px 0;
    border-top: 1px solid rgba(233, 30, 98, 0.514);
    font-size: 12px;
    color: var(--pink-secondary);
}

.footer-bottom a.developer-link {
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-bottom a.developer-link img {
    height: 20px;
    width: 20px;
}

.footer-bottom p,
.footer-bottom a {
    color: var(--pink-secondary);
}

/* Responsive */
@media (max-width: 768px) {
    .footer-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 6px;
    }

    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 320px) {
    .subscribe-form {
        flex-direction: column;
    }
}