@import url(navbar_and_body.css);

body {
    background-color: #0f172a;
}

.harita-container {
    width: 90%;
    max-width: 800px;
    height: 400px;
    margin: 120px auto 0;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(255, 215, 0, 0.15);
    background-color: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    animation: fadeIn 1.5s ease forwards;
    z-index: 800;
}

.harita-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    opacity: 0.9;
}

.harita-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(15, 23, 42, 0.2) 0%,
        rgba(15, 23, 42, 0.1) 50%,
        rgba(15, 23, 42, 0.2) 100%
    );
    pointer-events: none;
    z-index: 1;
}

.harita-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(10%) brightness(85%) contrast(110%) saturate(85%);
}

.konum-isareti {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(15, 23, 42, 0.9);
    padding: 10px 20px;
    border-radius: 30px;
    color: #ffd700;
    font-size: 0.9rem;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(5px);
    cursor: pointer;
    transition: all 0.3s ease;
}

.konum-isareti:hover {
    background: rgba(15, 23, 42, 1);
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.konum-isareti i {
    margin-right: 8px;
    color: #dc2626;
}

.iletisim-container {
    position: relative;
    margin-top: 5px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    z-index: 2;
    margin-bottom: 60px;
}

.calisma-saatleri {
    width: 90%;
    max-width: 800px;
    margin: 10px auto;
    padding: 20px;
    background: rgba(15, 23, 42, 0.7);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.15);
    backdrop-filter: blur(10px);
    color: #ffd700;
    text-align: center;
    position: relative;
    z-index: 900;
}

.calisma-saatleri h3 {
    color: #ffd700;
    font-size: 1.3rem;
    margin-bottom: 15px;
    text-align: center;
    position: relative;
    display: inline-block;
    animation: glowOnly 2s ease-in-out infinite;
}

.calisma-saatleri h3 i {
    margin-right: 10px;
    color: #ffd700;
    animation: glowOnly 2s ease-in-out infinite;
}

.rezerv-bilgi {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    text-align: center;
    color: #ffd700;
    font-size: 1.1rem;
}

.rezerv-bilgi i {
    margin-right: 8px;
    color: #ffd700;
}

.saat-listesi {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.gun {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.iletisim-bilgileri {
    width: 90%;
    max-width: 800px;
    margin: 5px auto;
    padding: 20px;
    background: rgba(15, 23, 42, 0.7);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.15);
    backdrop-filter: blur(10px);
    color: #ffd700;
    margin-bottom: 20px;
    position: relative;
    z-index: 900;
}

.iletisim-bilgileri {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.bilgi {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bilgi a {
    color: #ffd700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.bilgi a:hover {
    color: #fff;
    animation: none;
}

.bilgi:hover i {
    color: #fff;
    animation: none;
}

/* Mobil için düzenlemeler */
@media (max-width: 768px) {
    .harita-container {
        width: 95%;
        height: 300px;
        margin-top: 100px;
    }
    
    .konum-isareti {
        font-size: 0.8rem;
        padding: 8px 15px;
    }

    .iletisim-bilgileri {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-bottom: 50px;
    }
    
    .iletisim-container {
        margin-top: 0px;
    }

    .rezerv-bilgi {
        font-size: 1rem;
    }

    .calisma-saatleri h3 {
        font-size: 1.1rem;
    }

    .sosyal-link {
        width: 60px;
        height: 60px;
        font-size: 25px;
    }
    
    .sosyal-medya {
        margin-top: 10px;
        gap: 20px;
    }
}

/* Küçük mobil cihazlar için */
@media (max-width: 480px) {
    .calisma-saatleri h3 {
        font-size: 1rem;
    }
}

@keyframes glowOnly {
    0% {
        text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
    }
    50% {
        text-shadow: 0 0 15px rgba(255, 215, 0, 0.8),
                     0 0 25px rgba(255, 215, 0, 0.5);
    }
    100% {
        text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
    }
}

.eliven-link {
    text-decoration: none;
}

.eliven {
    color: #ffd700;
    font-weight: bold;
    position: relative;
    transition: all 0.3s ease;
    display: inline-block;
    animation: heydarovGlow 2s ease-in-out infinite;
}

.eliven:hover {
    transform: translateY(-2px) scale(1.05);
    animation: heydarovHover 0.5s ease-in-out infinite;
}

@keyframes heydarovGlow {
    0%, 100% {
        color: #ffd700;
        text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
    }
    50% {
        color: #fff;
        text-shadow: 0 0 15px rgba(255, 215, 0, 0.8),
                     0 0 25px rgba(255, 215, 0, 0.5);
    }
}

@keyframes heydarovHover {
    0%, 100% {
        text-shadow: 0 0 15px rgba(255, 215, 0, 0.8),
                     0 0 25px rgba(255, 215, 0, 0.5);
    }
    50% {
        text-shadow: 0 0 20px rgba(255, 215, 0, 1),
                     0 0 30px rgba(255, 215, 0, 0.7),
                     0 0 40px rgba(255, 215, 0, 0.5);
    }
}

/* Sosyal medya ikonları için düzenleme */
.sosyal-medya {
    display: flex;
    gap: 30px;
    margin-top: 20px;
    padding: 20px;
}

.sosyal-link {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 35px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    position: relative;
    z-index: 2;
}