/* =========================================================
   BHOOKH WEBSITE - GLOBAL STYLE
   Structure inspired by the agreed Shuddhi-style sitemap
   ========================================================= */

/* ---------- RESET ---------- */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Noto Sans Devanagari", "Nirmala UI", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #222222;
    background: #ffffff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

button,
input,
textarea,
select {
    font-family: inherit;
}


/* ---------- CONTAINER ---------- */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}


/* ---------- HEADER ---------- */

.site-header {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #eeeeee;
    position: relative;
    z-index: 1000;
}

.header-top {
    width: 100%;
    background: #f7f7f7;
}

.header-main {
    width: 100%;
    background: #ffffff;
}

.header-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.site-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.site-logo img {
    max-height: 58px;
    width: auto;
}

.site-logo-text {
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}


/* ---------- MAIN NAVIGATION ---------- */

.main-navigation {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.main-navigation > ul {
    display: flex;
    align-items: center;
    gap: 4px;
}

.main-navigation > ul > li {
    position: relative;
}

.main-navigation > ul > li > a {
    display: block;
    padding: 12px 13px;
    font-size: 15px;
    font-weight: 600;
    color: #222222;
    transition: all 0.25s ease;
}

.main-navigation > ul > li > a:hover,
.main-navigation > ul > li.current-menu-item > a {
    color: #c62828;
}


/* ---------- DROPDOWN ---------- */

.main-navigation li ul {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 230px;
    background: #ffffff;
    border: 1px solid #eeeeee;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.10);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s ease;
}

.main-navigation li:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-navigation li ul li {
    width: 100%;
}

.main-navigation li ul li a {
    display: block;
    padding: 10px 15px;
    color: #333333;
    font-size: 14px;
    border-bottom: 1px solid #f1f1f1;
}

.main-navigation li ul li:last-child a {
    border-bottom: none;
}

.main-navigation li ul li a:hover {
    background: #f7f7f7;
    color: #c62828;
}


/* ---------- DONATE BUTTON ---------- */

.btn-donate,
.donate-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 22px;
    border: none;
    border-radius: 4px;
    background: #c62828;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-donate:hover,
.donate-button:hover {
    background: #a91f1f;
    color: #ffffff;
    transform: translateY(-1px);
}


/* ---------- HERO ---------- */

.hero-section {
    position: relative;
    width: 100%;
    min-height: 520px;
    display: flex;
    align-items: center;
    background: #f5f5f5;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 80px 0;
}

.hero-title {
    margin-bottom: 20px;
    font-size: 48px;
    line-height: 1.15;
    font-weight: 800;
}

.hero-description {
    max-width: 650px;
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 1.7;
}


/* ---------- SECTION ---------- */

.section {
    width: 100%;
    padding: 75px 0;
}

.section-title {
    margin-bottom: 15px;
    font-size: 34px;
    line-height: 1.25;
    font-weight: 800;
    text-align: center;
}

.section-description {
    max-width: 760px;
    margin: 0 auto 40px;
    text-align: center;
    color: #666666;
}


/* ---------- CAMPAIGN GRID ---------- */

.campaign-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.campaign-card {
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.25s ease;
}

.campaign-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.10);
}

.campaign-card-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.campaign-card-content {
    padding: 22px;
}

.campaign-card-title {
    margin-bottom: 10px;
    font-size: 21px;
    line-height: 1.3;
    font-weight: 700;
}

.campaign-card-text {
    margin-bottom: 18px;
    color: #666666;
}


/* ---------- BUTTONS ---------- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 20px;
    border: 1px solid #c62828;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.25s ease;
}

.btn-primary {
    background: #c62828;
    color: #ffffff;
}

.btn-primary:hover {
    background: #a91f1f;
    color: #ffffff;
}

.btn-outline {
    background: #ffffff;
    color: #c62828;
}

.btn-outline:hover {
    background: #c62828;
    color: #ffffff;
}


/* ---------- CTA ---------- */

.cta-section {
    padding: 65px 0;
    background: #f5f5f5;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cta-title {
    margin-bottom: 8px;
    font-size: 30px;
    font-weight: 800;
}

.cta-text {
    color: #666666;
}


/* ---------- FORMS ---------- */

.form-group {
    margin-bottom: 18px;
}

.form-label {
    display: block;
    margin-bottom: 7px;
    font-weight: 600;
}

.form-control {
    width: 100%;
    min-height: 46px;
    padding: 10px 13px;
    border: 1px solid #d8d8d8;
    border-radius: 4px;
    background: #ffffff;
    font-size: 15px;
    outline: none;
}

textarea.form-control {
    min-height: 130px;
    resize: vertical;
}

.form-control:focus {
    border-color: #999999;
}


/* ---------- FOOTER ---------- */

.site-footer {
    width: 100%;
    background: #222222;
    color: #ffffff;
}

.footer-main {
    padding: 60px 0 35px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 35px;
}

.footer-title {
    margin-bottom: 18px;
    font-size: 18px;
    font-weight: 700;
}

.footer-text {
    color: #cccccc;
    line-height: 1.7;
}

.footer-links li {
    margin-bottom: 9px;
}

.footer-links a {
    color: #cccccc;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    padding: 18px 0;
    border-top: 1px solid #3a3a3a;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-copy {
    color: #bbbbbb;
    font-size: 14px;
}


/* ---------- MOBILE MENU ---------- */

.mobile-menu-button {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid #dddddd;
    background: #ffffff;
    cursor: pointer;
    border-radius: 4px;
}


/* ---------- RESPONSIVE ---------- */

@media (max-width: 992px) {

    .header-inner {
        min-height: 70px;
    }

    .main-navigation > ul {
        gap: 0;
    }

    .main-navigation > ul > li > a {
        padding: 10px 8px;
        font-size: 14px;
    }

    .campaign-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-title {
        font-size: 40px;
    }
}


@media (max-width: 768px) {

    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .header-inner {
        min-height: 65px;
    }

    .main-navigation {
        display: none;
    }

    .mobile-menu-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .hero-section {
        min-height: 420px;
    }

    .hero-content {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 34px;
    }

    .hero-description {
        font-size: 16px;
    }

    .section {
        padding: 55px 0;
    }

    .section-title {
        font-size: 29px;
    }

    .campaign-grid {
        grid-template-columns: 1fr;
    }

    .cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}


@media (max-width: 480px) {

    .hero-title {
        font-size: 29px;
    }

    .section-title {
        font-size: 26px;
    }

    .btn,
    .btn-donate,
    .donate-button {
        width: 100%;
    }
}