body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
}

.custom-header {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.custom-header img {
    width: 1920px;
    height: 400px;
    object-fit: cover;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.navbar-brand {
    letter-spacing: 2px;
}

.search-group {
    width: 250px;
    transition: width 0.4s ease;
}

.search-group:focus-within {
    width: 320px;
}

.rounded-pill-start {
    border-top-left-radius: 50px !important;
    border-bottom-left-radius: 50px !important;
    padding-left: 20px;
}

.rounded-pill-end {
    border-top-right-radius: 50px !important;
    border-bottom-right-radius: 50px !important;
    padding-right: 15px;
    background-color: white !important;
    color: #333 !important;
}

.search-group i {
    color: #666;
    font-size: 1rem;
}

.card {
    transition: transform 0.3s;
    border: none;
    border-radius: 12px;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-10px);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover .card-img-top {
    transform: scale(1.1);
}

.btn-danger {
    transition: all 0.3s ease;
}

.btn-danger:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(220, 53, 69, 0.3) !important;
}

.recipe-card {
    transition: all 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
}

.recipe-card:hover {
    transform: scale(1.03);
}

.list-group-item.active {
    font-weight: bold;
    letter-spacing: 1px;
}

.badge {
    font-size: 0.75rem;
    padding: 5px 10px;
    text-transform: uppercase;
}

.card-footer {
    padding-bottom: 1.25rem;
}

.bi-instagram:hover { color: #E1306C; }
.bi-youtube:hover { color: #FF0000; }
.bi-pinterest:hover { color: #BD081C; }

@media (max-width: 1920px) {
    .custom-header img {
        width: 100%;
        height: auto;
    }
    .custom-header {
        height: auto;
    }
}

html {
    scroll-behavior: smooth;
}

/* index html bitiş */

.recipe-card {
    transition: all 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
}

.recipe-card:hover {
    transform: scale(1.03);
}

.list-group-item.active {
    font-weight: bold;
    letter-spacing: 1px;
}

.badge {
    font-size: 0.75rem;
    padding: 5px 10px;
    text-transform: uppercase;
}

.card-footer {
    padding-bottom: 1.25rem;
}


/* tarifler css bitiş */


::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #ff416c 0%, #ff4b2b 100%);
    border-radius: 10px;
    border: 3px solid #f1f1f1;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #ff4b2b 0%, #ff416c 100%);
}


