/* Tüm sayfa için margin ve padding sıfırlama */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
}

body {
    background-image: url('images/denizmanzara.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
    color: #333;
}

/* Arka plan overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
    z-index: -1;
}

/* Ana container */
.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}



/* İki sütunlu düzen */
.contact-content {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

/* Sol sütun - İletişim kartları */
.contact-left {
    flex: 1;
    max-width: 500px;
}

/* Sağ sütun - Harita */
.contact-right {
    flex: 1;
    min-height: 500px;
}

/* İletişim bilgileri bölümü */
.contact-info {
    font-size: 18px;
    margin-bottom: 30px;
    color: #333;
}

.contact-info p {
    margin: 10px 0;
}

/* Telefon numarası ve e-posta bağlantıları */
.contact-info a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.contact-info a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Harita container */
.map-container {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Contact kartları için stil */
.contact-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.contact-card h2 {
    color: #003d8f;
    margin-bottom: 15px;
    font-size: 24px;
}

.contact-card p {
    color: #666;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.5;
}

/* WhatsApp rezervasyon butonu */
.whatsapp-reservation-button {
    background-color: #25D366;
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.whatsapp-reservation-button:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.whatsapp-reservation-button i {
    font-size: 24px;
}

/* Responsive tasarım */
@media (max-width: 968px) {
    .contact-content {
        flex-direction: column;
    }

    .contact-left {
        max-width: 100%;
    }

    .contact-right {
        min-height: 400px;
    }

    .map-container {
        min-height: 400px;
    }
}

@media (max-width: 576px) {
    .contact-container {
        padding: 10px;
    }

    .contact-header {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .whatsapp-reservation-button {
        padding: 12px 20px;
        font-size: 16px;
    }
}
