/*
Theme Name: Maya Food
Theme URI: https://mayamie.com.tr
Author: Maya Food Team
Author URI: https://mayamie.com.tr
Description: Maya Food kurumsal site ve blog teması
Version: 1.0
License: GPL v2 or later
Text Domain: mayafood
*/

/* Mevcut CSS'lerinizi buraya import edeceğiz */
@import url('assets/vendor/bootstrap/css/bootstrap.min.css');
@import url('assets/vendor/bootstrap-icons/bootstrap-icons.css');
@import url('assets/vendor/aos/aos.css');
@import url('assets/vendor/glightbox/css/glightbox.min.css');
@import url('assets/vendor/swiper/swiper-bundle.min.css');
@import url('assets/css/main.css');

/* Blog Özel Stilleri */
.blog-header {
    background: #ce1212;
    padding: 80px 0 20px;
    margin-top: 90px;
}

.blog-post {
    margin-bottom: 40px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.blog-post-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-post-content {
    padding: 25px;
}

.blog-post-title {
    font-size: 24px;
    margin-bottom: 15px;
    color: #37373f;
}

.blog-post-title a {
    color: inherit;
    text-decoration: none;
}

.blog-post-title a:hover {
    color: #ce1212;
}

.blog-post-meta {
    color: #7f7f90;
    font-size: 14px;
    margin-bottom: 15px;
}

.blog-post-meta i {
    margin-right: 5px;
}

.blog-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: #fff;
    padding: 25px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.sidebar-widget h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #37373f;
    border-bottom: 2px solid #ce1212;
    padding-bottom: 10px;
}

.category-list {
    list-style: none;
    padding: 0;
}

.category-list li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.category-list li:last-child {
    border-bottom: none;
}

.category-list a {
    color: #7f7f90;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
}

.category-list a:hover {
    color: #ce1212;
}

.recent-posts-list {
    list-style: none;
    padding: 0;
}

.recent-posts-list li {
    display: flex;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.recent-posts-list li:last-child {
    border-bottom: none;
}

.recent-post-image {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 15px;
}

.recent-post-content h4 {
    font-size: 14px;
    margin-bottom: 5px;
}

.recent-post-content h4 a {
    color: #37373f;
    text-decoration: none;
}

.recent-post-content h4 a:hover {
    color: #ce1212;
}

.recent-post-date {
    font-size: 12px;
    color: #7f7f90;
}
@media (max-width: 1199px) {
    #navmenu.mobile-nav-active {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0,0,0,0.5) !important;
        z-index: 9999;
        padding-top: 100px;
    }
    
    #navmenu.mobile-nav-active ul {
        display: block;
        list-style: none;
        padding: 20px;
    }
    
    #navmenu.mobile-nav-active ul li {
        display: block;
        padding: 10px 0;
        background: yellow;
        margin: 10px 0;
        text-align: center;
    }
    
    #navmenu.mobile-nav-active ul li a {
        display: block;
        color: black;
        font-size: 18px;
        text-decoration: none;
    }
}

/* 3D Flip Card Ürün Tasarımı */
.menu-item .flip-card {
    perspective: 1000px;
    width: 100%;
    height: 320px;
    position: relative;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}



.menu-item:hover .flip-card {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s ease;
}

.flip-card-front {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid rgba(206,18,18,0.1);
}

.flip-card-back {
    background: linear-gradient(135deg, #ce1212 0%, #a61010 100%);
    color: white;
    transform: rotateY(180deg);
}

.flip-card-front .menu-img {
   width: 100% !important;
    height: 180px !important; /* Daha büyük yükseklik */
    object-fit: contain !important; /* Ürünün tamamını göster */
    border-radius: 16px !important;
    margin-bottom: 15px;
    border: none;
    background: white;
    padding: 8px;
}

.flip-card-front .product-title {
    font-size: 16px !important; /* Tortilla ürünleri için daha küçük */
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    color: #333;
    min-height: 40px; /* Sabit yükseklik */
    display: flex;
    align-items: center;
    justify-content: center;
}

.flip-card-front .preview-text {
    font-size: 14px;
    color: #666;
    text-align: center;
    font-style: italic;
}

.flip-card-back .product-title-back {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: white;
}

.flip-card-back .ingredients {
    font-size: 14px;
    text-align: left;
    line-height: 1.6;
    color: rgba(255,255,255,0.95);
    padding: 0 10px;
}

/* Hover efekti iyileştirmeleri */
.menu-item:hover .flip-card-front,
.menu-item:hover .flip-card-back {
    box-shadow: 0 20px 40px rgba(206,18,18,0.2);
}
/* Profesyonel ürün detayları tablosu */
.product-details-table {
    width: 100%;
    margin-top: 15px;
    font-size: 13px;
    border-collapse: separate;
    border-spacing: 0;
}

.product-details-table tr {
    border-bottom: 1px solid rgba(255,255,255,0.3);
}

.product-details-table tr:last-child {
    border-bottom: none;
}

.product-details-table td {
    padding: 8px 12px;
    text-align: left;
    line-height: 1.4;
}

.product-details-table td:first-child {
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    width: 60%;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-details-table td:last-child {
    font-weight: 600;
    color: white;
    font-size: 14px;
}

/* Vurgu efekti */
.product-details-table tr:hover {
    background: rgba(255,255,255,0.1);
}

        /* DESIGN 4: Masonry Grid - Güncellenmiş */
        .design4 {
            background: white;
            padding: 80px 0;
            margin: 40px 0;
        }

        .design4 .masonry-grid {
            display: flex;
            gap: 25px;
            align-items: flex-start;
        }

        .design4 .masonry-item {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
        }

        .design4 .masonry-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(206,18,18,0.1);
        }

        .design4 .item-image {
            width: 100%; 
            height: auto;
            object-fit: cover;
        }

        .design4 .item-content {
            padding: 25px;
        }

        .design4 .item-title {
            font-size: 20px;
            color: #333;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .design4 .item-text {
            color: #555;
            font-size: 20px;
            line-height: 1.8;
            padding: 20px;
        }

        /* Kırmızı kutu - sol tarafta sabit */
        .design4 .text-only {
            background: linear-gradient(135deg, #ce1212 0%, #a61010 100%);
            color: white;
            width: 290px;
            height: 350px;
            flex-shrink: 0; /* Boyutu sabit tut */
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
        }

        .design4 .text-only .item-title {
            color: white;
        }

        .design4 .text-only .item-text {
            color: rgba(255,255,255,0.9);
            padding: 15px;
            font-size: 16px;
        }


        .design4 .tall-item {
            background: #f9f9f9;
            min-height: 350px; 
            flex: 1; 
            display: flex;
            flex-direction: column;
            justify-content: center;
        }


        .design4 .text-only img {
            max-width: 240px;
            max-height: 280px;
            margin: 10px;
            border-radius: 10px;
        }
        
        #menu-starters .flip-card-back {
            background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%) !important;
            color: white;
        }
        
        /* ChefAlberto hover gölgeleri - siyah */
        #menu-starters .menu-item:hover .flip-card-front,
        #menu-starters .menu-item:hover .flip-card-back {
            box-shadow: 0 20px 40px rgba(44, 44, 44, 0.3);
        }
        
    /* Perfecto için koyu mor arka yüz */
#menu-breakfast .flip-card-back {
    background: linear-gradient(135deg, #663399 0%, #4a1a5c 100%) !important;
    color: white;
}
        
        /* Noodle için kırmızı arka yüz */
        #menu-lunch .flip-card-back {
            background: linear-gradient(135deg, #ce1212 0%, #a61010 100%) !important;
            color: white;
        }
        
        /* Kartların boyutu artırıldı */
        .flip-card {
            min-height: 350px;
            max-height: 350px;
        }

        

      
        #why-us .why-box {
            background: linear-gradient(135deg, #ce1212, #a61010); 
            color: white;
            padding: 30px;
            border-radius: 20px; 
            box-shadow: 0 5px 15px rgba(206,18,18,0.3);
            height: 100%;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        #why-us .why-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(206,18,18,0.4);
        }
        
        #why-us .icon-box {
            background: #fff;
            padding: 35px 20px;
            border-radius: 18px; /* İkon kutuları için yumuşak köşeler */
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            height: 100%;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(206,18,18,0.1);
        }
        
        #why-us .icon-box:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(206,18,18,0.2);
            border-color: rgba(206,18,18,0.3);
        }
        

        #why-us .icon-box i {
            font-size: 48px;
            color: #ce1212;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }
        
        #why-us .icon-box:hover i {
            color: #a61010;
            transform: scale(1.1);
        }

        #why-us .icon-box h4 {
            color: #37373f;
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        #why-us .why-box h3 {
            color: white;
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        /* Metinler */
        #why-us .icon-box p {
            color: #7f7f90;
            font-size: 14px;
            line-height: 1.6;
        }
        
        #why-us .why-box p {
            color: rgba(255,255,255,0.9); /* Kırmızı arka planda beyaz metin */
            font-size: 16px;
            line-height: 1.7;
        }
        
        /* Section genel ayarları */
        #why-us.why-us {
            padding: 80px 0;
        }


        @media (max-width: 768px) {
            .design4 .masonry-grid {
                flex-direction: column; 
                gap: 20px;
            }
            
            .design4 .text-only {
                width: 100%;
                height: 300px;
            }
            
            .design4 .tall-item {
                min-height: 250px;
            }
           #why-us .why-box {
                margin-bottom: 30px;
                border-radius: 15px;
                padding: 25px;
            }
            
            #why-us .icon-box {
                border-radius: 15px;
                padding: 25px 15px;
                margin-bottom: 20px;
            }
            
            #why-us .icon-box i {
                font-size: 40px;
            }
            .flip-card-front .product-title {
                font-size: 14px !important;
                min-height: 35px;
            }
            
            .flip-card-front .preview-text {
                font-size: 12px;
            }
            
            .product-details-table {
                font-size: 11px;
            }
            
            .product-details-table td {
                padding: 6px 8px;
            }
        }

        @media (max-width: 992px) and (min-width: 769px) {
            .design4 .text-only {
                width: 200px;
                height: 320px;
            }
        }
        
        .slideshow {
    padding: 60px 0;
}

.slideshow-container {
    position: relative;
    max-width: 100%;
    margin: auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.slide {
    display: none;
    position: relative;
    width: 100%;
    height: 500px;
    animation: fadeIn 1s ease-in-out;
}

.slide.active {
    display: block;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    padding: 40px 30px 30px;
    text-align: center;
}

.slide-overlay h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.slide-overlay p {
    font-size: 1.1rem;
    margin: 0;
    opacity: 0.9;
}

.slideshow-dots {
    text-align: center;
    position: absolute;
    bottom: 20px;
    width: 100%;
    z-index: 10;
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: rgba(255,255,255,0.5);
    border-radius: 50%;
    display: inline-block;
    transition: all 0.3s ease;
}

.dot:hover,
.dot.active {
    background-color: #ce1212;
    transform: scale(1.2);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .slide {
        height: 350px;
    }
    
    .slide-overlay h3 {
        font-size: 1.5rem;
    }
    
    .slide-overlay p {
        font-size: 1rem;
    }
    
    .slide-overlay {
        padding: 20px 15px 15px;
    }
}

@media (max-width: 480px) {
    .slide {
        height: 280px;
    }
    
    .slide-overlay h3 {
        font-size: 1.3rem;
    }
    
    .slide-overlay p {
        font-size: 0.9rem;
    }
}
        
/* Work With Us Section Styles */
.work-with-us {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.work-with-us .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.work-with-us .lead {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 30px;
    line-height: 1.6;
}

.benefits-list {
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.benefit-item i {
    color: #28a745;
    font-size: 1.2rem;
    margin-right: 12px;
}

.benefit-item span {
    color: #495057;
    font-weight: 500;
}

.cta-buttons {
    display: flex;
    flex-wrap: nowrap;
    gap: 15px;
    justify-content: flex-start;
    align-items: center;
}

.cta-buttons .btn {
    padding: 12px 25px;
    font-weight: 600;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-height: 48px;
    margin: 0 !important;
    white-space: nowrap;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.cta-buttons .btn-primary {
    background: linear-gradient(45deg, #dc3545, #c82333);
    color: white;
    border: 2px solid transparent; /* Görünmez border ekleyin */
}

.cta-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.3);
}

.cta-buttons .btn-outline-primary {
    border: 2px solid #dc3545;
    color: #dc3545;
    box-sizing: border-box;
    min-height: 46px; /* Sabit yükseklik */
    padding: 10px 23px; /* Border için padding'i azaltın */
}

.cta-buttons .btn-outline-primary:hover {
    background-color: #dc3545;
    color: white;
    transform: translateY(-2px);
}

.work-image img {
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .work-with-us {
        padding: 60px 0;
    }
    
    .work-with-us .section-title {
        font-size: 2rem;
    }
   .cta-buttons {
        gap: 8px;
        flex-wrap: wrap;
    }
    
    .cta-buttons .btn {
        width: 100%;
        margin: 0 0 10px 0 !important;
        text-align: center;
        min-height: 44px; /* Tüm butonlar aynı yükseklik */
    }
    
}
@media (min-width: 769px) {
    .cta-buttons .btn {
        margin: 0 !important;
        white-space: nowrap;
    }
}
      