/* Ortak CSS - Menü ve Genel Stiller */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: "Bebas Neue", cursive;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: transparent;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Sosyal Medya İkonları - Sol Üst */
.social-media-icons {
    position: fixed;
    top: 10px;
    left: 20px;
    z-index: 10002; /* Header'ın üstünde */
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.social-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(34, 74, 152, 0.7); /* Bant rengi, transparan */
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    backdrop-filter: blur(5px);
}

.social-icon:hover {
    background-color: rgba(34, 74, 152, 0.9);
    transform: translateY(-3px) scale(1.1);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* Telefon Numarası - Sağ Üst */
.phone-number {
    position: fixed;
    top: 10px;
    right: 20px;
    z-index: 10002; /* Header'ın üstünde */
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: rgba(34, 74, 152, 0.7); /* Bant rengi, transparan */
    color: #fff;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.phone-link i {
    font-size: 16px;
}

.phone-link:hover {
    background-color: rgba(34, 74, 152, 0.9);
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* İçerik için üst boşluk - sabit menü için */
body {
    padding-top: 100px;
    /*background-color: #224a98;*/ /* Header üstündeki alan için bant rengi */
    
}

.top-menu {
    width: 100%;
    position: fixed;
    top: 50px;
    left: 0;
    z-index: 9999; /* Her zaman en üstte */
    background-color: transparent;
}

/* Header üstündeki alanı mavi yap - sayfa kaydırıldığında görünsün */
.top-menu::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    /*background-color: #224a98;*/
    background-color: transparent;
    z-index: 9997; /* Header'ın altında */
    pointer-events: none; /* Tıklamaları engelleme */
}

.logo-container {
    position: fixed;
    top: 75px;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10000; /* Logo en üstte */
    display: flex;
    align-items: center;
    justify-content: center;
    animation: logoSlideDown 1s ease-out forwards;
}

@keyframes logoSlideDown {
    from {
        transform: translate(-50%, -200%);
        opacity: 0;
    }
    to {
        transform: translate(-50%, -50%);
        opacity: 1;
    }
}

.logo {
    max-width: 150px;
    height: auto;
    filter: drop-shadow(0 0 10px #ffffff) drop-shadow(0 0 20px #ffffff);
}

.menu-container {
    width: 100%;
    max-width: 100%;
    height: 50px;
    background-color: #224a98;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    position: relative;
    filter: drop-shadow(0 0 10px #ffffff) drop-shadow(0 0 20px #ffffff);
    top: 0;
}

.menu-left,
.menu-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.menu-item {
    color: #fff;
    text-decoration: none;
    padding: 12px 20px;
    transition: all 0.3s;
    font-size: 18px;
    /*font-weight: 600;*/
    font-family: "Bebas Neue", cursive;
    display: flex;
    align-items: center;
    gap: 18px;
    position: relative;
    height: 50px;
    letter-spacing: 0.5px;
}

.menu-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.menu-item:hover::after,
.dropdown:hover .menu-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background-color: #fff;
}

.dropdown-arrow {
    font-size: 12px;
    margin-left: 5px;
    transition: transform 0.3s;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 500px;
    box-shadow: 0px 8px 24px 0px rgba(0,0,0,0.15);
    z-index: 10001; /* Dropdown menüler header'ın altında ama diğer her şeyin üstünde */
    border-radius: 8px;
    overflow: hidden;
    margin-top: 0;
    padding: 20px;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}

/* Sağ menü için dropdown sağa hizalı */
.dropdown-right .dropdown-content-right {
    left: auto;
    right: 0;
}

.dropdown-content a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.3s;
    font-size: 14px;
    border-radius: 4px;
    position: relative;
}

.dropdown-content a::before {
    content: '';
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 6px solid #224a98;
    display: inline-block;
    flex-shrink: 0;
    margin-right: 12px;
    vertical-align: middle;
}

.dropdown-content a:hover {
    background-color: #f5f5f5;
    color: #224a98;
    padding-left: 20px;
}

.dropdown:hover .dropdown-content {
    display: grid;
}

.dropdown:hover .menu-item {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Footer stilleri footer.css dosyasında */

.menu-list {
    list-style: none;
    display: flex;
    width: 100%;
    height: 50px;
    margin: 0;
    padding: 0;
}

.menu-list li {
    flex: 1;
    text-align: center;
    height: 50px;
}

.menu-list li a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    padding: 0 20px;
    text-decoration: none;
    color: #fff;
    transition: background-color 0.3s;
    font-family: "Bebas Neue", cursive;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.menu-list li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

