/* ==========================================================================
   footer.css — Raviva Dental
   Site-wide footer (includes/footer.php).
   ========================================================================== */

.footer {
    background: #E8DFD8;
    padding: 45px 40px 20px;
}

.footer-inner {
    max-width: 1180px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 45px;
    border-bottom: 1px dotted #aaa;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-icon {
    color: var(--brown-mid);
    font-size: 46px;
}

.footer-brand h2 {
    font-size: 44px;
    font-weight: 400;
    letter-spacing: 3px;
}

.footer-brand p {
    font-size: 22px;
    letter-spacing: 7px;
    color: var(--brown-mid);
}

/* Custom footer logo image (set SITE_LOGO in includes/config.php) */
/*.footer-logo{
   /background-color: black;
}*/
.footer-logo-img {
    height: 56px;
    width: auto;
    display: block;
}
.footer-rv {
    gap: 10px;
    width:fit-content;
    align-items: center; 
    display: flex;
    background-color: rgba(233, 208, 162, 0.767);
    border-radius:50%; 
    padding:12px;
    margin-left:15%;
}
.footer-rv-logo{
    height: 85px;
    width: auto;
    display: block;

}
.footer-info,
.footer-hours {
    font-size: 16px;
    line-height: 1.7;
}

.footer-info strong,
.footer-hours strong {
    font-size: 18px;
}

.footer-info a,
.footer-hours a {
    color: inherit;
    text-decoration: none;
}

.footer-info a:hover { color: var(--brown-deep); }

.footer-links {
    font-size: 15px;
    line-height: 2.1;
}

.footer-links a {
    color: var(--dark);
    text-decoration: none;
    opacity: 0.75;
}

.footer-links a:hover { opacity: 1; color: var(--brown-deep); }

.socials {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.socials a {
    width: 36px;
    height: 36px;
    background: var(--brown);
    color: var(--mist);
    display: grid;
    place-items: center;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
}

.copyright {
    text-align: center;
    padding-top: 18px;
    font-size: 14px;
    color: #666;
}

.copyright a {
    color: inherit;
    text-decoration: underline;
}

@media (max-width: 900px) {
    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand,
    .socials {
        justify-content: center;
    }
    .footer-rv{
    margin-left: auto;
    margin-right: auto;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 35px 20px 20px;
    }
    .footer-rv{
    margin-left: auto;
    margin-right: auto;
    }
}

/* ---------- Social "coming soon" toast (added v10.10.1) ----------
   One shared, initially-hidden element (see includes/footer.php),
   shown/hidden by the click handler in assets/js/main.js. Fixed to the
   bottom of the viewport so it works identically regardless of which
   social icon was clicked or how far down the page that is. */
.social-soon-toast {
    position: fixed;
    left: 50%;
    bottom: 28px;
    transform: translate(-50%, 12px);
    z-index: var(--z-mobile-toggle, 60);
    max-width: calc(100vw - 32px);
    background: var(--dark);
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    padding: 14px 22px;
    border-radius: 999px;
    box-shadow: var(--shadow-soft);
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.social-soon-toast.show {
    opacity: 1;
    transform: translate(-50%, 0);
}

@media (max-width: 480px) {
    .social-soon-toast {
        bottom: 18px;
        padding: 12px 18px;
        font-size: 13px;
        border-radius: 16px;
    }
}
