/* Genel ayarlar */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

/* Form container */
.form-container {
    margin: 0 auto;
    max-width: 500px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    top: 50px;
}

/* Her alan için container */
.container {
    margin-bottom: 20px;
}

h2, h3, p {
    text-align: center;
    color: #333;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    font-size: 14px;
    color: #555;
}

/* Input ve Textarea stilleri */
input[type="text"], input[type="email"], textarea, select {
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
}

textarea {
    height: 80px;
}

button {
    padding: 15px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
}

button:hover {
    background-color: #0056b3;
}

/* Alt fotoğraflar */
.bottom-images {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.bottom-images img {
    width: 100px;
    height: 100px;
    object-fit: cover;
}

/* Fotoğrafı ortalamak */
.container img {
    display: block;
    margin: 0 auto;
}

/* İl ve İlçe seçimi stilleri */
select {
    appearance: none;
    background-color: #f4f4f4;
    border: 1px solid #ddd;
    padding: 10px;
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
}

/* Responsive ayarlar */
@media (max-width: 768px) {
    .form-container {
        width: 85%;
    }

    .bottom-images img {
        width: 80px;
        height: 80px;
    }
}

        /* Özel checkbox ve buton stilleri */
        .ozel-kontrol {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            padding: 60px;
            border: 2px solid #ccc;
            border-radius: 10px;
            font-size: 100px; /* Metin boyutu */
        }

        .ozel-kontrol input[type="checkbox"] {
            margin-right: 10px;
            transform: scale(1.5); /* Checkbox boyutu */
        }
        .ozel-kontrol label {
            font-size: 25px !important; /* !important ile zorlayarak */
        }

        .custom-checkbox {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            padding: 10px;
            border: 3px solid #ccc;
            border-radius: 10px;
            font-size: 1.2em; /* Metin boyutu */
        }

        .custom-checkbox input[type="checkbox"] {
            margin-right: 10px;
            transform: scale(1.5); /* Checkbox boyutu */
        }

        /* Sipariş Ver butonu üstündeki checkbox stili */
        .agreement-checkbox {
            display: flex;
            align-items: center;
            margin-top: 20px;
            font-size: 1em;
            margin-bottom: 20px;
        }

        .agreement-checkbox input[type="checkbox"] {
            margin-right: 10px;
            transform: scale(1.5); /* Checkbox boyutu */
        }
        
        /* WhatsApp Butonu Stili */
        .whatsapp-button {
            position: fixed;
            left: 20px;
            bottom: 20px;
            z-index: 1000;
            display: flex;
            align-items: center;
            text-decoration: none;
            transition: all 0.3s ease-in-out;
        }

        .whatsapp-button img {
            border-radius: 50%;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease;
        }

        .whatsapp-text {
            font-size: 16px;
            font-weight: bold;
            color: #25D366;
            margin-left: 10px;
            opacity: 0;
            transform: translateX(-20px);
            white-space: nowrap;
            animation: slideIn 0.5s forwards;
            animation-delay: 2s;
        }

        .whatsapp-button:hover img {
            transform: scale(1.1);
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateX(-20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @media (min-width: 768px) {
            .whatsapp-button {
                left: 30px;
                bottom: 30px;
            }

            .whatsapp-button img {
                width: 60px;
                height: 60px;
            }

            .whatsapp-text {
                font-size: 18px;
            }
        }

        @media (max-width: 767px) {
            .whatsapp-button {
                left: 10px;
                bottom: 10px;
            }

            .whatsapp-button img {
                width: 40px;
                height: 40px;
            }

            .whatsapp-text {
                font-size: 14px;
            }
        }
        
        .responsive-img {
    width: 100%;
    max-width: 600px; /* Masaüstünde en fazla 600px genişlik */
    height: auto;     /* Orantılı yükseklik */
    display: block;
    margin: 0 auto;   /* Görseli ortalar */
}

@media (max-width: 768px) {
    .responsive-img {
        max-width: 100%; /* Mobilde tam genişlik */
    }
}