/* Ana Sayfa Özel Stilleri */

/* Restaurant Selection Styles */
.restaurant-selection {
    padding: 80px 0;
    background-color: #fff;
    margin-bottom: 0;
}

.restaurant-options {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.restaurant-option {
    flex: 1;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.restaurant-option.balik {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/balik-restaurant.jpg');
    background-size: cover;
    background-position: center;
    border-bottom: 5px solid var(--balik-primary);
}

.restaurant-option.pide {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/pide-restaurant.jpg');
    background-size: cover;
    background-position: center;
    border-bottom: 5px solid var(--pide-primary);
}

.restaurant-option-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: #fff;
    transform: translateY(0);
    transition: transform 0.5s ease;
}

.restaurant-option:hover .restaurant-option-content {
    transform: translateY(-20px);
}

.restaurant-option-content h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.restaurant-option-content p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.restaurant-option.balik .btn {
    background-color: var(--balik-primary);
}

.restaurant-option.pide .btn {
    background-color: var(--pide-primary);
}

/* Restaurants Section */
.restaurants {
    margin-top: 0;
    margin-bottom: 0;
}

.restaurant-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.restaurant-card {
    flex: 1;
    min-width: 300px;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

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

.restaurant-img {
    height: 250px;
    overflow: hidden;
}

.restaurant-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.restaurant-card:hover .restaurant-img img {
    transform: scale(1.1);
}

.restaurant-info {
    padding: 25px;
}

.restaurant-info h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.restaurant-info p {
    margin-bottom: 20px;
    color: var(--text-light);
}

/* Featured Menu */
.featured-menu {
    padding: 80px 0;
    background-color: #fff;
    margin-top: 0;
    margin-bottom: 0;
    transition: background-color 0.3s ease;
}

.menu-tabs {
    display: flex;
    justify-content: center;
    margin: 30px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.menu-tab {
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-color);
    cursor: pointer;
    position: relative;
    transition: var(--transition);
    border-radius: 30px 30px 0 0;
}

.menu-tab::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 3px;
    transition: var(--transition);
}

.menu-tab:hover {
    color: var(--primary-color);
}

.menu-tab.active {
    color: var(--primary-color);
}

.menu-tab.active::after {
    width: 100%;
}

/* Balık ve Pide Menü Sekmeleri */
.menu-tab[data-target="balik-menu"] {
    color: var(--balik-primary);
}

.menu-tab[data-target="balik-menu"]::after {
    background-color: var(--balik-primary);
}

.menu-tab[data-target="balik-menu"]:hover {
    color: var(--balik-dark);
}

.menu-tab[data-target="balik-menu"].active {
    color: #fff;
    background-color: var(--balik-primary);
    border-radius: 30px 30px 0 0;
}

.menu-tab[data-target="pide-menu"] {
    color: var(--pide-primary);
}

.menu-tab[data-target="pide-menu"]::after {
    background-color: var(--pide-primary);
}

.menu-tab[data-target="pide-menu"]:hover {
    color: var(--pide-dark);
}

.menu-tab[data-target="pide-menu"].active {
    color: #fff;
    background-color: var(--pide-primary);
    border-radius: 30px 30px 0 0;
}

.menu-items {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.menu-item {
    flex: 1;
    min-width: 300px;
    background-color: var(--bg-light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.menu-item:hover {
    transform: translateY(-10px);
}

.menu-item-img {
    height: 200px;
    overflow: hidden;
}

.menu-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.menu-item:hover .menu-item-img img {
    transform: scale(1.1);
}

.menu-item-info {
    padding: 20px;
}

.menu-item-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.menu-item-info p {
    margin-bottom: 15px;
    color: var(--text-light);
}

.menu-item-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* Balık ve Pide menü öğeleri için özel renkler */
#balik-menu .menu-item-price {
    color: var(--balik-primary);
}

#balik-menu .menu-item-info h3 {
    color: var(--balik-primary);
}

#balik-menu .menu-item:hover {
    border: 1px solid var(--balik-primary);
    box-shadow: 0 10px 30px rgba(41, 128, 185, 0.2);
}

#pide-menu .menu-item-price {
    color: var(--pide-primary);
}

#pide-menu .menu-item-info h3 {
    color: var(--pide-primary);
}

#pide-menu .menu-item:hover {
    border: 1px solid var(--pide-primary);
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.2);
}

/* About Section */
.about {
    margin-top: 0;
    margin-bottom: 0;
}

.about-content {
    display: flex;
    gap: 50px;
    margin-top: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-img {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-img img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.about-img:hover img {
    transform: scale(1.05);
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.about-text p {
    margin-bottom: 15px;
    color: var(--text-light);
}

.about-values {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
    position: relative;
    z-index: 1;
}

.value-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 20px;
    border-radius: 8px;
    background-color: #fff;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.value-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.value-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.value-item p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Vision Mission */
.vision-mission {
    padding: 80px 0;
    background-color: #fff;
    margin-top: 0;
    margin-bottom: 0;
}

.vision-mission-content {
    display: flex;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.vision-box, .mission-box {
    flex: 1;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background-color: var(--bg-light);
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.vision-box:hover, .mission-box:hover {
    transform: translateY(-10px);
}

.vision-box {
    border-top: 5px solid var(--balik-primary);
}

.mission-box {
    border-top: 5px solid var(--pide-primary);
}

.icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: #f9f9f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.vision-box .icon {
    color: var(--balik-primary);
}

.mission-box .icon {
    color: var(--pide-primary);
}

.vision-box h3, .mission-box h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.vision-box p, .mission-box p {
    color: var(--text-light);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: var(--bg-light);
    margin-top: 0;
    margin-bottom: 0;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.contact-info, .contact-form {
    flex: 1;
    min-width: 300px;
    position: relative;
    z-index: 2;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.contact-info p {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: var(--text-light);
}

.contact-info p i {
    width: 30px;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-color);
    font-weight: 500;
}

.contact-form .form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    background-color: var(--bg-light);
    color: var(--text-color);
    transition: var(--transition);
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.contact-form textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* Gallery Preview */
.gallery-preview {
    padding: 80px 0;
    background-color: #fff;
    margin-top: 0;
    margin-bottom: 0;
}

.gallery-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.gallery-preview-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 200px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.gallery-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-preview-item:hover img {
    transform: scale(1.1);
}

.gallery-preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-preview-overlay i {
    color: #fff;
    font-size: 2rem;
}

.gallery-preview-item:hover .gallery-preview-overlay {
    opacity: 1;
}

.gallery-more {
    text-align: center;
    margin-top: 40px;
}

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    height: 100%;
}

.slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 1;
}

.slider-item.active {
    opacity: 1;
    z-index: 2;
}

.slider-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 150px 20px;
    text-align: center;
    color: #fff;
}

.slider-content h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.slider-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.slider-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background-color: var(--primary-color);
}

.slider-arrow.prev {
    left: 20px;
}

.slider-arrow.next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .slider-content h2 {
        font-size: 2.8rem;
    }
    
    
  
    .vision-mission-content {
        flex-direction: column;
    }

    .about-values {
        flex-direction: column;
    }
}
@media screen and (max-width: 468px) {
    .restaurant-option {
        display: flex;
        flex-direction: column; /* Makes elements stack vertically */
        justify-content: space-between;
        height: 100%;
    }
    
    .restaurant-option-content h3 {
        font-size: 1.5rem;
        align-self: first baseline;
    }
    
    .restaurant-option-content p {
        font-size: 1rem;
    }
}
@media screen and (max-width: 768px) {
    .hero-slider {
        height: 500px;
    }

    .slider-content {
        padding: 100px 20px;
    }

    .slider-content h2 {
        font-size: 2.2rem;
    }

    .slider-content p {
        font-size: 1rem;
    }

    .slider-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .gallery-preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content {
        flex-direction: column;
    }

    .contact-content {
        flex-direction: column;
    }
}

@media screen and (max-width: 576px) {
    .hero-slider {
        height: 400px;
    }

    .slider-content {
        padding: 80px 20px;
    }

    .slider-content h2 {
        font-size: 1.8rem;
    }

    .gallery-preview-grid {
        grid-template-columns: 1fr;
    }
}
@media screen and (max-width: 468px) {
    .restaurant-options {
        flex-direction: column;
        gap: 20px;
    }
    
    .restaurant-option {
        height: 250px;
        display: block;
        width: 100%;
        margin-bottom: 20px;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .restaurant-option.balik, 
    .restaurant-option.pide {
        background-position: center;
    }
    
    .restaurant-option-content {
        position: relative;
        display: flex;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.7);
        height: auto;
        bottom: 0;
        padding: 15px;
        transform: translateY(0) !important;
    }
    
    .restaurant-option-content h3 {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }
    
    .restaurant-option-content p {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .restaurant-option:hover .restaurant-option-content {
        transform: translateY(0) !important;
    }
    
    /* Override any AOS animation styles that might be hiding elements */
    [data-aos], [data-aos].aos-animate {
        opacity: 1 !important;
        transform: none !important;
        visibility: visible !important;
    }
}
/* CSS'i basitleştirin ve !important kullanarak diğer stilleri geçersiz kılın */
.menu-items {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 30px !important;
}

.menu-items#balik-menu {
    display: none !important; /* Varsayılan olarak balık menüsünü gizle */
}

.menu-item {
    flex: 1 !important;
    min-width: 300px !important;
    opacity: 1 !important;
    visibility: visible !important;
}

@media screen and (max-width: 768px) {
    .menu-items {
        gap: 20px !important;
    }
    
    .menu-item {
        flex: 100% !important;
        min-width: 100% !important;
    }
}

/* Öne Çıkan Menüler için Yeni CSS */
.featured-menu-section {
    padding: 80px 0;
    background-color: #fff;
}

.menu-navigation {
    display: flex;
    justify-content: center;
    margin: 30px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.menu-nav-item {
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 30px 30px 0 0;
}

.menu-nav-item[data-menu="balik-items"] {
    color: var(--balik-primary);
}

.menu-nav-item[data-menu="balik-items"]:hover {
    color: var(--balik-dark);
}

.menu-nav-item[data-menu="balik-items"].active-tab {
    color: #fff;
    background-color: var(--balik-primary);
}

.menu-nav-item[data-menu="pide-items"] {
    color: var(--pide-primary);
}

.menu-nav-item[data-menu="pide-items"]:hover {
    color: var(--pide-dark);
}

.menu-nav-item[data-menu="pide-items"].active-tab {
    color: #fff;
    background-color: var(--pide-primary);
}

.menu-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.food-item {
    flex: 1;
    min-width: 300px;
    background-color: var(--bg-light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.food-item:hover {
    transform: translateY(-10px);
}

.food-image {
    height: 200px;
    overflow: hidden;
}

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

.food-item:hover .food-image img {
    transform: scale(1.1);
}

.food-details {
    padding: 20px;
}

.food-details h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
}

.food-details p {
    margin-bottom: 15px;
    color: #666;
}

.food-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
}

#balik-items .food-price {
    color: var(--balik-primary);
}

#balik-items .food-details h3 {
    color: var(--balik-primary);
}

#pide-items .food-price {
    color: var(--pide-primary);
}

#pide-items .food-details h3 {
    color: var(--pide-primary);
}

/* Responsive tasarım */
@media screen and (max-width: 992px) {
    .menu-content {
        gap: 20px;
    }
}

@media screen and (max-width: 768px) {
    .menu-content {
        gap: 15px;
    }
    
    .food-item {
        flex: 100%;
        min-width: 100%;
    }
    
    .menu-nav-item {
        padding: 10px 20px;
        font-size: 1rem;
    }
}

@media screen and (max-width: 468px) {
    .featured-menu-section {
        padding: 40px 0;
    }
    
    .food-image {
        height: 180px;
    }
    
    .food-details h3 {
        font-size: 1.3rem;
    }
}