/* =========================
   GENEL
========================= */
* {
    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Ü
========================= */
.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 İÇERİK
========================= */
main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 650px 20px 80px;
}

/* =========================
   DUYURULAR
========================= */
.announcements {
    max-width: 1200px;
    margin: 0 auto;
}

.announcement {
    display: flex;
    align-items: center;
    gap: 50px;
    margin: 70px 0;
}

/* YÖN KONTROLÜ */
.announcement.right {
    flex-direction: row;
}

.announcement.left {
    flex-direction: row-reverse;
}

/* Yazı karşı tarafa sabit */
.announcement.left .announcement-text {
    text-align: right;
    margin-left: auto;
}

.announcement.right .announcement-text {
    text-align: left;
    margin-right: auto;
}

.announcement-text h3 {
    font-size: 32px;
    margin-bottom: 15px;
}

.announcement-text p {
    font-size: 20px;
    line-height: 1.7;
    color: #333;
}

.announcement-logo img {
    width: 140px;
    opacity: 0.9;
}

hr {
    border: none;
    border-top: 1px solid #ccc;
    max-width: 900px;
    margin: 0 auto;
}


.detay-link {
    display: inline-block;
    margin-top: 15px;
    font-size: 18px;
    text-decoration: none;
    color: #000;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.detay-link:hover {
    border-bottom: 1px solid #000;
    padding-left: 5px;
}

/* =========================
   FOOTER
========================= */
footer {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

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

footer img {
    width: 30px;
}

footer p {
    font-size: 20px;
}

/* =========================
   MOBİL
========================= */
@media (max-width: 768px) {

    .video-bg {
        height: 300px;
    }

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

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

    .menu.open ul {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    /* Duyurular mobil */
    .announcement,
    .announcement.left,
    .announcement.right {
        flex-direction: column;
        text-align: center;
    }

    .announcement-text {
        margin: 0 auto;
        text-align: center;
    }

    .announcement-logo img {
        width: 100px;
    }
}
