/* Genel Stil */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cormorant Garamond', serif;
}

/* Video Arka Plan */
.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 600px;
    object-fit: cover;
    z-index: -1;
}

/* Menü Barı */
.menu {
    position: sticky;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.3);
    padding: 15px 20px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
}

.hamburger {
    display: none;
    font-size: 30px;
    cursor: pointer;
    position: absolute;
    left: 20px;
}

.menu ul {
    display: flex;
    list-style: none;
    gap: 10px;
}

.menu ul li {
    padding: 10px 20px;
}

.menu ul li a {
    color: black;
    text-decoration: none;
    font-weight: bold;
    font-size: 24px;
}

.menu ul li:hover {
    border-bottom: 2px solid black;
    padding-bottom: 8px;
}

/* Ana İçerik */
main {
    max-width: 850px;
    margin: 0 auto;
    padding: 650px 20px 80px;
    text-align: center;
    color: #000;
}

.slogan {
    font-size: 2rem;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 35px;
    color: #8a0000;
}

.intro p {
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 1.9;
    margin-bottom: 24px;
}

/* baskan Düzen */
.baskan {
    display: flex;
    flex-direction: column; /* GÖRSEL YUKARIDA, YAZI ALTTA */
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.baskan img {
    max-width: 300px;
    height: 350px;
    margin-bottom: 30px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.baskanyazi {
    flex: 1;
    font-size: 18px;
    color: black;
    line-height: 1.6;
    max-width: 1000px; /* veya 100% gibi daha geniş bir değer */
    margin: 0 auto;   /* ortalamak için */
}

/* Footer */
footer {
    width: 100%;
    background: rgb(0, 0, 0);
    padding: 20px 0;
    text-align: center;
    color: white;
}

.footer-social-media {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.footer-social-media a img {
    width: 30px;
    height: auto;
}

footer p {
    font-size: 20px;
    margin: 0;
}

/* Mobil Görünüm */
@media (max-width: 768px) {
    .video-bg {
        height: 300px;
    }

    main {
        padding: 350px 20px 80px;
    }

    .menu ul {
        display: none;
        flex-direction: column;
        gap: 15px;
        width: 100%;
        padding: 15px 0;
        background: white;
        position: absolute;
        top: 60px;
        left: 0;
    }

    .menu ul li {
        text-align: center;
    }

    .hamburger {
        display: block;
    }

    .menu.open ul {
        display: flex;
    }

    .baskan {
        padding: 20px;
    }

    .yazi-ters {
        max-width: 100%;
        font-size: 16px;
    }

    .baskan img {
        max-width: 100%;
    }
}

.profil {
    max-width: 820px; /* 3x250 + 2x30 + biraz boşluk */
    margin: 40px auto 0 auto;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.profil-kutu {
    flex: 0 0 250px; /* kesin genişlik ve küçülmeyi önle */
    text-align: center;
}

.profil-kutu img {
    width: 300px !important;
    height: 350px !important;
    object-fit: cover !important;
    border-radius: 12px !important;
    box-shadow: 0 0 10px rgba(0,0,0,0.1) !important;
    display: block;
    margin: 0 auto;
}
.profil-yazi {
    margin-top: 10px;
    font-size: 16px;
    color: black;
}

