/* 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;
    left: 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 Menü Simgesi */
.hamburger {
    display: none;
    font-size: 30px;
    cursor: pointer;
    position: absolute;
    left: 20px;
}

/* Menü */
.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;
}

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

/* Contact Sayfası Stil */
.contact-container {
    max-width: 1000px;
    margin: 50px auto;
    padding: 20px;
    text-align: center;
	margin-top: 650px;
}

.contact-container h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: #333;
}

.contact-container p {
    font-size: 24px;
    margin-bottom: 30px;
    color: #666;
}

.contact-content {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1000px; /* Genişliği sınırlamak için */
    margin: 0 auto; /* Ortalamak için */
}


.contact-info {
    flex: 1;
    text-align: left;
    font-size: 20px;
    color: #333;
	font-weight: bold; 
}

.map-container {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

#map {
    width: 100%;
    max-width: 1000px; /* Harita genişliğini sınırlama */
    height: 500px;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .contact-content {
        flex-direction: column;
    }

    .contact-info {
        text-align: center;
    }

    /* Form genişliğini mobilde ayarlamak */
    .contact-form {
        max-width: 90%; /* Mobilde daha geniş olmasını sağlamak için */
    }

    /* Harita genişliğini mobilde ayarlamak */
    #map {
        height: 300px;
    }
}

.contact-link {
    color: black;          /* Yazı rengini siyah yapar */
    text-decoration: none; /* Altını çizmeyi kaldırır */
}

.contact-link:hover {
    color: darkred;        /* Üzerine gelince kırmızıya döner */
    text-decoration: underline; /* İsteğe bağlı: hoverda altını çizebilir */
}


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

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

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

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

/* Mobil Cihazlar İçin Stil */
@media (max-width: 768px) {
    .video-bg {
        height: 300px;
    }

    main {
        padding: 350px 20px 80px; /* Mobil video yüksekliği kadar boşluk */
    }

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

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

    .hamburger {
        display: block;
    }

    .menu.open ul {
        display: flex;
    }
}

@media (max-width: 768px) {
    .contact-container {
        margin-top: 320px; /* Video yüksekliğinden biraz fazla olacak şekilde ayarlandı */
    }
}