/* ================= SOULMATE FOOTER ================= */

.soulmate-footer {
    background-color: #6b2434;
    padding: 40px 20px; /* ⬅ reduced top & bottom */
    text-align: center;
    color: #fff4c2;
    font-family: "Segoe UI", Tahoma, sans-serif;
}


.footer-container {
    max-width: 1200px;
    margin: auto;
}

/* Logo */
.footer-logo img { 
    height: 125px;          /* ⬅ bigger logo */
    margin: -20px auto 20px;/* ⬅ centers horizontally */
    display: block;         /* ⬅ required for auto margin */
}


/* Navigation */
.footer-nav {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.footer-nav a {
    color: #fff4c2;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.footer-nav a:hover {
    opacity: 0.75;
}

/* Text */
.footer-copy p {
    margin: 6px 0;
    font-size: 15px;
    line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .footer-nav {
        gap: 22px;
    }

    .footer-logo img {
        height: 80px; /* ⬅ mobile logo size */
    }
}

/* Developer link */
.dev-link {
    color: #fff4c2;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.dev-link:hover {
    opacity: 0.75;
    text-decoration: underline;
}