/* Logo styling and animation */
.logo {
    position: relative;
    z-index: 1001;
}

.logo a {
    display: block;
    text-decoration: none;
}

.logo img {
    height: 50px;
    position: relative;
    transition: transform 0.3s ease;
}

.logo a:hover img {
    transform: scale(1.05);
}

/* Contact Page Styles */
.contact {
    padding: 4rem 0;
    text-align: center;
    background-color: #f9f9f9;
}

.contact h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #29304e;
}

.contact p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555;
}

.contact form {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact form label {
    display: block;
    text-align: left;
    font-weight: bold;
    margin-top: 1rem;
    color: #29304e;
}

.contact form input,
.contact form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

.contact form button {
    display: block;
    width: 100%;
    margin-top: 1.5rem;
    padding: 10px;
    background-color: #29304e;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact form button:hover {
    background-color: #1f253d;
}

.form-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
    text-align: center;
    font-weight: 500;
}

/* Eğer .dropdown-menu li a:hover varsa scale efektini kaldır */

.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    position: absolute;
    top: 24px;
    right: 32px;
    padding: 12px 16px;
    border-radius: 8px;
    background: rgba(255,255,255,0.8);
    z-index: 1100;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
}
