body {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    color: #1e293b;
    /* text-slate-800 */
    -webkit-font-smoothing: antialiased;
    /* antialiased */
    -moz-osx-font-smoothing: grayscale;
    /* antialiased */
    overflow-x: hidden;
}

body.page-main {
    background-color: #ffffff;


}





body:not(.page-main)::before {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    content: ' ';
    width: 100%;
    height: 100%;
    background-image: url('/images/world_map_base.jpg');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    opacity: .35;
    z-index: -1;
}



#header-section {
    min-height: 160px;
    width: 100vw;
    position: relative;
}



#header-logo-nida {
    height: 40px;
}

#header-logo-text {
    height: 35px;
}

/* ======================================================== */
/* GENEL SAYFA KONTEYNERI (Container)                       */
/* Tailwind: relative z-10 max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 w-full */
/* ======================================================== */
.page-container,
.site-container {
    position: relative;
    z-index: 10;
    max-width: 80rem;
    /* max-w-7xl (1280px) */
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    /* px-4 */
    padding-right: 1rem;
    width: 100%;
    /* w-full */
}

@media (min-width: 640px) {

    .page-container,
    .site-container {
        padding-left: 1.5rem;
        /* sm:px-6 */
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {

    .page-container,
    .site-container {
        padding-left: 2rem;
        /* lg:px-8 */
        padding-right: 2rem;
    }
}

/* ======================================================== */
/* HEADER & MENÜ STILLERI                                   */
/* ======================================================== */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    background-color: transparent;
    transition: all 0.3s ease;
}

.header-container {
    max-width: 80rem;
    /* max-w-7xl */
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .header-container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .header-container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 6rem;
    /* h-24 */
}

/* Logo Alanı */
#header-logo-container {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.header-logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

/* Masaüstü Navigasyon */
.header-nav {
    display: none;
    align-items: center;
    gap: 2.5rem;
    /* space-x-10 */
}

@media (min-width: 768px) {
    .header-nav {
        display: flex;
    }
}

/* Header Menü Linkleri (Hakkımızda, İletişim vb.) */
.header-nav-link {
    position: relative;
    display: inline-block;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    /* text-slate-800 */
    text-decoration: none;
    transition: color 0.2s ease;
}

.header-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #0e6955;
    transition: width 0.25s ease;
}

.header-nav-link:hover {
    color: #0e6955;
}

.header-nav-link:hover::after {
    width: 100%;
}

/* Dropdown Konteyner */
.header-dropdown {
    position: relative;
}

/* Dropdown Butonu */
.header-dropdown-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: color 0.2s ease;
    outline: none;
}

.header-dropdown-btn i {
    font-size: 0.75rem;
    color: #94a3b8;
    transition: transform 0.2s ease, color 0.2s ease;
}

.header-dropdown:hover .header-dropdown-btn {
    color: #0e6955;
}

.header-dropdown:hover .header-dropdown-btn i {
    color: #0e6955;
    transform: rotate(180deg);
}

/* Dropdown Açılır Menü Konteyner */
.header-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    padding-top: 0.75rem;
    width: 20rem;
    /* w-80 */
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 50;
}

.header-dropdown:hover .header-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.header-dropdown-card {
    background-color: #ffffff;
    border-radius: 1rem;
    /* rounded-2xl */
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    border: 1px solid #f1f5f9;
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

/* Header Menü Öğeleri (Açılır menü linkleri) */
.header-menu-item {
    display: flex;
    align-items: center;
    padding: 0.625rem;
    /* p-2.5 */
    border-radius: 0.75rem;
    /* rounded-xl */
    font-size: 0.875rem;
    /* text-sm */
    font-weight: 700;
    /* font-bold */
    color: #1e293b;
    /* text-slate-800 */
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.header-menu-item .header-menu-item-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: inherit;
    transition: color 0.2s ease;
}

.header-menu-item:hover {
    background-color: #f8fafc;
    /* hover:bg-slate-50 */
    color: #0e6955;
    /* group-hover/item:text-[#0e6955] */
}

/* Header Sağ Eylem Alanı (Bağış Butonu & Mobil Buton) */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-btn-donate {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.75rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.025em;
    color: #ffffff;
    background-color: #0e6955;
    text-decoration: none;
    box-shadow: 0 4px 6px -1px rgba(14, 105, 85, 0.2), 0 2px 4px -2px rgba(14, 105, 85, 0.2);
    transition: all 0.2s ease;
}

.header-btn-donate:hover {
    background-color: #095041;
    box-shadow: 0 10px 15px -3px rgba(14, 105, 85, 0.3), 0 4px 6px -4px rgba(14, 105, 85, 0.3);
}

.header-mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    border-radius: 0.5rem;
    color: #334155;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 1.25rem;
    transition: all 0.2s ease;
    outline: none;
}

.header-mobile-toggle:hover {
    color: #0e6955;
    background-color: rgba(255, 255, 255, 0.8);
}

@media (min-width: 768px) {
    .header-mobile-toggle {
        display: none;
    }
}

/* Mobil Menü */
.header-mobile-menu {
    border-top: 1px solid #f1f5f9;
    background-color: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    padding: 0.75rem 1rem 1.5rem 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.header-mobile-menu.hidden {
    display: none;
}

@media (min-width: 768px) {
    .header-mobile-menu {
        display: none !important;
    }
}

.mobile-nav-link {
    display: block;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #334155;
    text-decoration: none;
    transition: all 0.2s ease;
}

.mobile-nav-link:hover {
    background-color: #ecfdf5;
    color: #0e6955;
}

.mobile-nav-group {
    padding: 0.5rem 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mobile-nav-group-title {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.mobile-nav-sublink {
    display: block;
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #475569;
    text-decoration: none;
    transition: color 0.2s ease;
}

.mobile-nav-sublink:hover {
    color: #0e6955;
}

.mobile-nav-action {
    padding-top: 0.5rem;
}

.mobile-btn-donate {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    background-color: #0e6955;
    text-decoration: none;
    box-shadow: 0 4px 6px -1px rgba(14, 105, 85, 0.2);
    transition: background-color 0.2s ease;
}

.mobile-btn-donate:hover {
    background-color: #095041;
}



/* Subtle animated world pulse */
@keyframes pulse-ring {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.15);
        opacity: 0.4;
    }

    100% {
        transform: scale(0.95);
        opacity: 0.8;
    }
}



.world-map-bg {
    background-image: radial-gradient(#0e6955 0.75px, transparent 0.75px);
    background-size: 24px 24px;
    opacity: 0.12;
}






#content-section {
    padding: 40px 0;
}






.title-page {
    font-size: 22px;
    letter-spacing: 1.5px;
    color: #027f84;
    font-weight: 700;
    margin-bottom: 25px;
}

/* ======================================================== */
/* HAKKIMIZDA ÇAPRAZ GÖRSEL KOMPOZİSYONU (Statik Tasarım)   */
/* ======================================================== */
.about-image-composition {
    position: relative;
    padding-top: 1rem;
    padding-bottom: 2rem;
    pointer-events: none; /* Sayfa içeriğinde etkileşimli obje yerine görsel efekt olarak durması için */
    user-select: none;
}

.about-img-card {
    border-radius: 1.5rem;
    overflow: hidden;
    border: 4px solid #ffffff;
    box-shadow: 0 20px 30px -10px rgba(15, 23, 42, 0.18);
    background-color: #ffffff;
}

.about-img-card img {
    width: 100%;
    height: 15rem; /* 240px */
    object-fit: cover;
    display: block;
}

.about-img-card-1 {
    transform: rotate(-3deg);
    width: 84%;
    position: relative;
    z-index: 10;
}

.about-img-card-2 {
    transform: rotate(3.5deg);
    width: 84%;
    margin-left: auto;
    margin-top: -4rem;
    position: relative;
    z-index: 20;
    box-shadow: 0 25px 35px -10px rgba(14, 105, 85, 0.22);
}

.about-quote-box {
    position: relative;
    z-index: 30;
    margin-top: -2rem;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    padding: 0.875rem 1.25rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08);
    text-align: center;
    max-width: 20rem;
    margin-left: auto;
    margin-right: auto;
}









.kampanya-baslik {
    font-size: 20px;
    padding-top: 3px;
}

.kampanya-kisa {
    font-size: 14px;
    color: #fff;
}