body{
    font-family:'Poppins',sans-serif;
    margin:0;
    background:#f5f5f5;
}

/* ----------------------------- */
/* HEADER / NAVBAR */
/* ----------------------------- */

header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 30px;
    background:#0B1F3A;
    color:white;
}

.logo img{
    height:50px;
}

nav ul{
    display:flex;
    list-style:none;
    gap:20px;
}

nav a{
    color:white;
    text-decoration:none;
    font-weight:500;
}

.right-menu{
    display:flex;
    align-items:center;
    gap:20px;
}

.language button{
    background:#d4af37;
    border:none;
    padding:5px 10px;
    cursor:pointer;
}

.hamburger{
    display:none;
    font-size:24px;
    cursor:pointer;
}

/* ----------------------------- */
/* HERO / ANA SAYFA BÖLÜMÜ */
/* ----------------------------- */

.hero{
    height:60vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    background:#0B1F3A;
    color:white;
    text-align:center;
}

.hero h1{
    font-size:40px;
}

.stats{
    display:flex;
    justify-content:center;
    gap:60px;
    padding:60px;
    background:white;
}

.stat{
    text-align:center;
}

.stat h2{
    color:#d4af37;
    font-size:40px;
}

/* ----------------------------- */
/* SAYFA BÖLÜMLERİ (GENEL) */
/* ----------------------------- */

.page{
    padding:60px;
    max-width:900px;
    margin:auto;
}

/* ----------------------------- */
/* DUYURULAR */
/* ----------------------------- */

.announcement{
    background:white;
    padding:20px;
    margin-bottom:20px;
    border-left:5px solid #d4af37;
}

/* ----------------------------- */
/* EKİBİMİZ SAYFASI */
/* ----------------------------- */

.team{
    display:flex;
    gap:30px;
    flex-wrap:wrap;
}

.member{
    text-align:center;
}

.member img{
    width:150px;
    border-radius:10px;
}

/* ----------------------------- */
/* İLETİŞİM SAYFASI */
/* ----------------------------- */

.contact-form{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.contact-form input,
.contact-form textarea{
    padding:10px;
}

.contact-form button{
    background:#0B1F3A;
    color:white;
    border:none;
    padding:10px;
    cursor:pointer;
}

/* ----------------------------- */
/* ETKİNLİKLER SAYFASI */
/* ----------------------------- */

.event{
    background:white;
    padding:20px;
    margin-bottom:20px;
    border-left:5px solid #0B1F3A;
}

/* ----------------------------- */
/* FOOTER */
/* ----------------------------- */

footer{
    background:#0B1F3A;
    color:white;
    text-align:center;
    padding:25px;
}

/* ----------------------------- */
/* MOBİL TASARIM */
/* ----------------------------- */

@media (max-width:768px){

    nav ul{
        display:none;
        flex-direction:column;
        background:#0B1F3A;
        position:absolute;
        top:70px;
        left:0;
        width:100%;
    }

    nav ul.active{
        display:flex;
    }

    .hamburger{
        display:block;
    }

    .stats{
        flex-direction:column;
        align-items:center;
    }

    .team{
        flex-direction:column;
        align-items:center;
    }
}