﻿/* Restaurant Menu Styles - Scoped */
.restaurant-menu-page * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.restaurant-menu-page {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
    min-height: 100vh;
    padding: 20px;
}

    .restaurant-menu-page .page-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 20px;
    }

    .restaurant-menu-page .header-section {
        text-align: center;
        margin-bottom: 60px;
        padding: 20px 0;
    }

    .restaurant-menu-page .restaurant-name {
        font-size: 3rem;
        color: #2c3e50;
        margin-bottom: 15px;
        font-weight: 300;
        letter-spacing: 3px;
    }

    .restaurant-menu-page .subtitle {
        font-size: 1.3rem;
        color: #7f8c8d;
        font-style: italic;
        margin-bottom: 30px;
    }

    .restaurant-menu-page .decorative-line {
        height: 2px;
        background: linear-gradient(90deg, transparent, #bdc3c7, transparent);
        margin: 30px auto;
        width: 80px;
    }

    .restaurant-menu-page .nesil-paspatur {
        background: linear-gradient(45deg, #ff6b6b, #feca57);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-size: 1.2rem;
        font-weight: bold;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

    .restaurant-menu-page .menu-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 40px;
        margin-top: 40px;
    }

    .restaurant-menu-page .category-card {
        background: white;
        border-radius: 16px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        transition: all 0.3s ease;
        position: relative;
    }

        .restaurant-menu-page .category-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .restaurant-menu-page .category-card a {
            text-decoration: none;
            color: inherit;
            display: block;
        }

    .restaurant-menu-page .category-image {
        width: 100%;
        height: 250px;
        overflow: hidden;
        position: relative;
    }

        .restaurant-menu-page .category-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

    .restaurant-menu-page .category-card:hover .category-image img {
        transform: scale(1.1);
    }

    .restaurant-menu-page .category-image::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.3) 100%);
        transition: opacity 0.3s ease;
    }

    .restaurant-menu-page .category-card:hover .category-image::after {
        opacity: 0.7;
    }

    .restaurant-menu-page .category-title {
        padding: 25px 20px;
        text-align: center;
        font-size: 1.4rem;
        font-weight: 600;
        color: #2c3e50;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        background: white;
        position: relative;
        z-index: 2;
    }

    .restaurant-menu-page .category-card:hover .category-title {
        color: #3498db;
    }

    /* Animasyon */
    .restaurant-menu-page .category-card {
        animation: menuFadeInUp 0.6s ease-out forwards;
        opacity: 0;
        transform: translateY(30px);
    }

        .restaurant-menu-page .category-card:nth-child(1) {
            animation-delay: 0.1s;
        }

        .restaurant-menu-page .category-card:nth-child(2) {
            animation-delay: 0.2s;
        }

        .restaurant-menu-page .category-card:nth-child(3) {
            animation-delay: 0.3s;
        }

        .restaurant-menu-page .category-card:nth-child(4) {
            animation-delay: 0.4s;
        }

        .restaurant-menu-page .category-card:nth-child(5) {
            animation-delay: 0.5s;
        }

        .restaurant-menu-page .category-card:nth-child(6) {
            animation-delay: 0.6s;
        }

        .restaurant-menu-page .category-card:nth-child(7) {
            animation-delay: 0.7s;
        }

        .restaurant-menu-page .category-card:nth-child(8) {
            animation-delay: 0.8s;
        }

        .restaurant-menu-page .category-card:nth-child(9) {
            animation-delay: 0.9s;
        }

        .restaurant-menu-page .category-card:nth-child(10) {
            animation-delay: 1.0s;
        }

@keyframes menuFadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .restaurant-menu-page .menu-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .restaurant-menu-page .page-container {
        padding: 20px 15px;
    }

    .restaurant-menu-page .restaurant-name {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }

    .restaurant-menu-page .subtitle {
        font-size: 1.1rem;
    }

    .restaurant-menu-page .category-image {
        height: 200px;
    }

    .restaurant-menu-page .category-title {
        font-size: 1.2rem;
        padding: 20px 15px;
    }
}

@media (max-width: 480px) {
    .restaurant-menu-page .restaurant-name {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }

    .restaurant-menu-page .subtitle {
        font-size: 1rem;
    }

    .restaurant-menu-page .nesil-paspatur {
        font-size: 1rem;
        letter-spacing: 1px;
    }

    .restaurant-menu-page .category-image {
        height: 180px;
    }

    .restaurant-menu-page .category-title {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }
}

/* Click effect */
.restaurant-menu-page .category-card:active {
    transform: translateY(-5px);
    transition: transform 0.1s;
}


/* serhat */
/* Figure Card Styles - Mevcut HTML yapısını değiştirmeden */
/* Container */
.isotope-item {
    margin-bottom: 30px;
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

    .isotope-item:nth-child(1) {
        animation-delay: 0.1s;
    }

    .isotope-item:nth-child(2) {
        animation-delay: 0.2s;
    }

    .isotope-item:nth-child(3) {
        animation-delay: 0.3s;
    }

    .isotope-item:nth-child(4) {
        animation-delay: 0.4s;
    }

    .isotope-item:nth-child(5) {
        animation-delay: 0.5s;
    }

    .isotope-item:nth-child(6) {
        animation-delay: 0.6s;
    }

    .isotope-item:nth-child(7) {
        animation-delay: 0.7s;
    }

    .isotope-item:nth-child(8) {
        animation-delay: 0.8s;
    }

    .isotope-item:nth-child(9) {
        animation-delay: 0.9s;
    }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Link */
.isotope-item a {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

    .isotope-item a:hover {
        text-decoration: none;
        color: inherit;
        transform: translateY(-8px);
    }

/* Figure - Ana kart container */
.isotope-item figure {
    position: relative;
    margin: 0;
    border-radius: 20px;
    overflow: hidden;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    height: 500px;
}

    .isotope-item figure:hover {
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15), 0 12px 25px rgba(0, 0, 0, 0.1);
    }

    /* Image */
    .isotope-item figure img {
        width: 100%;
        height: 400px;
        object-fit: cover;
        transition: transform 0.4s ease;
        border-radius: 20px 20px 0 0;
    }

    .isotope-item figure:hover img {
        transform: scale(1.08);
    }

    /* Image overlay */
    .isotope-item figure::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 417px;
        background: linear-gradient(1deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.3) 100%);
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: 1;
        border-radius: 20px 20px 0 0;
    }

    .isotope-item figure:hover::before {
        opacity: 1;
    }

    /* Parlama efekti */
    .isotope-item figure::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient( 90deg, transparent, rgba(255, 255, 255, 0.3), transparent );
        z-index: 5;
        transition: left 0.6s ease;
    }

    .isotope-item figure:hover::after {
        left: 100%;
    }

/* Member Info - Alt kısım */
.isotope-item .member-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 20px;
    z-index: 2;
    border-radius: 0 0 20px 20px;
    transition: all 0.3s ease;
}

.isotope-item figure:hover .member-info {
    background: linear-gradient( 135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100% );
    backdrop-filter: blur(10px);
}

/* Member Info Content */
.isotope-item .member-info-content {
    text-align: center;
}

    .isotope-item .member-info-content h4 {
        color: #2c3e50;
        font-size: 1.3rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1.2px;
        margin: 0;
        transition: all 0.3s ease;
        position: relative;
    }

.isotope-item figure:hover .member-info-content h4 {
    color: #3498db;
    transform: translateY(-2px);
}

/* Kategori badge ekleme (opsiyonel) */
/*.isotope-item .member-info-content::after {
    content: 'Kategori';
    display: block;
    margin-top: 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease 0.1s;
    display: inline-block;
}*/

.isotope-item figure:hover .member-info-content::after {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .isotope-item figure {
        height: 320px;
    }

        .isotope-item figure img {
            height: 220px;
        }

        .isotope-item figure::before {
            height: 220px;
        }
}

@media (max-width: 992px) {
    .isotope-item figure {
        height: 300px;
    }

        .isotope-item figure img {
            height: 200px;
        }

        .isotope-item figure::before {
            height: 200px;
        }

    .isotope-item .member-info-content h4 {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }
}

@media (max-width: 768px) {
    .isotope-item figure {
        height: 280px;
        border-radius: 15px;
    }

        .isotope-item figure img {
            height: 180px;
            border-radius: 15px 15px 0 0;
        }

        .isotope-item figure::before {
            height: 180px;
            border-radius: 15px 15px 0 0;
        }

    .isotope-item .member-info {
        padding: 15px;
        border-radius: 0 0 15px 15px;
    }

    .isotope-item .member-info-content h4 {
        font-size: 1.1rem;
        letter-spacing: 0.8px;
    }

    .isotope-item .member-info-content::after {
        font-size: 0.7rem;
        padding: 3px 10px;
    }
}

@media (max-width: 576px) {
    .isotope-item {
        margin-bottom: 20px;
    }

        .isotope-item figure {
            height: 260px;
            border-radius: 12px;
        }

            .isotope-item figure img {
                height: 160px;
                border-radius: 12px 12px 0 0;
            }

            .isotope-item figure::before {
                height: 160px;
                border-radius: 12px 12px 0 0;
            }

        .isotope-item .member-info {
            padding: 12px;
            border-radius: 0 0 12px 12px;
        }

        .isotope-item .member-info-content h4 {
            font-size: 1rem;
            letter-spacing: 0.5px;
        }

        .isotope-item .member-info-content::after {
            font-size: 0.65rem;
            padding: 2px 8px;
            margin-top: 6px;
        }
}

/* Hover zoom effect for entire item */
.isotope-item:hover figure {
    transform: scale(1.02);
}

/* Alternative: Gradient text on hover */
.isotope-item figure:hover .member-info-content h4 {
    background: linear-gradient(45deg, #3498db, #9b59b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Loading states */
.isotope-item figure img {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.isotope-item figure img[src] {
    background: none;
    animation: none;
}

.parallax-container {
    position: relative;
    overflow: hidden;
}

    .parallax-container::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4); /* siyah gölge efekti */
        pointer-events: none; /* tıklanabilir öğeleri engellemez */
        z-index: 1;
    }

.parallax-content {
    position: relative;
    z-index: 2; /* içerik üstte kalsın */
    color: white;
    padding: 40px;
}

.languageDiv {
    position: relative;
    display: inline-block;
    float: right;
    z-index: 9999999;
    margin: 24px 0px 24px 20px;
    border-radius: 0;
}

    .languageDiv button.btn.btn-secondary.dropdown-toggle.shadow-0 {
        position: relative;
        display: inline-block;
        float: right;
        z-index: 9999999;
        margin: 0px;
        background-color: #000000ab;
        color: #ffffff;
        font-size: 12px;
        padding: 3px 10px;
        border-radius: 5px;
    }

    .languageDiv .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: opacity 0.5s ease, transform 0.5s ease;
        pointer-events: none;
        top: 36px;
        min-width: 55px;
        left: 0px;
        background-color: #000000a3;
        color: white;
        font-size: 13px;
        padding: 4px 6px;
        border-radius: 3px 4px 3px 3px;
        font-weight: 900;
    }

    .languageDiv:hover .dropdown-menu,
    .languageDiv:focus-within .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

ul.cssNbavbar {
    display: inline-block;
    float: left;
    margin-right: 20px;
}

.cssNbavbar li {
    padding: 5px 0px;
    border-top: 1px solid #ffffff85;
}

ul.dropdown-menu.cssNbavbar li a {
    color: white;
    padding: 0px 3px !important;
    text-align: center;
    background: none;
}


ul.cssNbavbar li .a:hover, ul.cssNbavbar li a:focus {
    background-color: none;
}


.custom-card {
    background: white;
    transition: all 0.3s ease-in-out;
}

    .custom-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

.custom-card-img img {
    height: 220px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

.category-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .category-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

    .category-card .card-title {
        transition: color 0.3s ease;
    }

    .category-card:hover .card-title {
        color: #6c63ff; /* dilediğin ton */
    }


#campaignModal .modal-dialog {
    max-width: 500px;
}

.colorMenuCss:after, .colorMenuCss:before, .colorMenuCss {
    background-color: #4d8c8b !important;
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    #campaignModal .modal-dialog {
        margin: 1rem;
        max-width: calc(100% - 2rem);
    }

    #campaignModal .modal-content {
        border-radius: 15px;
    }

    /*    #campaignModal .position-relative img {
        height: 450px !important;
    }*/
}

@media (max-width: 576px) {
    #campaignModal .modal-dialog {
        margin: 0.5rem;
        max-width: calc(100% - 1rem);
    }

    /*    #campaignModal .position-relative img {
        height: 350px !important;
    }*/
}

/*@media (max-width: 400px) {
    #campaignModal .position-relative img {
        height: 300px !important;
    }
}*/

#campaignModal .btn-close::before {
    content: '✕';
    font-size: 16px;
    color: #333;
    font-weight: bold;
}

#campaignModal .btn-close {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #ddd;
    color: #333;
    font-size: 18px;
    font-weight: bold;
}

.list-unstyled {
    text-align: center;
}

    .list-unstyled li {
        width: calc(33.333333% - 20px);
        display: inline-block;
        margin: 0px 10px;
        padding: 12px;
        box-shadow: rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em, rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em, rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset;
    }

div#campaignModal {
    z-index: 99999 !important;
}

.logoCss {
    width: 188px;
    border-radius: 5px;
    padding: 8px;
}

.cssFooterUl, .cssFooterBrand {
    text-align: center;
}

.footerPadding {
    padding: 0px 123px;
}

.map-responsive {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
}

    .map-responsive iframe {
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        position: absolute;
    }

.itemCss {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 3px;
}

.panelLogoCss img {
    width: 150px !important;
    max-height: 100% !important;
    margin: 0;
}

.mobilLogoCss {
    width: 150px;
}


.imgCss {
    display: block;
    position: relative;
}

    .imgCss::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.3);
        pointer-events: none;
        z-index: 1;
    }

.rd-navbar-panel {
    background: #ffffff;
}

.rd-navbar-wrap {
    background: #ffffff;
}

.navbarStlyeCss {
    background: #ffffff;
}

    .navbarStlyeCss .rd-navba {
        padding: 20px 85px 20px 85px;
    }

.cssNavbar {
    margin: 26px 0px !important;
}

.navbarStlyeCss {
    box-shadow: rgba(6, 24, 44, 0.4) 0px 0px 0px 2px, rgba(6, 24, 44, 0.65) 0px 4px 6px -1px, rgba(255, 255, 255, 0.08) 0px 1px 0px inset !important;
}

/* Sadece footer-copyright sınıfındaki linkler için */
.footer-copyright a {
    color: inherit;
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.3s ease;
}

    .footer-copyright a:hover {
        color: #E4405F; /* Instagram rengi */
    }


@media (max-width: 1199px) {
    /*
        .logoCss {
            margin-top: 60px !important;
        }*/

    .list-unstyled li {
        width: calc(100% - 20px);
    }

    .cssNavarLogo {
        position: absolute;
        left: calc(50% - 75px);
        top: 0 !important;
        display: block !important;
        transform: none !important;
        height: 80px;
    }

    .logoCss {
        width: 150px;
        padding: 0px !important;
        border-radius: 0px;
    }

    .mobileSliderCss {
        height: auto !important;
        min-height: auto !important;
        margin: 56px 0px 0px 0px !important;
        padding:0;
    }

    .languageDiv {
        margin: 9px 0px 9px 20px
    }

    .languageDiv button.btn.btn-secondary.dropdown-toggle.shadow-0 {
        border-right: 1px solid #4d8c8ba8;
        border-left: 1px solid #4d8c8ba8;
        background-color: #ffffff;
        color: #4d8c8b;
        border-radius: 0px;
        margin: 0px;
    }

    .textStyleCss {
        height: 130px;
        display: flex;
        justify-content: center;
        align-items: center;
    }


    .shadowCss {
        box-shadow: rgba(6, 24, 44, 0.4) 0px 0px 0px 2px, rgba(6, 24, 44, 0.65) 0px 4px 6px -1px, rgba(255, 255, 255, 0.08) 0px 1px 0px inset;
    }

    .footerPadding {
        padding: 0px 20px;
    }

    .mobilNavbarCss li a {
        background: #140f0c;
    }

    .cssNavbar {
        background: #000000;
    }

}
