/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.7;
    background: #f4f5ef;
    color: #1f2a21;
}

/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid #d8ddd4;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo img {
    height: 62px;
    width: auto;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

nav a {
    text-decoration: none;
    color: #1f2a21;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

nav a:hover {
    color: #3d6b52;
}

/* HERO */
.hero {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 80px 20px;
    background:
        linear-gradient(rgba(20,40,30,0.55), rgba(20,40,30,0.65)),
        url("images/hero.png") center/cover no-repeat;
    color: white;
}

.hero h1 {
    font-size: 3.2rem;
    line-height: 1.1;
    max-width: 900px;
    margin-bottom: 16px;
}

.hero > p {
    font-size: 1.25rem;
    max-width: 760px;
    margin-bottom: 28px;
    font-weight: 500;
}

.hero-text {
    max-width: 860px;
    background: rgba(255, 255, 255, 0.10);
    padding: 24px;
    border-radius: 14px;
    backdrop-filter: blur(2px);
}

.hero-text p + p {
    margin-top: 12px;
}

/* MAIN SECTIONS */
section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 72px 24px;
}

section h2 {
    font-size: 2rem;
    margin-bottom: 18px;
    color: #234a36;
}

section h3 {
    font-size: 1.25rem;
    margin-top: 24px;
    margin-bottom: 10px;
    color: #315b45;
}

section p {
    max-width: 850px;
    margin-bottom: 14px;
}

/* ALTERNATING SECTION BACKGROUNDS */
.van,
#harita,
#dokumanlar,
#uyeler {
    background: #e9ede4;
    border-radius: 18px;
    margin-top: 28px;
    margin-bottom: 28px;
    padding: 56px 32px;
}

/* AMACIMIZ */
#amacimiz {
    padding-top: 84px;
    padding-bottom: 84px;
}

/* PROJELER */
#projeler ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
    padding: 0;
    margin-top: 24px;
}

#projeler li {
    background: #ffffff;
    border: 1px solid #d9dfd6;
    border-radius: 14px;
    padding: 22px 18px;
    font-weight: 600;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

/* HARITA BUTTON */
button {
    display: inline-block;
    margin-top: 14px;
    background: #315b45;
    color: white;
    border: none;
    border-radius: 999px;
    padding: 14px 24px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

button:hover {
    background: #254734;
    transform: translateY(-1px);
}

/* DOKUMANLAR BLOCKS */
#dokumanlar p,
#iletisim p,
#uyeler p {
    font-size: 1rem;
}

/* FOOTER */
footer {
    width: 100%;
    background: #1f2a21;
    color: #f4f5ef;
    padding: 30px 20px;
    margin-top: 60px;
    text-align: center;
}

footer p {
    margin: 0;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    header {
        flex-direction: column;
        gap: 16px;
        padding: 16px 20px;
    }

    nav ul {
        justify-content: center;
        gap: 16px;
    }

    .hero {
        min-height: auto;
        padding: 100px 20px 70px;
    }

    .hero h1 {
        font-size: 2.3rem;
    }

    .hero > p {
        font-size: 1.1rem;
    }

    section {
        padding: 56px 18px;
    }

    .van,
    #harita,
    #dokumanlar,
    #uyeler {
        padding: 36px 20px;
    }
}
/* VAN SECTION LAYOUT */
.van-content {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.van-text {
    flex: 1;
}

.van-image {
    flex: 1;
}

.van-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 12px;
}


/* GALLERY */
.gallery {
    max-width: 1100px;
    margin: 0 auto 60px auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 16px;
    background: #e9ede4;
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.gallery-item p {
    padding: 12px;
    font-size: 0.9rem;
}
/* WIDE IMAGE SECTION */
.wide-image {
    height: 60vh;
    background: 
        linear-gradient(rgba(20,40,30,0.5), rgba(20,40,30,0.6)),
        url("images/van 2.png") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.overlay {
    max-width: 700px;
    padding: 20px;
}

.overlay h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.overlay p {
    font-size: 1.1rem;
}
#iletisim a {
    color: #315b45;
    text-decoration: none;
    font-weight: 600;
}

#iletisim a:hover {
    text-decoration: underline;
}
.media-item {
    background: #ffffff;
    padding: 16px;
    border-radius: 12px;
    margin-top: 15px;
    border: 1px solid #d9dfd6;
}

.media-title {
    font-weight: 600;
    margin-bottom: 5px;
}

.media-meta {
    font-size: 0.9rem;
    color: #6b7c70;
    margin-bottom: 8px;
}

.media-item a {
    color: #315b45;
    text-decoration: none;
    font-weight: 500;
}

.media-item a:hover {
    text-decoration: underline;
}
#projeler li a {
    text-decoration: none;
    color: #1f2a21;
    display: block;
}

#projeler li a:hover {
    color: #315b45;
}
/* PROJECT ITEM (events under projeler) */

.project-item {
    background: #ffffff;
    padding: 16px;
    border-radius: 12px;
    margin-top: 20px;
    border: 1px solid #d9dfd6;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.project-title {
    font-weight: 600;
    margin-bottom: 5px;
}

.project-meta {
    font-size: 0.85rem;
    color: #6b7c70;
    margin-bottom: 8px;
}

.project-desc {
    font-size: 0.95rem;
    margin: 6px 0 10px 0;
}

.project-item a {
    color: #315b45;
    text-decoration: none;
    font-weight: 500;
}

.project-item a:hover {
    text-decoration: underline;
}
.project-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 10px;
    margin: 10px 0;
}