/* Google Fonts'tan Roboto'yu import et */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

/* Tüm elementler için Roboto fontunu kullan */
* {
    font-family: 'Roboto', sans-serif;
}
::selection {
    background-color: #00a441 !important;
    color: white !important;
}
.body
{
    font-family: 'Poppins', sans-serif;
    background-color: #F4F3E7 !important;

}
.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    
    color: #004225; /* Color similar to the one in the image */
}
.navbar-nav .nav-link {
    background-color: #F4F3E7 
    font-weight: bold;
    color: #004225;
    margin-right: 15px;
}
.navbar-nav .nav-link:hover {
    color: #000;
}

.btn-order {
    background-color: #00a441;
    color: #fff;
    font-weight: bold;
    padding: 5px 15px;
    border-radius: 20px !important;
}
/* Genel stil ayarları */
.navbar .btn-order {
    margin-left: auto;
    margin-right: 0;
}

.navbar .btn-order {
    padding: 10px 20px;
    font-size: 1rem;
}

/* Küçük ekranlar için düzenleme */
@media (max-width: 991.98px) {
    .navbar .btn-order {
        padding: 5px 10px; /* Butonun iç boşluklarını küçültür */
        font-size: 0.8rem; /* Yazı boyutunu küçültür */
        width: 80px; /* Buton genişliğini küçültür */
        height: auto; /* Yükseklik otomatik ayarlanır */
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
}


/* Optional hover effect */
.btn-order:hover {
    background-color: #073D33 !important; /* Darker shade for hover effect */
}

.btn-order:hover {
    background-color: #002611;
    color: #fff;
}
 /* Style for text overlay in the slider */
.carousel-caption {
    position: absolute;
    top: 60%; /* Adjusted to move the text lower */
    left: 10%;
    transform: translateY(-50%);
    text-align: left;
}

.carousel-caption h1 {
    font-size: 3.5rem;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6); /* Gölge ekleme */
}

.carousel-caption p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #c6ff00; /* Neon green for the smaller text */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6); /* Gölge ekleme */

}

.carousel-caption .btn-order {
    background-color: #00a441; /* Neon green button */
    color: #000;
    padding: 10px 30px;
    border-radius: 30px;
    font-weight: bold;
}

/* Style for the slider images */
.carousel-item img {
    width: 100%;
    height: 80vh;
    object-fit: cover;
}

/* General styling for buttons and layout */
.tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.tabs button {
    background-color: #333;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    margin: 0 5px;
    font-size: 16px;
    transition: background-color 0.3s;
}

.tabs button.active,
.tabs button:hover {
    background-color: #555;
}

.menu-section {
    display: none;
    justify-content: center;
    flex-wrap: wrap;
}

.menu-section.active {
    display: flex;
}

.menu-item {
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 15px;
    padding: 20px;
    width: 300px;
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.menu-item:hover {
    transform: translateY(-10px);
}

.menu-item img {
    width: 100%;
    border-radius: 10px;
}

.menu-item h3 {
    font-size: 24px;
    margin: 15px 0 10px;
}

.menu-item p {
    font-size: 16px;
    color: #666;
}

.btn-order {
    display: inline-block;
    padding: 10px 20px;
    background-color: #00a441;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.btn-order:hover {
    background-color: #A6AE21;
}

/* Responsive styling */
@media (max-width: 768px) {
    .menu-item {
        width: 100%;
        margin: 10px 0;
    }

    .tabs {
        flex-direction: column;
    }

    .tabs button {
        margin: 10px 0;
    }
}

@media (min-width: 769px) {
    .menu-section {
        justify-content: space-between;
    }
}

    /* General styling */
    .section {
        padding: 50px 0;
    }
    
    .section img {
        width: 100%;
        border-radius: 10px;
    }
    
    .text-block {
        padding: 20px;
        text-align: left;
    }

    .section-reverse {
        background-color: #f0f0f0;
    }

    .download-links {
        margin-top: 20px;
    }
    
    .download-links a {

   
    }

    .download-links a:hover {
        text-decoration: underline;
    }
   
    .blog-section {
        background-color: #f9f9f9;
        padding: 50px 0;
    }

    .container {
        width: 90%;
        margin: 0 auto;
    }

    .blog-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 30px;
    }

    .blog-header h2 {
        font-size: 2rem;
        font-weight: bold;
    }

    .blog-header a {
        text-decoration: none;
        color: #000;
        font-weight: bold;
        transition: color 0.3s;
    }

    .blog-header a:hover {
        color: #999;
    }

    
    /* Blog Section */
    .blog-grid {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important; /* Her satırda 4 blog kartı */
        gap: 20px !important;
        width: 100% !important; /* Tüm genişliği kullan */
    }

      .blog-card {
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        padding: 20px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }


    /* Blog card image */
    .blog-card img {
        width: 100% !important;
        height: auto !important;
        object-fit: cover !important;
        border-radius: 8px !important;
    }

    /* Responsive adjustments */
    @media (max-width: 1200px) {
        .blog-grid {
            grid-template-columns: repeat(3, 1fr) !important; /* Orta boy ekranlarda 3 blog kartı */
        }
    }

    @media (max-width: 992px) {
        .blog-grid {
            grid-template-columns: repeat(2, 1fr) !important; /* Küçük ekranlarda 2 blog kartı */
        }
    }

    @media (max-width: 768px) {
        .blog-grid {
            grid-template-columns: repeat(1, 1fr) !important; /* Çok küçük ekranlarda 1 blog kartı */
        }
    }


     
    /* Footer Styling */
    footer {
        background-color: #E8DCC6;
        padding: 50px 0;
    }

    .footer-container {
        display: flex;
        justify-content: space-between;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .footer-column {
        width: 22%;
    }

    .footer-column h4 {
        font-size: 1rem;
        font-weight: bold;
        margin-bottom: 15px;
    }

    .footer-column ul {
        list-style-type: none;
        padding: 0;
    }

    .footer-column ul li {
        margin-bottom: 10px;
    }

    .footer-column ul li a {
        color: #000;
        text-decoration: none;
        font-size: 0.9rem;
        transition: color 0.3s;
    }

    .footer-column ul li a:hover {
        color: #555;
    }

    /* Copyright Section */
    .footer-bottom {
        text-align: right;
        padding: 20px;
        color: #000;
        font-size: 0.9rem;
    }
 /* Marquee */
.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    background-color: #f5f5f5;
    padding: 10px 0;

}

/* Text Styling */
.marquee-text {
    display: inline-block;
    font-size: 20px;
    font-weight: bold;
    color: #5cb85c; /* Yeşil renk */
}

     /* About Us Section Styling */
     .about-section {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 50px 20px;
        background-color: #f9f5ec;
    }

    .about-content {
        display: flex;
        max-width: 1200px;
        width: 100%;
    }

    /* Left Image */
    .about-image {
        flex: 1;
    }

    .about-image img {
        width: 100%;
        border-radius: 10px;
    }

    /* Right Text Content */
    .about-text {
        flex: 1;
        padding: 20px;
        color: #333;
    }

    .about-text h2 {
        font-size: 3rem;
        font-weight: bold;
        margin-bottom: 20px;
        color: #000;
    }

    .about-text p {
        font-size: 1.8rem;
        line-height: 1.4;
        color: #333;
    }

    @media (max-width: 768px) {
        .about-content {
            flex-direction: column;
            align-items: center;
        }

        .about-text h2 {
            text-align: center;
        }

        .about-text p {
            text-align: center;
            font-size: 1.5rem;
        }
    }
    .featured-section {
        text-align: center;
        padding: 50px 0;
        background-color: #faf7ed;
    }
    
    .featured-section h2 {
        font-size: 36px;
        margin-bottom: 40px;
    }
    
    .menu-items {
        display: flex;
        justify-content: space-around;
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .menu-item {
        background-color: white;
        overflow: hidden;
        box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
        width: 30%;
        text-align: left;
        transition: transform 0.3s;
    }
    
    .menu-item:hover {
        transform: translateY(-10px);
    }
    
    .menu-item img {
        width: 100%;
        height: auto;
        border-bottom: 2px solid #eee;
    }
    
    .menu-item h3 {
        font-size: 22px;
        margin: 20px;
        color: #333;
    }
    
    .menu-item p {
        margin: 0 20px;
        font-size: 16px;
        color: #666;
    }
    
    .nutritional-info {
        display: flex;
        justify-content: space-around;
        padding: 20px;
        font-size: 14px;
        color: #333;
        border-top: 1px solid #eee;
    }
    
    .nutritional-info span {
        display: block;
        color: #333;
    }
    
    /* Responsive Styling */
    @media (max-width: 992px) {
        .menu-item {
            width: 45%;
        }
    }
    
    @media (max-width: 768px) {
        .menu-item {
            width: 100%;
        }
    }
    /* Banner Section */
.catering-banner {
    background-color: #e3f5d6; /* Light green background */
    padding: 100px 0;
    text-align: center;
}

.catering-content-banner {
    max-width: 800px;
    margin: 0 auto;
    color: #000;
}

.catering-banner h2 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 40px;
    font-weight: bold;
    color: #000;
}

.catering-content-banner .order-btn {
    background-color: #d1ff00;
    padding: 12px 30px;
    border: none;
    color: #000;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 18px;
    border-radius: 50px;
}

/* Why Order Section */
.why-order-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #e0f0e1;
    padding: 80px 0;
}

.why-order-image {
    width: 50%;
    padding-left: 5%;
}

.why-order-image img {
    width: 100%;
    border-radius: 10px;
}

.why-order-content {
    width: 50%;
    padding-right: 5%;
}

.why-order-content h2 {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #000;
}

.why-order-content ul {
    list-style-type: none;
    padding-left: 0;
    font-size: 18px;
    line-height: 1.5;
    color: #333;
}

.why-order-content ul li {
    margin-bottom: 20px;
}

.why-order-content strong {
    color: #000;
}

/* Buttons Styling */
.why-order-content .order-btn {
    background-color: #d1ff00;
    padding: 12px 30px;
    border: none;
    color: #000;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    font-size: 18px;
    border-radius: 50px;
    margin-top: 20px;
}

/* Responsive for Mobile */
@media (max-width: 768px) {
    .catering-banner h2 {
        font-size: 36px;
    }

    .catering-content-banner .order-btn {
        font-size: 16px;
    }

    .why-order-section {
        flex-direction: column;
        text-align: center;
    }

    .why-order-content, .why-order-image {
        width: 100%;
        padding: 0;
    }

    .why-order-image img {
        margin-bottom: 20px;
    }
}
/* Location Section */
.location-section {
    text-align: center;
    padding: 50px 0;
    background-color: #fafafa;
}

.location-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.location-container {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
}

.location {
    width: 45%;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.location iframe {
    border: none;
    border-radius: 10px 10px 0 0;
}

.location-info {
    padding: 20px;
    text-align: left;
}

.location-info h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #333;
}

.location-info p {
    margin: 5px 0;
    font-size: 16px;
    color: #666;
}

/* Responsive Styling */
@media (max-width: 992px) {
    .location {
        width: 100%;
    }
}
