﻿

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #1a3c5e;
    margin-bottom: 40px;
    font-weight: 300;
}

/* Menü Bölümü */
.menu {
    padding: 80px 0;
}

.menu-filters {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    background: white;
    border: none;
    padding: 12px 24px;
    cursor: pointer;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    font-size: 14px;
}

    .filter-btn.active, .filter-btn:hover {
        background: #ffb300;
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.menu-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

    .menu-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }

.menu-item-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

    .menu-item-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s;
    }

.menu-item:hover .menu-item-image img {
    transform: scale(1.1);
}

.menu-item-content {
    padding: 25px;
}

.menu-item-title {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    align-items: flex-start;
}

.menu-item h3 {
    font-size: 1.4rem;
    color: #1a3c5e;
    margin-right: 15px;
    line-height: 1.3;
}

.price {
    color: #ff6b35;
    font-weight: bold;
    font-size: 1.3rem;
    white-space: nowrap;
}

.menu-item p {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

.category-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 179, 0, 0.9);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .menu-items {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }

    .menu-filters {
        gap: 8px;
    }

    .filter-btn {
        padding: 10px 18px;
        font-size: 13px;
    }

    .section-title {
        font-size: 2rem;
    }
}
/* Alt CTA */
.cta-wrap {
    margin-top: 60px;
    width: 60%;
    margin: auto auto;
    background: linear-gradient(90deg, rgba(198, 37, 42, .12), rgba(54, 57, 53, .18));
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 24px;
}

.cta-inner {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 18px;
    align-items: center
}

.cta-text h3 {
    margin: 0 0 6px;
    font-size: clamp(18px, 2.4vw, 28px)
}

.cta-text p {
    margin: 0;
    color: var(--muted)
}

.cta-actions {
    display: flex;
    justify-content: flex-end
}

    .cta-actions .btn {
        min-width: 180px
    }


/* Responsive */
@media (max-width:1180px) {
}

@media (max-width:900px) {
    .cta-inner {
        grid-template-columns: 1fr;
        gap: 10px
    }

    .cta-actions {
        justify-content: flex-start
    }
}