/* Responsive Styles */

/* Tablets */
@media screen and (max-width: 992px) {
    .main-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .restaurant-card,
    .menu-item {
        flex: 0 0 48%;
    }

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

    .about-img,
    .about-text {
        flex: 0 0 100%;
    }

    .about-img {
        margin-bottom: 30px;
    }

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

    .contact-info,
    .contact-form {
        flex: 0 0 100%;
    }

    .contact-info {
        margin-bottom: 30px;
    }

    .footer-section {
        flex: 0 0 48%;
    }
}

/* Mobile Phones */
@media screen and (max-width: 768px) {
    .hero h2 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .restaurant-card,
    .menu-item,
    .menu-list-item {
        flex: 0 0 100%;
    }

    .menu-tabs {
        flex-wrap: wrap;
    }

    .menu-tab {
        margin-bottom: 10px;
    }

    .footer-section {
        flex: 0 0 100%;
    }

    /* Yukarı çıkma butonu */
    #backToTop {
        bottom: 140px;
        right: 10px;
        width: 35px;
        height: 35px;
    }

    #backToTop i {
        font-size: 1rem;
    }
}

/* Small Mobile Phones */
@media screen and (max-width: 480px) {
    .hero h2 {
        font-size: 1.8rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .admin-menu ul {
        flex-direction: column;
    }

    .admin-table {
        font-size: 0.9rem;
    }

    .action-btn {
        padding: 4px 8px;
        font-size: 0.8rem;
    }
}
