/* GENEL STİL */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    font-family: 'Arial', sans-serif;
    background: #0D1933;
    color: white;
}

/* Sayfa içeriğini düzenleme */
main {
    flex: 1;
}

/* NAVBAR */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #1A3366;
    padding: 15px 20px;
    position: relative;
}

/* NAVBAR LOGO */
.logo {
    font-size: 30px;
    font-weight: bold;
    color: white;
}

/* NAVBAR LİNKLER */
.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.nav-links a:hover, .nav-links .active {
    color: #ffffff;
}

/* HERO BÖLÜMÜ */
.hero {
    background: url('assets/hero-image.jpg') no-repeat center center/cover;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
}

.hero-text {
    background: rgba(26, 51, 102, 0.8);
    padding: 20px;
    border-radius: 10px;
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 20px;
}

/* BUTON */
.btn {
    display: inline-block;
    padding: 12px 25px;
    background: #FFD700;
    color: #1A3366;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
    font-weight: bold;
}

.btn:hover {
    background: #FFC107;
}

/* SAYFA KAPSAMINDAKİ ORTAK KAPSAYICI (CONTAINER) */
.container {
    background: #1A3366;
    color: white;
    padding: 40px;
    max-width: 800px;
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 15px;
    background: #1A3366;
    color: white;
    margin-top: auto;
    width: 100%;
    position: relative;
}

/* NAVBAR MOBİL TASARIM */
.nav-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: white;
    background: none;
    border: none;
    padding: 10px;
    position: absolute;
    right: 20px;
    top: 15px;
    z-index: 101;
}

/* MOBİL UYUMLULUK & HAMBURGER MENÜ */
@media (max-width: 768px) {
    .nav-toggle {
        display: block; /* Mobilde buton görünecek */
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #1A3366;
        position: absolute;
        top: 60px;
        left: 0;
        text-align: center;
        padding: 10px 0;
        z-index: 100;
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links li {
        margin: 10px 0;
    }
}
