/* Header Stilleri - İstiridye Tuzla Tarzı */
.main-header {
    background: #12161880;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999999 !important;
    width: 100%;
    padding: 15px 0;
    height: 80px;
    backdrop-filter: blur(4px);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    height: 50px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 1001;
    position: absolute;
    left: 30px;
}

/* Hamburger Menü */
.hamburger-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    padding: 5px;
    position: relative;
    z-index: 99999999;
}

.hamburger-icon {
    width: 24px;
    height: auto;
    transition: all 0.3s ease;
    filter: brightness(0) invert(1);
}

.menu-text {
    color: white;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.hamburger-menu:hover .hamburger-icon {
    filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(175deg);
    transform: scale(1.1);
}

.hamburger-menu:hover .menu-text {
    color: #02a2ea;
}

/* Menü Kapatma Butonu */
.menu-close-btn {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999999999;
    transition: all 0.3s ease;
}

.menu-close-btn i {
    font-size: 28px;
    color: white;
}

.menu-close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.menu-close-btn:hover i {
    color: #02a2ea;
}

/* Konum Bilgisi */
.location-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 14px;
    font-weight: 500;
}

.location-info i {
    color: white;
    font-size: 16px;
}

/* Logo */
.logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    pointer-events: none;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
    pointer-events: auto;
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

/* Sağ Taraf */
.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 1001;
    position: absolute;
    right: 30px;
}

.header-right .social-icons {
    display: flex;
    gap: 15px;
}

.header-right .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: #04090c;
    border-radius: 7px;
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.header-right .social-icon:hover {
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

.header-right .social-icon:nth-child(1):hover {
    background: #0d47a1;
    box-shadow: 0 4px 12px rgba(13, 71, 161, 0.3);
}

.header-right .social-icon:nth-child(2):hover {
    background: #C13584;
    box-shadow: 0 4px 12px rgba(193, 53, 132, 0.3);
}

.header-right .social-icon:nth-child(3):hover {
    background: #ff0000;
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
}

.header-right .social-icon.disabled {
    cursor: default;
}

.header-right .btn-reservation {
    background:#04090c;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.header-right .btn-reservation:hover {
    background: #0288d1;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(2, 162, 234, 0.3);
    color: white;
    text-decoration: none;
}

/* Ana Menü */
.main-menu {
    position: absolute;
    left: 0;
    top: 100%;
    background: rgba(0, 0, 0, 0.95);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 999;
    border-radius: 0 0 10px 10px;
}

.main-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menu-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
    justify-content: flex-start;
    list-style: none;
    margin: 0;
    padding: 10px 0;
    min-width: 200px;
}

.menu-list li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-list li:last-child {
    border-bottom: none;
}

.menu-link {
    color: white !important;
    text-decoration: none;
    font-family: 'Gosha Sans', sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: transparent;
    width: 100%;
}

.menu-link i {
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.menu-link:hover {
    color: #02a2ea !important;
    background: rgba(255, 255, 255, 0.05);
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .header-content {
        padding: 0 20px;
        justify-content: space-between;
    }
    
    .header-left {
        left: 20px;
    }
    
    .header-right {
        right: 20px;
    }
    
    .hamburger-menu {
        display: flex !important;
        flex-direction: column;
        cursor: pointer;
        padding: 5px;
        z-index: 9999999 !important;
        position: relative;
    }
    
    .menu-text {
        display: none;
    }
    
    .location-info {
        display: none;
    }
    
    .header-right {
        display: none !important;
    }
    
    .main-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        transition: left 0.3s ease;
        z-index: 999999 !important;
        opacity: 1;
        visibility: visible;
        transform: none;
    }
    
    .main-menu.active {
        left: 0;
    }
    
    .main-menu.active .menu-close-btn {
        display: flex !important;
    }
    
    .menu-list {
        flex-direction: column;
        gap: 30px;
        padding-top: 100px;
        height: 100%;
        justify-content: flex-start;
    }
    
    .menu-link {
        font-size: 18px;
        padding: 15px 20px;
    }
    
    /* Mobil Sosyal Medya ve Rezervasyon */
    .mobile-social-reservation {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-top: 40px;
        padding: 20px;
    }
    
    .mobile-social-icons {
        display: flex;
        gap: 20px;
        justify-content: center;
    }
    
    .mobile-social-icons .social-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 7px;
        color: white;
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 20px;
    }
    
    .mobile-social-icons .social-icon:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
    }
    
    .mobile-social-icons .social-icon:nth-child(2):hover {
        background: rgba(193, 53, 132, 0.2);
    }
    
    .mobile-social-icons .social-icon.disabled {
        cursor: default;
    }
    
    .btn-reservation-mobile {
        background: #02a2ea;
        color: white;
        padding: 15px 50px;
        border-radius: 7px;
        text-decoration: none;
        font-weight: 600;
        font-size: 16px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(2, 162, 234, 0.3);
    }
    
    .btn-reservation-mobile:hover {
        background: #0288c7;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(2, 162, 234, 0.4);
    }
}

@media (min-width: 769px) {
    .mobile-social-reservation {
        display: none;
    }
}

@media (max-width: 480px) {
    .header-content {
        padding: 0 15px;
    }
    
    .header-left {
        left: 15px;
    }
    
    .header-right {
        right: 15px;
    }
    
    .logo-img {
        height: 50px;
    }
    
    .menu-list {
        gap: 15px;
    }
    
    .menu-link {
        font-size: 14px;
    }
    
    .btn-reservation {
        padding: 10px 20px;
        font-size: 14px;
    }
}