/* Footer Custom Styles */

/* Footer shape styling */
.shape-1 {
    height: 150px;
    overflow: hidden;
}

.shape-1 svg {
    height: 100%;
    width: 100%;
}

.shape-1 path {
    stroke: none;
    fill: #fff;
}

/* Form input styling */
#mc-email {
    height: 60px;
    border-radius: 0.375rem;
    border: 1px solid #dee2e6;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

#mc-email:focus {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

/* Footer logo styling */
.footer-logo img {
    height: 36px;
    width: 36px;
    transition: transform 0.3s ease;
}

.footer-logo img:hover {
    transform: scale(1.05);
}

/* Footer links styling */
.footer-logo {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-logo:hover {
    color: #28a745;
}

/* Footer navigation links */
.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #28a745;
}

/* Footer headings */
h5 {
    color: #fff;
    font-weight: 600;
}

/* Footer copyright styling - text-green is defined in theme.min.css */

/* Footer button styling */
.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background-color: #28a745;
    border-color: #28a745;
    color: #fff;
}

/* Footer form styling */
.subscribe-form {
    background-color: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.2);
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .shape-1 {
        height: 100px;
    }
    
    .footer-logo img {
        height: 32px;
        width: 32px;
    }
}
