/* style.css - Custom stylesheet for Anima Pro Anima */
/* Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

body {
    background: #fff;
    color: #333;
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
}

/* Grid System */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
}

.container-fluid {
    width: 100%;
    padding: 0 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

[class*="col-"] {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

.col-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
}

.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.col-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

@media (min-width: 768px) {
    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (min-width: 992px) {
    .col-lg-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-lg-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .col-lg-5 {
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

    .col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-lg-7 {
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }

    .col-lg-8 {
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }

    .col-lg-10 {
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }

    .col-lg-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .align-items-center {
        align-items: center;
    }
}

/* Helpers */
.justify-content-center {
    justify-content: center;
}

.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-3 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mt-5 {
    margin-top: 3rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.mb-lg-0 {
    margin-bottom: 0;
}

.ml-2 {
    margin-left: 0.5rem;
}

.pl-lg-4 {
    padding-left: 1.5rem;
}

/* Header & Nav */
.header_section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.5);
}

.logo img {
    max-width: 80px;
    max-height: 80px;
    width: 100%;
    object-fit: contain;
    background: white;
    padding: 5px;
    border-radius: 8px;
}

.main_menu {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.main_menu li {
    margin: 0 25px;
}

.main_menu li a {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main_menu li a:hover {
    color: #df5311;
}

.mobile_menu_btn {
    display: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    text-align: right;
}

@media (max-width: 991px) {
    .main_menu {
        display: none;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.9);
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 20px;
    }

    .mobile_menu_btn {
        display: block;
    }

    .main_menu li {
        margin: 15px 0;
        text-align: center;
    }
}

/* Buttons */
.btn_primary {
    display: inline-block;
    background: #df5311;
    color: #fff;
    padding: 14px 35px;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn_primary:hover {
    background: #bf430c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(223, 83, 17, 0.4);
    color: #fff;
}

.btn_white {
    display: inline-block;
    background: #fff;
    color: #df5311;
    padding: 14px 35px;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn_white:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.4);
}

/* Form Elements (For Formular 230 & Contact) */
.from-contol,
.form-control {
    width: 100%;
    padding: 12px 18px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    color: #333;
    margin-bottom: 20px;
    transition: border-color 0.3s;
    background: #fff;
}

.from-contol:focus,
.form-control:focus {
    outline: none;
    border-color: #df5311;
}

label.checkbox-label {
    font-weight: 600;
    margin-bottom: 10px;
    display: inline-block;
    color: #333;
}

.checkbox-container {
    margin-bottom: 25px;
}

/* Page Titles & Setup */
.page_title_section {
    padding: 180px 0 100px;
    text-align: center;
    color: #fff;
    position: relative;
}

.page_title_section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.page_title_section .container {
    position: relative;
    z-index: 2;
}

.page_title_section h2 {
    font-size: 44px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #fff;
}

.page_title_section ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.page_title_section ul li a {
    color: #df5311;
    font-weight: 600;
}

.page_title_section ul li {
    color: #ccc;
}

.section_space {
    padding: 80px 0;
}

.causes_single_page .title h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #333;
    font-weight: 700;
    border-bottom: 2px solid #df5311;
    padding-bottom: 10px;
    display: inline-block;
}

.bottom_text {
    margin-top: 40px;
    background: #f9f9f9;
    padding: 25px;
    border-left: 4px solid #df5311;
    font-size: 16px;
    color: #555;
    border-radius: 5px;
}

/* Specific fixes for 3-boxes section so text is visible */
.feature_box h3 {
    color: #333;
}

.feature_box p {
    color: #555;
}

/* Footer */
.footer_section_s2 {
    background-image: linear-gradient(rgba(26, 26, 26, 0.85), rgba(26, 26, 26, 0.9)), url('hero-hands.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 70px 0 20px;
    color: #aaa;
}

.footer_section_s2 h2 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 25px;
    font-weight: 600;
}

.footer_logo img {
    max-width: 80px;
    max-height: 80px;
    width: 100%;
    object-fit: contain;
    background: white;
    padding: 5px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.widget_link ul {
    list-style: none;
}

.widget_link ul li {
    margin-bottom: 12px;
}

.widget_link ul li a {
    color: #aaa;
}

.widget_link ul li a:hover {
    color: #df5311;
    padding-left: 5px;
}

.widget_contact div {
    margin-bottom: 15px;
    font-size: 15px;
}

.social_widget {
    list-style: none;
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social_widget li a {
    display: flex;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #333;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.social_widget li a:hover {
    background: #df5311;
}

.footer_bottom {
    border-top: 1px solid #333;
    padding-top: 25px;
    margin-top: 40px;
    text-align: center;
    font-size: 14px;
}

.footer_bottom p {
    margin: 5px 0;
}

/* Signature plugin essential */
.kbw-signature {
    border: 2px dashed #ccc;
    -ms-touch-action: none;
    touch-action: none;
    border-radius: 8px;
    background: #fdfdfd;
    cursor: crosshair;
}
