body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

footer {

    color: white;
    padding: 40px 0;
    text-align: center;
    font-size: 14px;
    box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.1);
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

footer .socials {
    flex: 1;
    margin-right: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

footer .socials a {
    margin-bottom: 20px;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
}

footer .socials a:hover {
    color: #00aaff;
}

footer .user-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    animation: fadeIn 1s ease-in-out;
}

footer .user-info img {
    width: 140px;  /* Daha büyük resim */
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 30px;
    box-shadow: 3px 5px white;
    transition: transform 0.3s ease;
}

footer .user-info img:hover {
    transform: scale(1.1);  /* Hover sırasında resim büyür */
}

footer .user-info p {
    color: white;
    font-size: 16px;
    font-weight: bold;
}

footer .contact {
    flex: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 400px;
    margin: 20px auto 0;
    width: 100%;
}

footer .contact h3 {
    margin-bottom: 20px;
    font-size: 24px;
    color: white;
}

footer .contact input,
footer .contact textarea {
    margin: 10px 0;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 100%;
    box-sizing: border-box;
}

footer .contact button {
    background-color: #00aaff;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

footer .contact button:hover {
    background-color: #0088cc;
    transform: scale(1.05);  /* Buton hover efekti */
}

footer .footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 14px;
    transition: text-decoration 0.3s ease;
}

footer .footer-links a:hover {
    text-decoration: underline;
}

footer .footer-bottom {
    margin-top: 20px;
    font-size: 12px;
    color: #bbb;
}

footer .footer-bottom a {
    color: #bbb;
    text-decoration: none;
}

footer .footer-bottom a:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 1024px) {
    footer .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    footer .socials {
        margin-bottom: 20px;
    }

    footer .contact {
        margin-top: 20px;
    }

    footer .footer-links {
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    footer .container {
        flex-direction: column;
    }

    footer .socials a {
        font-size: 18px;
    }

    footer .contact form {
        max-width: 100%;
    }

    footer .footer-links {
        margin-top: 15px;
    }
}


.notification {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #4CAF50;
    color: white;
    padding: 15px;
    border-radius: 5px;
    font-size: 16px;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.notification.show {
    opacity: 1;
}

.notification.error {
    background-color: #f44336;
}
#messageStatus {
    margin-top: 10px;
    color: green;
    font-size: 14px;
    font-weight: bold;
}

#errorStatus {
    margin-top: 10px;
    color: red;
    font-size: 14px;
    font-weight: bold;
}



/* FadeIn Animation */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
