:root {
    --orange: #FF6B00;
    --dark: #1A1A1A;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Logo Styles */
.site-logo {
    height: 150px;
    width: auto;
    transition: transform 0.3s ease;
    margin-top: -15px;
    margin-bottom: -15px;
}

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

@media (max-width: 768px) {
    .site-logo {
        height: 100px;
        margin-top: -10px;
        margin-bottom: -10px;
    }
}

.text-orange {
    color: var(--orange);
}

/* Hero Section */
.hero-container {
    background: white;
    border-radius: 20px;
    padding: 0;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    height: 400px;
    position: relative;
}

.hero-section {
    min-height: unset;
    height: 100%;
    display: flex;
    align-items: stretch;
    width: 100%;
    position: relative;
}

.hero-container .hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding-right: 35%;
    width: 100%;
}

.hero-container .hero-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    text-align: right !important;
    width: 100%;
}

.hero-container .hero-subtitle {
    font-size: 3.2rem;
    color: var(--orange);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: right !important;
    width: 100%;
}

.hero-description {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 0;
    line-height: 1.6;
}

.hero-image-container {
    position: absolute;
    right: -120px;
    top: 0;
    bottom: 0;
    width: 75%;
    background: var(--orange);
    overflow: hidden;
    border-radius: 0 20px 20px 0;
}

.hero-image {
    width: 130%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    margin-left: 30px;
}

.hero-text-wrapper {
    width: 100%;
    padding-left: 300px;
}

@media (max-width: 991px) {
    .hero-container {
        height: 400px;
    }

    .hero-container .hero-content {
        padding-right: 40%;
    }
    
    .hero-image-container {
        right: -80px;
        width: 70%;
    }
    
    .hero-image {
        width: 120%;
        margin-left: 30px;
    }

    .hero-text-wrapper {
        padding-left: 200px;
    }
}

@media (max-width: 768px) {
    .hero-container {
        height: auto;
    }

    .hero-section {
        flex-direction: column;
    }
    
    .hero-container .hero-content {
        padding: 2rem;
        align-items: center;
    }
    
    .hero-image-container {
        right: 0;
        width: 100%;
    }
    
    .hero-image {
        width: 100%;
        margin-left: 0;
    }

    .hero-text-wrapper {
        padding-left: 100px;
    }
    
    .hero-container .hero-title,
    .hero-container .hero-subtitle {
        text-align: center !important;
    }
}

/* Categories Section Styles */
.categories-section {
    padding: 4rem 0;
}

.categories-section .category-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 280px;
}

.categories-section .category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.categories-section .category-title {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0;
    background-color: var(--orange);
    padding: 6px 20px;
    border-radius: 6px;
    z-index: 2;
}

.categories-section .category-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 100%);
    z-index: 1;
}

h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2rem;
    text-align: left;
    margin-left: 2rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 2rem;
    text-align: left !important;
    margin-left: 2rem;
    
}

.mb-3 {
    margin-left: 2rem !important;
}

.categories-slider {
    padding: 0 40px;
    position: relative;
    margin-bottom: 40px;
}

/* Category Cards Styles */
.category-card {
    display: block;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 240px;
    margin: 10px;
    padding: 0;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    object-position: center;
    padding: 0;
    background-color: #fff;
    border-radius: 8px 8px 0 0;
}

.category-title {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0;
    text-align: left;
    background-color: var(--orange);
    padding: 6px 20px;
    border-radius: 6px;
    display: inline-block;
}

/* Swiper Navigation Buttons */
.swiper-button-next,
.swiper-button-prev,
.categories-slider .swiper-button-next,
.categories-slider .swiper-button-prev,
.latest-recipes-slider .swiper-button-next,
.latest-recipes-slider .swiper-button-prev,
.favorite-recipes-slider .swiper-button-next,
.favorite-recipes-slider .swiper-button-prev {
    color: #eb7f00;
    background-color: rgba(255, 255, 255, 0.9);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover,
.categories-slider .swiper-button-next:hover,
.categories-slider .swiper-button-prev:hover,
.latest-recipes-slider .swiper-button-next:hover,
.latest-recipes-slider .swiper-button-prev:hover,
.favorite-recipes-slider .swiper-button-next:hover,
.favorite-recipes-slider .swiper-button-prev:hover {
    background-color: #eb7f00;
    color: white;
    transform: scale(1.1);
}

.swiper-button-next:after,
.swiper-button-prev:after,
.categories-slider .swiper-button-next:after,
.categories-slider .swiper-button-prev:after,
.latest-recipes-slider .swiper-button-next:after,
.latest-recipes-slider .swiper-button-prev:after,
.favorite-recipes-slider .swiper-button-next:after,
.favorite-recipes-slider .swiper-button-prev:after {
    font-size: 18px;
}

.swiper-pagination-bullet-active,
.categories-slider .swiper-pagination-bullet-active,
.latest-recipes-slider .swiper-pagination-bullet-active,
.favorite-recipes-slider .swiper-pagination-bullet-active {
    background-color: #eb7f00;
}

@media (max-width: 768px) {
    h1, .section-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
        margin-left: 1rem;
    }

    .hero-section {
        min-height: auto;
        padding: 3rem 0;
    }
    
    .hero-image {
        margin-top: 2rem;
        max-height: 400px;
    }

    .category-card {
        height: 200px;
    }
    
    .category-image {
        height: 140px;
    }
    
    .category-title {
        height: 60px;
        font-size: 1rem;
        padding: 0.5rem;
    }
}

/* Navigation Styles */
.navbar .nav-link {
    color: var(--dark);
    font-weight: 500;
    padding: 0.5rem 1rem;
    margin: 0 0.75rem;
    transition: color 0.3s ease;
}

.navbar .nav-item:last-child .nav-link {
    margin-right: 0;
}

.navbar .nav-item:first-child .nav-link {
    margin-left: 0;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--orange);
}

.btn-dark {
    background-color: var(--dark);
    border-color: var(--dark);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-dark:hover {
    background-color: var(--orange);
    border-color: var(--orange);
}

/* Footer Styles */
.footer-section {
    background-color: #F2F2F2;
    padding: 2rem 0;
    margin-top: 4rem;
}

.footer-logo-img {
    width: auto;
    margin-bottom: 50px;
}

.footer-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.3;
    margin-bottom: 1rem;
    margin-top: -25px;
}

.footer-links-wrapper {
    margin-top: 2.5rem;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 1rem;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 0.75rem;
}

.footer-menu a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: var(--orange);
}

.footer-bottom {
    background-color: #0A0F2C;
    padding: 1rem 0;
    color: white;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--orange);
}

@media (max-width: 991px) {
    .footer-section {
        padding: 1.5rem 0;
    }

    .footer-logo-img {
        height: 160px;
        margin-bottom: 0;
    }

    .footer-description {
        margin-top: -20px;
        margin-bottom: 1.5rem;
    }
}

/* Latest Recipes Section */
.latest-recipes-section {
    padding: 2rem 0;
}

.recipe-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.recipe-card:hover {
    transform: translateY(-5px);
}

.recipe-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.recipe-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.35), rgba(0,0,0,0.2));
    pointer-events: none;
}

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

.recipe-card:hover .recipe-image img {
    transform: scale(1.05);
}

.recipe-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--orange);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 1;
}

.recipe-content {
    padding: 1.2rem;
}

.recipe-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
    margin: 0;
}

@media (max-width: 768px) {
    .recipe-image {
        height: 200px;
    }
    
    .recipe-title {
        font-size: 1.1rem;
    }
}

/* Favori Tarifler Section */
.favorite-recipes-section {
    padding: 4rem 0;
}

.favorite-recipes-section .recipe-card {
    margin-bottom: 2rem;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.favorite-recipes-section .recipe-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.favorite-recipes-section .recipe-image {
    position: relative;
    height: 300px;
    width: 100%;
    overflow: hidden;
}

.favorite-recipes-section .recipe-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.35), rgba(0,0,0,0.2));
    pointer-events: none;
}

.favorite-recipes-section .recipe-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.favorite-recipes-section .recipe-card:hover .recipe-image img {
    transform: scale(1.05);
}

.favorite-recipes-section .recipe-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--orange);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 1;
}

.favorite-recipes-section .recipe-title {
    font-size: 1.3rem;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .favorite-recipes-section {
        padding: 2rem 0;
    }
    
    .favorite-recipes-section .recipe-image {
        height: 220px;
    }
    
    .favorite-recipes-section .recipe-title {
        font-size: 1.1rem;
    }
}

/* Journey Section */
.journey-section {
    padding: 0.5rem 0;
    background-color: #F2F2F2;
    border-radius: 20px;
    margin: 1rem 0;
    overflow: hidden;
}

.journey-image {
    width: 115%;
    height: auto;
    margin-left: -8%;
    max-width: none;
}

.journey-content {
    padding-right: 2rem;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

.journey-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.journey-subtitle {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #0A0F2C;
    display: inline-flex;
    padding: 5px 20px;
    border-radius: 30px;
}

.journey-subtitle span {
    font-weight: 600;
    color: white;
}

.journey-subtitle .text-orange {
    color: var(--orange);
}

.journey-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 0;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .journey-section {
        padding: 2rem;
        margin: 1rem 0;
    }

    .journey-image {
        width: 100%;
        margin-left: 0;
        margin-bottom: 1rem;
    }

    .journey-content {
        padding-right: 0;
    }

    .journey-title {
        font-size: 2rem;
        margin-top: 1.5rem;
        color: var(--dark);
    }

    .journey-subtitle {
        font-size: 1.5rem;
    }

    .journey-description {
        font-size: 1rem;
    }
}

/* Daily Recipe Section */
.daily-recipe-section {
    padding: 1.5rem 0;
}

.daily-recipe-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 300px;
}

.daily-recipe-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.daily-recipe-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.daily-recipe-content {
    color: white;
}

.recipe-label {
    display: inline-block;
    font-size: 1rem;
    color: var(--orange);
    margin-bottom: 0.5rem;
}

.daily-recipe-date {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: white;
}

.btn-orange {
    background-color: var(--orange);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.btn-orange:hover {
    background-color: #e65100;
    color: white;
}

@media (max-width: 768px) {
    .daily-recipe-card {
        height: 300px;
        margin-bottom: 1rem;
    }

    .daily-recipe-overlay {
        padding: 1.5rem;
    }

    .daily-recipe-date {
        font-size: 1.5rem;
    }
}

/* Feedback Section */
.feedback-section {
    padding: 4rem 0;
    background-color: #F2F2F2;
    margin-top: 6rem;
}

.feedback-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.feedback-content {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    margin-top: 2rem;
}

.feedback-text {
    padding-right: 2rem;
    margin-top: -45px;
}

.feedback-badge {
    display: inline-block;
    background-color: var(--orange);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    margin-bottom: 1.25rem;
}

.feedback-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.feedback-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

@media (max-width: 991px) {
    .feedback-section {
        padding: 3rem 0;
    }

    .feedback-content {
        padding: 2rem;
    }

    .feedback-text {
        padding-right: 0;
        margin-bottom: 2rem;
        margin-top: -35px;
    }

    .feedback-badge {
        padding: 0.5rem 1.25rem;
        margin-bottom: 1rem;
    }

    .feedback-description {
        font-size: 1rem;
    }
}

/* Son Yüklenen Tarifler Sayfası */
.latest-recipes-page {
    padding: 2rem 0;
}

.latest-recipes-page .section-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 2rem;
    margin-left: 2rem!important;

    text-align: left;
    margin-left: 0;
}

.latest-recipes-page .recipe-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 280px;
}

.latest-recipes-page .recipe-card:hover {
    transform: translateY(-5px);
}

.latest-recipes-page .recipe-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.latest-recipes-page .recipe-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.latest-recipes-page .recipe-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #FF6B00;
    color: #fff;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    z-index: 2;
}

.latest-recipes-page .recipe-title {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.latest-recipes-page .recipe-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.6));
    z-index: 1;
}

/* Sayfalama */
.pagination-wrapper {
    margin-top: 2rem;
    text-align: center;
}

.pagination {
    display: inline-flex;
    gap: 1rem;
    background: transparent;
    padding: 0;
    margin: 0;
    justify-content: center;
    align-items: center;
}

.pagination a,
.pagination span {
    color: var(--dark);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0.5rem;
}

.pagination a.active {
    background-color: var(--orange);
    color: white;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    text-decoration: none;
}

.pagination a:not(.active):hover {
    color: var(--orange);
}

@media (max-width: 768px) {
    .latest-recipes-page {
        padding: 1.5rem 0;
    }

    .latest-recipes-page .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .latest-recipes-page .recipe-card {
        height: 220px;
    }

    .latest-recipes-page .recipe-title {
        font-size: 1.2rem;
        bottom: 15px;
        left: 15px;
    }

    .latest-recipes-page .recipe-category {
        padding: 6px 15px;
        font-size: 0.9rem;
    }
}

/* Favori Tarifler Sayfası */
.favorite-recipes-page {
    padding: 2rem 0;
}

.favorite-recipes-page .recipe-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 280px;
}

.favorite-recipes-page .recipe-card:hover {
    transform: translateY(-5px);
}

.favorite-recipes-page .recipe-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.favorite-recipes-page .recipe-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.favorite-recipes-page .recipe-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #FF6B00;
    color: #fff;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    z-index: 2;
}

.favorite-recipes-page .recipe-title {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.favorite-recipes-page .recipe-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.6));
    z-index: 1;
}

@media (max-width: 768px) {
    .favorite-recipes-page {
        padding: 1.5rem 0;
    }

    .favorite-recipes-page .recipe-card {
        height: 220px;
    }

    .favorite-recipes-page .recipe-title {
        font-size: 1.2rem;
        bottom: 15px;
        left: 15px;
    }

    .favorite-recipes-page .recipe-category {
        padding: 6px 15px;
        font-size: 0.9rem;
    }
}

/* Kategori Detay Sayfası */
.category-detail-page {
    padding: 2rem 0;
}

.category-detail-page .section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2rem;
    text-align: left;
    margin-left: 0;
}

.category-detail-page .recipe-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 300px;
}

.category-detail-page .recipe-card:hover {
    transform: translateY(-5px);
}

.category-detail-page .recipe-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.category-detail-page .recipe-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-detail-page .recipe-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #FF6B00;
    color: #fff;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    z-index: 2;
}

.category-detail-page .recipe-title {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.category-detail-page .recipe-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.6));
    z-index: 1;
}

@media (max-width: 768px) {
    .category-detail-page {
        padding: 1.5rem 0;
    }

    .category-detail-page .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .category-detail-page .recipe-card {
        height: 220px;
    }

    .category-detail-page .recipe-title {
        font-size: 1.2rem;
        bottom: 15px;
        left: 15px;
    }

    .category-detail-page .recipe-category {
        padding: 6px 15px;
        font-size: 0.9rem;
    }
}

/* Kategoriler Sayfası */
.categories-page {
    padding: 4rem 0;
    background-color: #fff;
}

.category-card {
    display: block;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 300px;
    text-decoration: none;
}

.category-card:hover {
    transform: translateY(-10px);
}

.category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 100%);
    transition: all 0.3s ease;
}

.category-card:hover .category-content {
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 100%);
}

.category-title {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0;
    text-align: left;
    background-color: var(--orange);
    padding: 6px 20px;
    border-radius: 6px;
    display: inline-block;
}

@media (max-width: 768px) {
    .categories-page {
        padding: 2rem 0;
    }

    .category-card {
        height: 200px;
    }

    .category-title {
        font-size: 1rem;
        padding: 5px 15px;
    }
}

/* İletişim Sayfası */
.contact-hero-container {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.contact-hero-section {
    display: flex;
    align-items: center;
}

.contact-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
    text-align: left;
    margin-left: 2rem;
}

.contact-subtitle {
    font-size: 1.5rem;
    margin-bottom: 0;
    text-align: left;
    margin-left: 2rem;
}

.contact-hero-image {
    border-radius: 15px;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.contact-form-section {
    padding: 4rem 0;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form .form-label {
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.contact-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--orange);
    box-shadow: none;
}

.contact-form textarea.form-control {
    resize: none;
}

.contact-form .btn-orange {
    background-color: var(--orange);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 10px;
    border: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-form .btn-orange:hover {
    background-color: #e65100;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .contact-hero-container {
        padding: 2rem;
        margin: 1rem 0;
    }

    .contact-title {
        font-size: 2rem;
    }

    .contact-subtitle {
        font-size: 1.2rem;
    }

    .contact-form-section {
        padding: 2rem 0;
    }

    .contact-form {
        padding: 2rem;
    }
}

/* Recipe sliders */
.latest-recipes-slider,
.favorite-recipes-slider {
    padding: 0 40px;
    position: relative;
    margin-bottom: 40px;
}

.latest-recipes-slider .swiper-slide,
.favorite-recipes-slider .swiper-slide {
    height: auto;
    transition: transform 0.3s ease;
}

.latest-recipes-slider .recipe-card,
.favorite-recipes-slider .recipe-card {
    height: 250px;
    margin: 10px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: block;
    transition: transform 0.3s ease;
}

.latest-recipes-slider .recipe-card:hover,
.favorite-recipes-slider .recipe-card:hover {
    transform: translateY(-5px);
}

.latest-recipes-slider .recipe-image,
.favorite-recipes-slider .recipe-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.latest-recipes-slider .recipe-image img,
.favorite-recipes-slider .recipe-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.latest-recipes-slider .recipe-category,
.favorite-recipes-slider .recipe-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #eb7f00;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 2;
}

.latest-recipes-slider .recipe-title,
.favorite-recipes-slider .recipe-title {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    z-index: 2;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
}

.latest-recipes-slider .recipe-image::after,
.favorite-recipes-slider .recipe-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.7));
    z-index: 1;
}

.latest-recipes-slider .swiper-pagination,
.favorite-recipes-slider .swiper-pagination {
    bottom: -30px;
}

.latest-recipes-slider .swiper-pagination-bullet-active,
.favorite-recipes-slider .swiper-pagination-bullet-active {
    background-color: #eb7f00;
} 