 /* Navbar */
 .navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 10px 20px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease-in-out;
}

.navbar .top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    color: #154c79;
}

.navbar .contact-info {
    display: flex;
    gap: 10px;
    font-weight: 600;
    color: #154c79;
}

.navbar .social-icons {
    display: flex;
    gap: 15px;
    font-size: 1.2rem;
}

.menu-items-web {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.menu-items-web a {
    color: #154c79;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 10px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.menu-items-web a:hover {
    color: #ff4d4d;
}

/* Dropdown kapsayıcı */
.dropdown {
    position: relative;
    /* Kapsayıcıya göre konumlandırma */
    padding: 10px;
    cursor: pointer;
}


.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    /* Menüyü sağa hizala */
    background-color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    padding: 15px;
    width: 250px;
    max-height: 300px;
    overflow-y: auto;
    border-radius: 8px;
    transition: all 0.3s ease;
}


.dropdown.open .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    padding: 8px 12px;
    color: #154c79;
    display: block;
    transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: #f1f5f9;
}

/* Mobil Menü */
.burger-menu {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #154c79;
}

.detail-hero {
    /* Optional: Add any custom styles you need */
}

.detail-hero h1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.detail-hero p {
    margin-top: 1rem;
}


/* Responsive Settings */
@media (max-width: 1024px) {
    .menu-items-web {
        display: none;
    }

    .burger-menu {
        display: block;
    }

    .menu-items-web.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.95);
        padding: 16px;
    }

    @media (max-width: 768px) {
        .dropdown-menu {
            right: 0;
            /* Daha küçük ekranlarda sağa hizala */
        }
    }

}

