:root {
    --xprimary: #109338;
    --primary-dark: #0e7a2d;
    --primary: #2aa348;
}



body {

font-size: 17px;
    
}

/* TOPBAR */
.topbar {
    background: var(--primary) !important;
    font-size: 0.9rem;
}
.topbar .social-icons a {
    color: white !important;
    font-size: 1.1rem;
    transition: opacity 0.3s;
}
.topbar .social-icons a:hover {
    opacity: 0.7;
}

/* Home Banner */
.home-banner {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.banner-content {
    z-index: 2;
    max-width: 800px;
    padding: 1rem;
}
.banner-content h1 {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.banner-content .btn {
    background: white;
    border: 2px solid white;
    color: var(--primary);
    font-weight: bold;
}
.banner-content .btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Adopted Dogs Shortcode */
.adopted-dogs-section .card {
    transition: transform 0.2s;
    border: none;
}
.adopted-dogs-section .card:hover {
    transform: translateY(-5px);
}
.adopted-dogs-section .card-title {
    color: var(--primary);
    font-weight: bold;
}
.adopted-dogs-section .card-text {
    color: var(--primary-dark);
}
.adopted-dogs-section .form-control,
.adopted-dogs-section .form-select {
    border-color: var(--primary);
}
.adopted-dogs-section .form-control:focus,
.adopted-dogs-section .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(16,147,56,0.25);
}

/* Full-Width Homepage */
.hero-fullwidth {
    overflow: hidden;
}
.fullwidth-content {
    width: 100%;
    padding: 0;
}
.max-width-1200 {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 1200px) {
    .max-width-1200 {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

/* Mobile Menu */
@media (max-width: 991.98px) {
    #mobileMenu,
    #mobileMenu .offcanvas-body {
        background: var(--primary);
        color: white;
    }
    #mobileMenu .nav-link {
        color: white !important;
        padding: 0.75rem 1rem;
        font-size: 1.1rem;
    }
    #mobileMenu .nav-link:hover {
        background: rgba(255,255,255,0.15);
        border-radius: 0.375rem;
    }
    #mobileMenu .offcanvas-header {
        background: var(--primary-dark);
    }
}

/* Navbar */
.navbar {
    box-shadow: 0 2px 5px rgba(0,0,0,.1);
}
.text-success { color: var(--primary) !important; }

/* Footer Social */
footer .social-icons a {
    font-size: 1.4rem;
    transition: color .3s;
}
footer .social-icons a:hover {
    color: var(--primary-dark) !important;
}


div.wpforms-container-full .wpforms-form button[type=submit] {


background-color: #2aa348;
    border: 1px solid #2aa348;
    color: white;
    width: 100%;

}


div.wpforms-container-full .wpforms-form button[type=submit]:hover {


background-color: #ffffff;
    border: 2px solid #109338;
    cursor: pointer;
    color: #109338;

}


.btn-donate {

background: #2aa348;
border-color: #2aa348;

}